]> git.mxchange.org Git - friendica.git/commitdiff
Merge branch 'release-3.3.3' into develop
authorfabrixxm <fabrix.xm@gmail.com>
Sat, 7 Feb 2015 11:57:12 +0000 (12:57 +0100)
committerfabrixxm <fabrix.xm@gmail.com>
Sat, 7 Feb 2015 11:57:12 +0000 (12:57 +0100)
47 files changed:
boot.php
doc/Vagrant.md
friendica_test_data.sql [new file with mode: 0644]
images/rm-16.png [new file with mode: 0644]
include/Contact.php
include/Scrape.php
include/api.php
include/bbcode.php
include/diaspora.php
include/enotify.php
include/items.php
include/text.php
include/threads.php
mod/admin.php
mod/bookmarklet.php
mod/display.php
mod/noscrape.php
mod/poco.php
mod/profiles.php
util/messages.po
util/vagrant_provision.sh
view/cs/messages.po
view/cs/strings.php
view/de/messages.po
view/de/strings.php
view/fr/messages.po
view/fr/strings.php
view/pt-br/messages.po
view/pt-br/strings.php
view/templates/admin_aside.tpl
view/templates/admin_site.tpl
view/theme/diabook/theme.php
view/theme/vier/LICENSE [new file with mode: 0644]
view/theme/vier/README.md [new file with mode: 0644]
view/theme/vier/css/font2.css
view/theme/vier/flat.css
view/theme/vier/font/fontawesome-webfont.eot [changed mode: 0644->0755]
view/theme/vier/font/fontawesome-webfont.svg [changed mode: 0644->0755]
view/theme/vier/font/fontawesome-webfont.ttf [changed mode: 0644->0755]
view/theme/vier/font/fontawesome-webfont.woff [changed mode: 0644->0755]
view/theme/vier/style.css
view/theme/vier/templates/nav.tpl
view/theme/vier/templates/profile-hide-friends.tpl [new file with mode: 0644]
view/theme/vier/templates/profile_advanced.tpl [new file with mode: 0644]
view/theme/vier/templates/profile_edit.tpl [new file with mode: 0644]
view/theme/vier/templates/profile_vcard.tpl
view/theme/vier/theme.php

index 4ff0e4fbea5e2110923a39cfa5895a396256b922..dd6bc6ac5d6f6c58b9fcb7ca28a0c7898dcde193 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -1405,11 +1405,11 @@ if(! function_exists('get_max_import_size')) {
 if(! function_exists('profile_load')) {
        function profile_load(&$a, $nickname, $profile = 0, $profiledata = array()) {
 
-               $user = q("select uid from user where nickname = '%s' limit 1",
+               $user = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1",
                        dbesc($nickname)
                );
 
-               if(! ($user && count($user))) {
+               if(!$user && count($user) && !count($profiledata)) {
                        logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
                        notice( t('Requested account is not available.') . EOL );
                        $a->error = 404;
@@ -1440,7 +1440,7 @@ if(! function_exists('profile_load')) {
                                        intval($profile_int)
                        );
                }
-               if((! $r) && (!  count($r))) {
+               if((!$r) && (!count($r))) {
                        $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
                                        INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
                                        WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 and `contact`.`self` = 1 LIMIT 1",
@@ -1448,7 +1448,7 @@ if(! function_exists('profile_load')) {
                        );
                }
 
-               if(($r === false) || (! count($r))) {
+               if(($r === false) || (!count($r)) && !count($profiledata)) {
                        logger('profile error: ' . $a->query_string, LOGGER_DEBUG);
                        notice( t('Requested profile is not available.') . EOL );
                        $a->error = 404;
@@ -1457,7 +1457,7 @@ if(! function_exists('profile_load')) {
 
                // fetch user tags if this isn't the default profile
 
-               if(! $r[0]['is-default']) {
+               if(!$r[0]['is-default']) {
                        $x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
                                        intval($r[0]['profile_uid'])
                        );
index fd6b818e7841c5c70cbb51b2b034ccd2be9977e3..136583c4d977b4f81ae827c4ea23bab87af54160 100644 (file)
@@ -3,6 +3,8 @@ Vagrant for Friendica Developers
 
 * [Home](help)
 
+**Getting started**
+
 [Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. What you need to do:
 
 1. Install VirtualBox and vagrant.
@@ -20,4 +22,18 @@ If you want to stop vagrant after finishing your work, run the following command
 
 in the development directory.
 
+**Import test data**
+
+If you want some test data in your vagrant Friendica instance import the database dump friendica_test_data.sql like so (inside the VM):
+
+               $> mysql -u root -p friendica < /vagrant/friendica_test_data.sql
+
+You will then have the following accounts to login:
+
+  * admin, password admin
+  * friendica1, password friendica
+  * friendica2, password friendica2 and so on until friendica5
+  * friendica1 is connected to all others. friendica1 has two groups: group1 with friendica2 and friendica4, group2 with friendica3 and friendica5.
+  * friendica2 and friendica3 are conntected. friendica4 and friendica5 are connected. 
+
 For further documentation of vagrant, please see [the vagrant*docs*](https://docs.vagrantup.com/v2/).
diff --git a/friendica_test_data.sql b/friendica_test_data.sql
new file mode 100644 (file)
index 0000000..c39a057
--- /dev/null
@@ -0,0 +1,1787 @@
+-- MySQL dump 10.13  Distrib 5.5.40, for debian-linux-gnu (x86_64)
+--
+-- Host: localhost    Database: friendica
+-- ------------------------------------------------------
+-- Server version      5.5.40-0ubuntu0.12.04.1
+
+/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
+/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
+/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
+/*!40101 SET NAMES utf8 */;
+/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
+/*!40103 SET TIME_ZONE='+00:00' */;
+/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
+/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
+
+--
+-- Current Database: `friendica`
+--
+
+CREATE DATABASE /*!32312 IF NOT EXISTS*/ `friendica` /*!40100 DEFAULT CHARACTER SET latin1 */;
+
+USE `friendica`;
+
+--
+-- Table structure for table `addon`
+--
+
+DROP TABLE IF EXISTS `addon`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `addon` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `version` varchar(255) NOT NULL DEFAULT '',
+  `installed` tinyint(1) NOT NULL DEFAULT '0',
+  `hidden` tinyint(1) NOT NULL DEFAULT '0',
+  `timestamp` bigint(20) NOT NULL DEFAULT '0',
+  `plugin_admin` tinyint(1) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `addon`
+--
+
+LOCK TABLES `addon` WRITE;
+/*!40000 ALTER TABLE `addon` DISABLE KEYS */;
+/*!40000 ALTER TABLE `addon` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `attach`
+--
+
+DROP TABLE IF EXISTS `attach`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `attach` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `hash` varchar(64) NOT NULL DEFAULT '',
+  `filename` varchar(255) NOT NULL DEFAULT '',
+  `filetype` varchar(64) NOT NULL DEFAULT '',
+  `filesize` int(11) NOT NULL DEFAULT '0',
+  `data` longblob NOT NULL,
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `allow_cid` mediumtext NOT NULL,
+  `allow_gid` mediumtext NOT NULL,
+  `deny_cid` mediumtext NOT NULL,
+  `deny_gid` mediumtext NOT NULL,
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `attach`
+--
+
+LOCK TABLES `attach` WRITE;
+/*!40000 ALTER TABLE `attach` DISABLE KEYS */;
+/*!40000 ALTER TABLE `attach` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `auth_codes`
+--
+
+DROP TABLE IF EXISTS `auth_codes`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `auth_codes` (
+  `id` varchar(40) NOT NULL,
+  `client_id` varchar(20) NOT NULL DEFAULT '',
+  `redirect_uri` varchar(200) NOT NULL DEFAULT '',
+  `expires` int(11) NOT NULL DEFAULT '0',
+  `scope` varchar(250) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `auth_codes`
+--
+
+LOCK TABLES `auth_codes` WRITE;
+/*!40000 ALTER TABLE `auth_codes` DISABLE KEYS */;
+/*!40000 ALTER TABLE `auth_codes` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `cache`
+--
+
+DROP TABLE IF EXISTS `cache`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `cache` (
+  `k` varchar(255) NOT NULL,
+  `v` text NOT NULL,
+  `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`k`),
+  KEY `updated` (`updated`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `cache`
+--
+
+LOCK TABLES `cache` WRITE;
+/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
+INSERT INTO `cache` VALUES ('probe_url:0:friendica1@friendica.dev','a:15:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:3:\"url\";s:39:\"http://friendica.dev/profile/friendica1\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://friendica.dev/dfrn_notify/friendica1\";s:4:\"poll\";s:41:\"http://friendica.dev/dfrn_poll/friendica1\";s:7:\"request\";s:44:\"http://friendica.dev/dfrn_request/friendica1\";s:7:\"confirm\";s:44:\"http://friendica.dev/dfrn_confirm/friendica1\";s:4:\"poco\";s:36:\"http://friendica.dev/poco/friendica1\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:30:00'),('probe_url:0:friendica4@friendica.dev','a:15:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:3:\"url\";s:39:\"http://friendica.dev/profile/friendica4\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://friendica.dev/dfrn_notify/friendica4\";s:4:\"poll\";s:41:\"http://friendica.dev/dfrn_poll/friendica4\";s:7:\"request\";s:44:\"http://friendica.dev/dfrn_request/friendica4\";s:7:\"confirm\";s:44:\"http://friendica.dev/dfrn_confirm/friendica4\";s:4:\"poco\";s:36:\"http://friendica.dev/poco/friendica4\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/6.jpg?rev=2015-02-02+12%3A04%3A29\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:32:24'),('probe_url:0:http://192.168.22.10/profile/friendica1','a:15:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica1\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica1\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica1\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica1\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica1\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica1\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:49:11'),('probe_url:0:http://192.168.22.10/profile/friendica2','a:15:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica2\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica2\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica2\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica2\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica2\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica2\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/3.jpg?rev=2015-02-02+12%3A02%3A40\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:40:43'),('probe_url:0:http://192.168.22.10/profile/friendica4','a:15:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica4\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica4\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica4\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica4\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica4\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica4\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/6.jpg?rev=2015-02-02+12%3A04%3A29\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:45:05'),('probe_url:0:http://192.168.22.10/profile/friendica5','a:15:{s:4:\"name\";s:10:\"friendica5\";s:4:\"nick\";s:10:\"friendica5\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica5\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:43:\"http://192.168.22.10/dfrn_notify/friendica5\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica5\";s:7:\"request\";s:44:\"http://192.168.22.10/dfrn_request/friendica5\";s:7:\"confirm\";s:44:\"http://192.168.22.10/dfrn_confirm/friendica5\";s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica5\";s:5:\"photo\";s:68:\"http://192.168.22.10/photo/profile/5.jpg?rev=2015-02-02+12%3A04%3A06\";s:8:\"priority\";N;s:7:\"network\";s:4:\"dfrn\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:44:00'),('probe_url:1:anarchism@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:37:\"anarchism@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:17'),('probe_url:1:ccase@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:33:\"ccase@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:25'),('probe_url:1:friendicasuggestionbox@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:50:\"friendicasuggestionbox@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:21'),('probe_url:1:http://192.168.22.10/profile/friendica1','a:15:{s:4:\"name\";s:10:\"friendica1\";s:4:\"nick\";s:10:\"friendica1\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica1\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica1\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica1\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica1\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/2.jpg?rev=2015-02-02+12%3A02%3A11\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:49:12'),('probe_url:1:http://192.168.22.10/profile/friendica2','a:15:{s:4:\"name\";s:10:\"friendica2\";s:4:\"nick\";s:10:\"friendica2\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica2\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica2\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica2\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica2\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/3.jpg?rev=2015-02-02+12%3A02%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:40:44'),('probe_url:1:http://192.168.22.10/profile/friendica4','a:15:{s:4:\"name\";s:10:\"friendica4\";s:4:\"nick\";s:10:\"friendica4\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica4\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica4\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica4\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica4\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/6.jpg?rev=2015-02-02+12%3A04%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:45:06'),('probe_url:1:http://192.168.22.10/profile/friendica5','a:15:{s:4:\"name\";s:10:\"friendica5\";s:4:\"nick\";s:10:\"friendica5\";s:3:\"url\";s:39:\"http://192.168.22.10/profile/friendica5\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";s:38:\"http://192.168.22.10/salmon/friendica5\";s:4:\"poll\";s:41:\"http://192.168.22.10/dfrn_poll/friendica5\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"http://192.168.22.10/poco/friendica5\";s:5:\"photo\";s:71:\"http://192.168.22.10/photo/custom/300/5.jpg?rev=2015-02-02+12%3A04%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"stat\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 18:44:01'),('probe_url:1:http://mist.loozah.com/profile/derbuffer','a:15:{s:4:\"name\";s:10:\"der buffer\";s:4:\"nick\";s:9:\"derbuffer\";s:3:\"url\";s:40:\"http://mist.loozah.com/profile/derbuffer\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/d64d23ed5df3879a\";s:4:\"poll\";s:42:\"http://mist.loozah.com/dfrn_poll/derbuffer\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"http://mist.loozah.com/poco/derbuffer\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/98.jpg?rev=2013-07-27+00%3A10%3A59\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxYVep62s0skTI+leYCrps\n6Ms4wUZKaX4+nGniLFmcJl/wTscDEKNh81PBaTropeNNQUjxYxqvabkGFg3OZte+D\nDAfXkHunpeRXgBPwV4sBHuJGFVU1hAxkt9QKxXSimjQDbBygAOsXdgbAiuBsBADQL\n0UOM5CPRdhWiHebwRsg2TQOrRq+DOEXkuiednRHjiMxK9lKR5UP4xptrzOlJTfGZB\n89nszA2khxgZpUYRuFUtcvipJSBT1Q2OLAmBPEg7kmOkO1RxumsU3sUBLCigoolPl\nNNbdHXBQZZMGDUMs9pxcDzqBJHCIGeTYEfFuTqZ05bb3TDorU1EdODy8u48x5ficQ\n551E+Z4iLaBxNd2CGplGZ5S241xrby+6oEj4ftPzaYlsfldMpijNcNiW2ffU6qwls\nLKTHKw9IB3CtxQ3ZqjTpb8qwNKip7cUgR8knX2YVS3ApcJHqWdkyhqDIpxiaKdj8G\niGdid+XXQLwJjfkQYbVMbXzU8jZHu1aMcYknF6YdW6YqVe+8qkvanIQniO/GpqS8Q\nm1SS1xVvh3quTOpX0pB3aiJ2ODsQbYndSv2Aw087FJVV+o6G93EHDVbrigb1ZJtKG\ngZwjS2kC8tOztX4/hslJ7kDnVEFMLWjoMXc2kugbSH0/89C824TlrWgY1m8pSD5AO\nFx7+yYcgljaMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:45'),('probe_url:1:http://mist.loozah.com/profile/joooo','a:15:{s:4:\"name\";s:4:\"Jo A\";s:4:\"nick\";s:5:\"joooo\";s:3:\"url\";s:36:\"http://mist.loozah.com/profile/joooo\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/c8dae3b8a08f3e1c\";s:4:\"poll\";s:38:\"http://mist.loozah.com/dfrn_poll/joooo\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"http://mist.loozah.com/poco/joooo\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/64.jpg?rev=2012-11-12+15%3A32%3A02\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAz+yckaZV72WcvJT7fVQlq\naHAomn9zUfGhHSF8pNWY2dYhnuzZ4l1kjSSjWckisqZdL1amTF+/phlO+2y8wqrc4\n1NbVNQpjx0prgqsjm2KS9iQjEeFnhqSZdULLBb9oTgYK+lzQj4AL3lOZZrVxR60/l\nprGREhvO1OJyIq0Kw/qf5Ib+zNLyHKRoH/F1NIi8F5aOfZuVWI4H6XPPBg+LgW6So\nKNPPaNaX1S7xTbASPgcQPFLVWZmTdpmyot4hfX5Qj4LiBlADWFJ/YiOXskSEzuYT/\nSpCURQ3cHB0UvIARF4r57JbOZVEdUyiN46d/33Ua+iFdTnNJBdqokDZhGqh/dJhMS\njk557u2ZihGNoaizIlad9+30Jj07O6JlPF4vC58hCDQ3c5Jmc7m3oDUylhAFiTxfR\nfES9pE8wDXIF81ur0DbsLpThfEkmEjwOUHnHFN1gYspfJii/dNaUVuluxVcqJ20RD\nyg9BXo+5IhC/mu2tKiMdV6NrYkU3W8NGDo7QyH3EsceRXE8i/H4QgkYeQQz0puoKN\nIM+cQZmuqPsr1BGWuGzYJ36047Am6kQYqfIYoizNKqse1yASpHS+ZOuRB0EeatGvV\n4DtYmXrhQy0iZJysN7GtyysGe2Q2mqwa2y+YvMaftkOgbtaqcs/xuESE+PGcD+myr\nZOeXgL1c5CBcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:46'),('probe_url:1:http://mist.loozah.com/profile/mkay','a:15:{s:4:\"name\";s:6:\"Marcel\";s:4:\"nick\";s:4:\"mkay\";s:3:\"url\";s:35:\"http://mist.loozah.com/profile/mkay\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/05fab1296382d87f\";s:4:\"poll\";s:37:\"http://mist.loozah.com/dfrn_poll/mkay\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"http://mist.loozah.com/poco/mkay\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/24.jpg?rev=2012-06-14+19%3A06%3A37\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC1H7PI3m1GkbjKK2KVu/8hUQmqa\nDzcvHzk8S3Yo+5duMaBR9TTs/CMSylc/dSkyG6m52dJl1PL1Hm5/gcdIu4udciHz7\nqfwS2o5EwwqmtMhlq12/L8WnZRzYOlkEr8dF1hkKqu+4QO9/NUyNYq60+7lOJfNYK\ntMsLAZgGpUt91xQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:45'),('probe_url:1:http://mist.loozah.com/profile/rike','a:15:{s:4:\"name\";s:4:\"Rike\";s:4:\"nick\";s:4:\"rike\";s:3:\"url\";s:35:\"http://mist.loozah.com/profile/rike\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/aea03cdf0e19a1fd\";s:4:\"poll\";s:37:\"http://mist.loozah.com/dfrn_poll/rike\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"http://mist.loozah.com/poco/rike\";s:5:\"photo\";s:73:\"http://mist.loozah.com/photo/custom/300/2.jpg?rev=2012-02-03+14%3A10%3A17\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvALRLW3VfSJgD/rKSitV1\nuOhnX32dd7V+SZ52sWMZz4MWmMMZpy8cHup+Fku+IlXEaQTdYjaJz4rTXxKEwmWSR\nG/EcbdyMS1RQnVsmQ0W7SUM7jgDeHtZFS6V+5uT1/2UVpaONvvGPuZuBpbAoQZD6a\nbmwoSTxCZG4j4jo+ne81pxPe524ovSzvQOR7oCfRx68+EOIiBUmyTqhKgdKE5ZtID\nDRtcn452ePZbb+ejhBpNoQx5ulhGOPdRKprN6sz7VyF0+7UFW0ALjGA0wGhRmlACT\n/UEqrJZvaG6Fs50/8NTNtaUvCtqvXvea1n2KAhUMd7pg41L+t71uPx98U96XmY51w\n4jK4SV/OWNyMGTkjtlsbiqA3IW7CN9BVuTLkmaIiGe7SyYvEgPPMMW1h3LCDJAYnA\nxPo1W8u8S9hCbGdobQY2pFaj8Z3Z52aleb+Gp1AxtEI1MNA4toBUe/XZAKZW+fPKA\nJvrZJG6E+LORvPeSZgj7R2eiTKo+5E466WhlwtO74tCygb9P3wQDMX/TbMRCGQne7\nGc87kev/62HtfD9QhBIGSiyCawy3UCv4M3y8q06xOCYcvoxme41ZmgriX1Si3ynSG\n7r5o/yE+TBxK2yOk/fHRM8xocMNp5fxVaGk4JVpUnoXs/vabaBDfz9yBkmXQHzfy1\nqO8fgmH13NdECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:44'),('probe_url:1:http://mist.loozah.com/profile/torsten_peh','a:15:{s:4:\"name\";s:11:\"Torsten Peh\";s:4:\"nick\";s:11:\"torsten_peh\";s:3:\"url\";s:42:\"http://mist.loozah.com/profile/torsten_peh\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/7f29b32e15e64456\";s:4:\"poll\";s:44:\"http://mist.loozah.com/dfrn_poll/torsten_peh\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"http://mist.loozah.com/poco/torsten_peh\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/13.jpg?rev=2012-05-15+12%3A58%3A18\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1NRmqgaCC7Yw/Im0cS6U9\na87HbNmWinBcp8QypZGyyELDfoeaoUcjwASRWSdOC0VSJ1uyTiQl9Fhm1j5W+iJde\ndBrR8oOc3xH/ExIJY5ZfhwXdmPZkZ3ANIYPPuS9wINmeRQvR+3hNxci+YEag+RGz4\n4DWA137iYNgDRGb6w+I223dIp7oHgJ7NfRab+vaUknWw4oFQEQoO6qsLNtysvTxf4\nFwkUjmadPVLN7LfSG8iFLlpA6u8nBa3ef5qPI7WczYF31vcACov3zo8sCWSZW9xMf\n6sN9ZwIflzEVTka41LIwq5LKve/3AKUHa9cjibDyHykodDSB1B157kHvJtF/v40ti\nLIayiJU4/Jq8OuKSTZNvtmI4m9T4WsMOOVDPwCzlIDxA1UkQcGWBTq+RB0bLzoJH+\n0pnnLHg691oS7uaFvdp1PRTiwBlBE9IkEzsAFjAjjhmvU8k2QuA2r/5W3drwXqBKK\nmQGyx8jYr3ecTzPHY/6f6nZs+mcsgqMCQHwenstetpvP1huC03GoluOt0FehV/bXw\nmDE6H3LlgBsHiQ339H/CVTUQsUB/CNY4P/9Swx5KWq9aSI0fN0CdyB3Opw/cxel06\nbHuSLdIKf+mdia42LV+dScMFINHftADR11Ujvi5TP+UVULDlzNd+ANoN1DTYt0iSi\nrWVu/aNlZdx0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:44'),('probe_url:1:http://mist.loozah.com/profile/zoninoz','a:15:{s:4:\"name\";s:13:\"Gianluca Zoni\";s:4:\"nick\";s:7:\"zoninoz\";s:3:\"url\";s:38:\"http://mist.loozah.com/profile/zoninoz\";s:4:\"addr\";N;s:5:\"batch\";s:37:\"http://mist.loozah.com/receive/public\";s:6:\"notify\";s:53:\"http://mist.loozah.com/receive/users/d5fd9c60544dd54d\";s:4:\"poll\";s:40:\"http://mist.loozah.com/dfrn_poll/zoninoz\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"http://mist.loozah.com/poco/zoninoz\";s:5:\"photo\";s:74:\"http://mist.loozah.com/photo/custom/300/56.jpg?rev=2012-09-12+15%3A38%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzWff4nB2B2byJNEjqm9RP\nVnbik6snJIKzCVpZtHvimjj9FT3TM32y8f05gI6e9JQXclYdpfTOS/nz6hVJFrnus\n60I7CLqQtrXTN/d50p0wDjCM7O3hvpw44ALF1GBvR+ZEjO7Cu8FgxpFARMLMCc7uS\n7ok6Qs7rH0IobV/vdOnYadiQr/zrysN0g6yV9qyH97sgRUrWAGk+G1bPv6Cvn8+Z0\nz0yzxx6VufDC0PHyP+5AIABUQJcoJsN+Ds68ywVYZB/qx41h5tX/CC+nvIr7a8fwk\n0KeAYn1rWKj1nC5eb9Q4Ko5b6GFKGIGe8JhQGRhjJLYwVrUd3BQ5j2m0C/jyAJot/\ndQSIouwOh4sAvLodfsckAYwbqP0W7l2RNoustrzFj4q3xoVYTY47DxWqOfY85uaCy\ndAjzcQRA7/3OUIlAfTJnC7NX3DhwfztthPBRWngze5dmrqNi7C6J0J3N5qcNJfQaU\nVSrW7tv3WvFw2a6hNSni+v0vGH1xUUBkbGVo973R0kirU42w8y0KVeoXizX+QdPpB\ntLFDX3qy7NoH1DcHyXSw/Ti0teFkJ0m0Or20PmiC0O8KUuqwvimNHG+goLtdit2K9\nJoFUcxSJEOCLIsEQBxES7ZnNxYulrqKF2/5ykK4l1TpfnFkdfce6J8nbUqE2e6vfz\nE8vD/O67EZIcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:45'),('probe_url:1:http://social.rueetschli.org/profile/dj-atropine','a:15:{s:4:\"name\";s:8:\"Kevin K.\";s:4:\"nick\";s:11:\"dj-atropine\";s:3:\"url\";s:48:\"http://social.rueetschli.org/profile/dj-atropine\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/9b76304e18c5a4a9\";s:4:\"poll\";s:50:\"http://social.rueetschli.org/dfrn_poll/dj-atropine\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"http://social.rueetschli.org/poco/dj-atropine\";s:5:\"photo\";s:80:\"http://social.rueetschli.org/photo/custom/300/66.jpg?rev=2014-12-31+13%3A05%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtfHtX7kMAF5shJt+g2DaJ\nFLm9bWzDcXvUk2mSiEnvHs+S/5I+fBvTBshYljiIN0shCQY5XM838vMRle4WUxczm\nVQpWFBZkxnLGUwkyqwQuU4btfMTWCswhi9t8LJRpQD3idpoSGqZuQa+YAMRth2WCX\niIQV3LV04gpcolKuLo4wyNRT8OULQFdhFnSNs+js4307LIiRSJT+yX9dHTY/0qK3/\nH4Ciq1WKw46dTHSEkoWPW4oXvWBdS7HOxi7w5hYx++5+MYqqOvL7PavCSgTj0Crvp\nuVs0Bq8DKqUtCAAsf8kSB2/GeGxdpxgJHeF2NrX99xN4hqTIyHmvj9/rH9YRMFKPo\nruqTLvfWlQ+rzykzCGB4ntJ/JioesPOTcEEm9iQU2TMGiwdjD55Ri56EtepC2BOlB\nVUF23eax9SAb/FSEnSZ1nRUP3I+FcdfHes0Mn2Dc8s/DbBNRT3bhfTqzkinPkEX4P\n+Wd0olfXnKw69n3e30MQv+rhaSeqDy2D/yY3QgZlPB4RCXnf9fnd3vzmNfyWCQdyf\nFiYu2jPUTmwi8IDbm3ffXg2Ydypj5QiSWJt60zej6BkQjo2sBuewX7rkkfGPClwsd\nk66fIhT5OcloqfMyk1tFxgsq4cXVpOvWj+6RzVRVZLil6W4o+nSFoSF7w1WjXtx/q\nyLuhzxAj+h+sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:39'),('probe_url:1:http://social.rueetschli.org/profile/gsxrpilot','a:15:{s:4:\"name\";s:10:\"Jim Wiskey\";s:4:\"nick\";s:9:\"gsxrpilot\";s:3:\"url\";s:46:\"http://social.rueetschli.org/profile/gsxrpilot\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/67e3845ede95d2cc\";s:4:\"poll\";s:48:\"http://social.rueetschli.org/dfrn_poll/gsxrpilot\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"http://social.rueetschli.org/poco/gsxrpilot\";s:5:\"photo\";s:80:\"http://social.rueetschli.org/photo/custom/300/36.jpg?rev=2014-08-21+01%3A47%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA7avQsSRv37f0BXuCqA2Ar\nYJjz7iYgbZRotAV74tZ4uLCFBEBYJC7xeIxAdJH4qdltSNftjeeEOiaeSBpTKapgR\nOMRGhYtIJrABilrArxBRYHmwxHXsXvJmSODweXmpmod9klyINoPTGEJUDWLwA+m4Z\nGnqTWnsTaq4piMUKn00iBINtjP5DRkUpQhCZtwciW9gMFdgz07pqW+Pko2zSILOrh\n+ndM0IDnB958vzdBUcXweSv9Ryd1Qtj4R0lHGfdgsQ6EpCyW2Ocrs+o99B0NLRoII\nYfk/4GLi8OrmqCNRqMWGI3ENysPYIKuY2aI6q2dNXAeLdm9tJrloHLwHr7eTqMlyz\nCJrasFihic/1ACVCfQplcmuDkhvSUx2i7LYlD7te0MH6in6c90qMNs2MbqAZo+CMN\nkMjyGJxMLiiXjW2puQq+tJkj4TYj5PTssPrKwvbd8Mt6hogoEHm/AcRNdC3U8/Rzt\nnTysXJAb7DjC1r2eyOA7n4So3RLS+e0Itjw1dY/CalKgTdKZijLBe3IoEYaOPl1SW\nJbW76UkKL7JfPG+dyCDcCSVMDuday2n9A3/ICua9+Mpr4Xy0w11TdSaDA3pbymo4z\nNBnl5PbX9WfwSLjeepidLBjXbwuGDwf79XVj42kQa1TeALUPeBQVkaB1++keE1wq4\nXVDHnlShE8i0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:37'),('probe_url:1:http://social.rueetschli.org/profile/land_ei','a:15:{s:4:\"name\";s:7:\"Land Ei\";s:4:\"nick\";s:7:\"land_ei\";s:3:\"url\";s:44:\"http://social.rueetschli.org/profile/land_ei\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/f036c656065704e3\";s:4:\"poll\";s:46:\"http://social.rueetschli.org/dfrn_poll/land_ei\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"http://social.rueetschli.org/poco/land_ei\";s:5:\"photo\";s:80:\"http://social.rueetschli.org/photo/custom/300/32.jpg?rev=2014-07-25+17%3A03%3A43\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtfPAAYbhu+jGszgk8jNdu\n1Jgn4hxGqQHbxTLF19CM7s6c+h1SNPBtnF2lcbrSHcPhzkLkmE+WlNiM97Pm/XgQD\n/N3Yzlv+xrJjGLn3odnTv/nvag8s8GVY5C5T9da1T1udziuuvEUui+by8Eh3Gv9TL\njGp/buIO0Lw7j0lb/R/vo8DZzfswqYLmOaS6SgmqgBsC4W5B2011A4srOrRK3YhVP\nX4Sw5EAfuaJwH0d62hsBPDYPg8OSZ9U5hTbpjgDN9TG155tqQadBT9z3YpqtZ8X5x\nDzacBKSURnNpm7nLVTLhDPtKY04tjibofEne0EFlitQ4rOH4deQdU3leoyqhThPzb\nZd5h/bqI46MfAs/cFyzSv2C5HU/RmTKXLj2Fy6wMCZoJOkDRoB+xsIBfjYQANAWbV\na+crxgqYk8F9aYndShMRQJ3bkrJ28K64dmVWwuPHPf27lS+uJeXUOxmbb3WvpqRRb\n8k33qdvOmNEp1KgfENYSwymQGsgtNPDptr4k/XtbPITDUKp1w6Ywho8e2dpDPECyd\ngErA1yGsOgRimul2ZqX4xV0aXF9SJGpv0XWELf/EFYrfJEmr7gmWJ6vZl8ZOPtxJw\nTfVmOiKEpzTzdED1nsDqCPACR4g3aeWiWBPzD9PC4VrqHx4vtou9XFNPUVRlXeAvE\nic+paai97QxUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:36'),('probe_url:1:http://social.rueetschli.org/profile/rueetschli','a:15:{s:4:\"name\";s:18:\"Michael Rueetschli\";s:4:\"nick\";s:10:\"rueetschli\";s:3:\"url\";s:47:\"http://social.rueetschli.org/profile/rueetschli\";s:4:\"addr\";N;s:5:\"batch\";s:43:\"http://social.rueetschli.org/receive/public\";s:6:\"notify\";s:59:\"http://social.rueetschli.org/receive/users/cff69c2545d38198\";s:4:\"poll\";s:49:\"http://social.rueetschli.org/dfrn_poll/rueetschli\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"http://social.rueetschli.org/poco/rueetschli\";s:5:\"photo\";s:79:\"http://social.rueetschli.org/photo/custom/300/1.jpg?rev=2014-03-14+09%3A30%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzHcQZ0bYfqClvUbGxdsTO\n10KreprdvbRBPAArS5RZsswSR4u5U/rSI9XIwrNhu3xbzoE1Qk98intf2A92JWyYm\nWv2YLn/TB08woVC+6Tn9SLDi2JONQv4H7MzDyNSdaQgKncuejI0Va0xGkiDaBFyU0\nvKyI80tVaIkvJLa6fx9RB2b2j3fEnjyn0gk1x8QrYCKdgfildk6qcToIjslp7CGjc\nPNcVfr1HguIr/umDrOKkeTt+aYFxa1vUFi4+OW5BblPS1QabubByx8ERvTRv1or1V\njGIHoVMz9cTyHiPsebH+XgvqyR5LkHp1RM5GO3jLEKj7Jp51SkdHSAYZvJ8KpD9oM\nKQ2izxQUyLqj45UHEtlhh/Sxo3B0XLb97hhvhwTXszhP2ccKUlxS8TcfHrKuKe41J\nriEJoqd99LuZ++iezmLsXcxtxPAuplDOzCobzwGvaynpFoDHgOsmBQJyFWOtZjsR8\nbODuHyW7BKDq+Yb+XpAZ6I1izFjL4bpYmcWdKAkqN6SBofEgeH1G6TwAnHXHag3lO\nV6j2dQOwYkyg6iqfb1dCpKDFHMPbz4BmCeaBwmsT8ArJPPhL66r98iXL/yl2bL/up\nnVMy2RUxs5kncSob6XGEMejZD9bWm98n489LoBQ72L4pSwRrnIdTs+qQnRgNQKGHN\naKlAi7Bi2SMkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:35'),('probe_url:1:https://friendica.eu/profile/arescorpio','a:15:{s:4:\"name\";s:13:\"Nepesh Hacker\";s:4:\"nick\";s:10:\"arescorpio\";s:3:\"url\";s:39:\"https://friendica.eu/profile/arescorpio\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/1ef695c1de7dd7fd\";s:4:\"poll\";s:41:\"https://friendica.eu/dfrn_poll/arescorpio\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://friendica.eu/poco/arescorpio\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/516.jpg?rev=2012-11-07+22%3A39%3A38\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1N890+0zW04i6ljy7QMuX\nCl5MmJooxApqHKsvwoe8fJY2K67zhdb+Fg2LDtggQFlkDFZ39jZWVr0nxvaebpq7p\nQ0G75N+8nsFhSxlcb6w2LW3u10w7oeQMPIOkCkM3HDGr71rfc8TGTAlEjxf19YdwA\nQjrAQeuVtEkCbWWef2nxmxAHIn64LDe5TY8sd13aqUR3x2e3bcqeE07W69KtUP03i\nfsvL6xc0V9GHNmyQsEI/4B14lCS/su8pUuW3f2JwXGWAVGcW0NJdqtsBCeBTV626u\nuf0522ygclrqWCJQVJyzil04jeBUs6Se9cmCEnl9CBH3nscOHmDZ2BdVU8kXV6Y6g\nfeq8efJz6kIYsty15OpzKTDOUmkn6wP4Hdf1E3t1u7IenntL9piNXhUKWr2tFu+9d\njxJovSGdn13I6eJlV7LWeehB86l+XtqQnhANJAq17QQ/nOm47lQ6Gl2aFKyolemX9\nCLhbZXXapDiydnZUm2NhV2glg9LtMYmucqR8k0w1jIO/XPLyg4qBmJOez9/lhqcIJ\ngB8ruBl1BVIZ93QiLPcYuIQcnVaBGmxcG1EkoZWZa99vO8TcpXci/ReOfVDFABlbF\nImAeWxGXNsk7LKDjAKvdwcUmSzANMDvKc5MU1r8IKeffADZ51f2XVEZlOGhhCbclK\n5p/nwWYch8EMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:27'),('probe_url:1:https://friendica.eu/profile/auga09','a:15:{s:4:\"name\";s:13:\"Montse Freire\";s:4:\"nick\";s:6:\"auga09\";s:3:\"url\";s:35:\"https://friendica.eu/profile/auga09\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/3b1042012d4f3e70\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/auga09\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/auga09\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/934.jpg?rev=2014-02-16+14%3A17%3A30\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsVHR5j5ct5Gts+3aRNEKB\n96sL2E8jGh5dgKNP9pUxANQOEUE0fl4koHcyFEPOJw9y23HOmqDdH02wyRumRlDut\n4ONyR8Wh+jh/h83SULHk5sirMNQdunnVOf/I+7/WrxL474+SOTKtiEVsZsxIdp8vM\nVQcwu/C1wXN9o6Mw/eCNfNwdL1XrDA/TkobsyMOHesBgsx4rgeuZkNl0Z4p9vtfra\nHjPsWMlTUVNUyBAO4Ike6bYnzPp2+UWkUm045gMbruRdeYcM8HlZClzfVRRGuDola\nK+9rvgwbsEnacUTHIVYj1g8uFF+IbuDKW+6mIZNo3jADPXiwB1b6DA6PNqRIC3AzW\n8oHZMGJNYR8gC24udo21y7rX1R8VjtVRvDShzLPiNMgYAuaRBLooQh05ToV3CS2z7\ns7c50vbBmVoKTMLy7PDTtANVbfx7h7zvGMT0Hqr5LtaHINAOwMQyEK2HmHRTThQ+v\n7D7H7iStCDkEmkUoZv1P5MbGkkNw69tkMgt8kO0ijZP1uELkT5+nRiPKMlrDYQ9gF\ntj0n0oLDfcYn4BJyDE6gKyU2qen8HdnnOmnMr2UA9KzvtHtUFetC5/IB1iw9JjYGg\nNQ2t8jSEoauQ7o9EjQYhgmAFYYOP2wAD0e7Mi9yYxwx74YFoV30uXyskZs7ZzBPKu\nRe64J++DDgL8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:31'),('probe_url:1:https://friendica.eu/profile/cecile','a:15:{s:4:\"name\";s:14:\"Cécile Maitre\";s:4:\"nick\";s:6:\"cecile\";s:3:\"url\";s:35:\"https://friendica.eu/profile/cecile\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/612fd61458519106\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/cecile\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/cecile\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1703.jpg?rev=2014-12-23+19%3A29%3A41\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6KaZOzPrc79dwfyz6CTef\n5z0srOyutnvPSD+bX3Lc0DLUooIep5YGfUY7Ug0AegqajgDIplnBvz10Y3tIieSHz\npSkVOx14/96Eqt1GVLw9Pkzp8YO+dSCN5fHNJDkywJKod/pdSptKFcs6juL4rMmDY\nBQOz/G+CGQ05Z/nQWx9Uo6DXKT5Zi5FhnIPhLpOvH/G+6Zmf4dV5Gom2if7LbBJfq\nYU/XEP2lIvOy9ordTNi/r8ILz+T2CiwkG4QJ0YUrkZQc0r1xyazStCon8/ka7AnNt\nLMSIdkFlMJr+M4Mj+EHPVuDxSTILocJx6UH5iqLFPMBZjWMmwvHsBJLTmtszQmBIo\nYQzMVLJua7aDIPzFOKjQAQ+5qwOEaCEpaVk0Q8QYGUyx9/PIF2JCtEBjdvhhxEpPb\nfK6vWPysAVG1H7uFQ59YIleTyDpUgBaujImVa2ZE7ov6ZUHCPaItpbIPgYcXclluT\n3tMvQXcNNvD97mYVmHP6zbAesk0iiuemCovdjYAPLW/1tzGPLxEJcDvKH4tq/X8l5\nQa3Yut3N065abs8mePYWcvmxEm+8HxIGisMY8Fm1w4C3iOjyFtVEtgW+T9p0zJVFk\nmi+1IB/XwsZBB+iZyHXFGVVnWcd0vWyIh9eEvQ+WnBogH3JuOV+Q50Ro9aMKiCOq1\nRkvGv9WJ0Xm0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:40'),('probe_url:1:https://friendica.eu/profile/damez','a:15:{s:4:\"name\";s:18:\"Daniel Steinbacher\";s:4:\"nick\";s:5:\"damez\";s:3:\"url\";s:34:\"https://friendica.eu/profile/damez\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/ba8be719533da194\";s:4:\"poll\";s:36:\"https://friendica.eu/dfrn_poll/damez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://friendica.eu/poco/damez\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1791.jpg?rev=2015-01-15+16%3A49%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq8tyVGYjkHOpIUAJSE7fg\naA8awy7k7HH3YIMLG4e9fY1OH/36rk2PQc4LedqMqbdXbryqlw1NlQCQfcDQlECBH\nyNoiKMANdxFHEEmDs5BTbbM9Zi+ZXp2QDSKD2eHm9JDrP5udy1nrTdIrPwTttNU2A\ntQsNxIlocvp4Fy2X7eMEw/fjCT1FNZaQw8OYzcVoaqQOSS3H3732XLFNMNVad6p7f\nXfOYyW3vzXQDkj3CWg7111bL3Bw5O1ydd8Jg/joxMVbC6hX4c4+NAFnSiTOc5/gJD\nL9+sDRzXKLQW8C4b+9GfJh0j8Ij/0DzeuxQipdWBKN6HzY6DnYVmeo/LVeQ1iKWLZ\n6pPaZE8J7IUlUNa6q7NusgzA1XIG6GDPGORfPIWS+qj7jbM4QMH/2Qfr6XOLIsicb\n1l25/q0/gM1+IAs1qxcvG2NsPIW1euTRdbxC/IuwTe4sSrGLSL9rduTi7rYUvcniz\nYTCP+I38IJ3N5U5f32svp45ZPduYEWUOQbFydh/27Q0aJOf9rxHZOjqcZKr81bzjD\nOXDmhotX8+JFYQooMcz48HCz8rOQ9aO7ImIQBagYj0aUlIKXEozV+tDJ6J1TX2V0J\nk6XwGh8Wy8b7blWGR3bQecZAjLnw2yYT6F3NeWiod/NISKge347WFlaxYRwuXBABW\nZZTgAm3yOTIECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:28'),('probe_url:1:https://friendica.eu/profile/discomplex','a:15:{s:4:\"name\";s:18:\"Alexandre Pólvora\";s:4:\"nick\";s:10:\"discomplex\";s:3:\"url\";s:39:\"https://friendica.eu/profile/discomplex\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/ab8540763d91389c\";s:4:\"poll\";s:41:\"https://friendica.eu/dfrn_poll/discomplex\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://friendica.eu/poco/discomplex\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1522.jpg?rev=2014-11-05+23%3A54%3A57\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwFA28FQsQY1O0iX4+sg8+\neAQuTgxz/KGUMWxbzM8ZCBLf3sQrYCvLjV88qvJVBBH+H5Nd2RYR6CyaIgL9c1ag+\nKUC0H6VvD1LqYzPKpCuM2AyaXIztJ8jzr5PXIQ9RMmriiQvV6zXKkOvvAedh7LF3D\n2DUK4ukwUtYjA6qkYh55cI0CfwsbbevB2lqLmuZ3YszIAgeQ6VwXuASdAnqXr7USl\nlu8/EiJalvPta5YAFHsLUBRZa3vWqStTrIr7GZj/t/6g8JK8UD4NG/NK+BJ4WL0LZ\nBmIPJqawDMssb2bQ3/7lJoYpZyK7luTVyq5irnuJDQxX+PYWGhbZYQqP/OqTWp4Wi\nBqPY46vsOz9xReVbFBD69ZMHfNRHdGE3j29b2JHy24CXpwRFydSjVZphifR6XGDD4\nNX7vf12mDQRddsHNIKe2i01JCs0WRW7My+JNnGvW2HIPsp5By99goRAkw/fDLIUJD\nrKqiyr2rFHDLxaCL5oeN6z5C+2wHGbD5/LmlJoQQ1zutTS+uXsSBWStRD8tdU4Xif\n5p+0KKYeXgh/w03/7DGa92d/Ib5DeK6p+uZFI0MyRdqK1qtUzD8YITaL/MzX/XEDJ\no8iwTL+TGP/s78sJXP4TrWlSNKo/U5hj+/Di/flrI+CrUGL/cmzFnyAk2k9JWwhAI\n5g75fUyTZ6D0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:35'),('probe_url:1:https://friendica.eu/profile/eilsib','a:15:{s:4:\"name\";s:12:\"Elie Bissery\";s:4:\"nick\";s:6:\"eilsib\";s:3:\"url\";s:35:\"https://friendica.eu/profile/eilsib\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/a9d2a9e51fe1dbe5\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/eilsib\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/eilsib\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1680.jpg?rev=2014-12-17+16%3A05%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApMxfgm7Lf/fZvvWF8A79a\nIaoi+aPAhpgRGdwbW1Ect5AyAnP9yf39lxY+yuHliWYb7Ex9mmBa7hGy8BRthm/Rh\nLz8LqImD3y8UibdRzJhKQp8w4nYLzem04xXmLC1s5/gFXYT3zuBypcUitMGCcZOyY\nTH7aWdPaQdZnY07vlbW4wsVd0hJmLA1OQ9yyoFNrwBzC+A2P7wG/auLbJJLJ1U90k\nKucoDX92jREmPbk0ZXfEAND6Z/wMeiIDrv14GDcAIuUtKOBoP+Pc2gU8sVBJ2fzt+\n4RPfKAvoDQ1CpJhtrU2Fqh16wYqJiyswfeLG/Q1gWMZF4GHqEZW/Gqp7Dmmf7MkIE\n1y519d7N1VDVN/QFA1qmeYxK0Y+w8E376YPedidTEVjHlqSZffnKgtIKEij1nh+L3\nNLcZLY5YOnkqmepZb8pnP77fsTDb+QEjbKHBE2iwuoGhfc+4128VGbynUWKKIKX46\nvnp1+kpSIiY9+9+Ylm2Onk6+TIM0W016HLXd54Qo24bFddk8KyOLRbHcW6RS0Szd+\niEsGZdrdtnBEqyCHVweexJ5KrdOUF+3pUt5LY2WCFtt/rGVfBrtnmO0C1CLfUfkGg\nm2r729XUKxQRP/ce1uqNiN2s1bCGZRsK/ppYrREIKQEJiQqDh9tL6Y5eTQKXAH4cB\nqIrzTYbWjv9cCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:39'),('probe_url:1:https://friendica.eu/profile/ftdevs','a:15:{s:4:\"name\";s:26:\"Friendica Theme Developers\";s:4:\"nick\";s:6:\"ftdevs\";s:3:\"url\";s:35:\"https://friendica.eu/profile/ftdevs\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/842cd856a883df2c\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/ftdevs\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/ftdevs\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/366.jpg?rev=2012-03-01+11%3A58%3A18\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA37HoXSAn/8ni65nqmDiwh\ndNntVQs+A2EW9f3hMe4p7pUIF9jr3wiYvRbTSBsXJ1XO6i62BlNgUX+c6M9TNiI3e\npwinmVDMB989RMQwLNpvDeJ7UMzgTvdld8BTTb3tcYVUfuF9bDxYscrwv0ThN0LWy\n5/RuVSBm2/qjm6R241EpBQpZGGwgimDUnhijWTS4AvcJDVVwxrB3Xh6xq81Qxsbqy\nOK4yP3mTYLt7bqN/bCuq92fFOAIHOjauwK4KT30E0V33oKxu4MV0nTaiR8U9ZoO3N\nr4QxyoDYvGhBBHNglUl2SbDswVcz1+KSneJ0H8wRhQlLU18zOIek1/Ra4umDyyNWx\nxnH2WvFQPYrPbhc0p69rxpIZ44ZCxNsqu4mTMLcGfcEndorLpULXA172i5ZY5nXqr\neWb4yk1g+EC6eSup4zbjtMm4t6938axiPwsEvFURcKrYgdxUeihUgqAo+/2EPR5ek\nMabF/REPk2exWV+3DduRqkxihcSJpE34wYZXdkmQzMo8kcL5rLyjfTa2/U0xHKRln\na8rRMBvbQOaNhqHGH3kQ7AERcmRDr1Qh6xJw82oEYf/8EUil6vWxuqjLg3oZExkgJ\n8hs8IGYKu1iZ3AfAtk+0Ty7uHWP1+ItsiTzXZsa+MTlidJugyrhAnfyr2AEeybzp+\nZleLM/xVBo7ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:26'),('probe_url:1:https://friendica.eu/profile/hvm','a:15:{s:4:\"name\";s:18:\"Henrike Van Mortis\";s:4:\"nick\";s:3:\"hvm\";s:3:\"url\";s:32:\"https://friendica.eu/profile/hvm\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/211ec34e3b62bdd7\";s:4:\"poll\";s:34:\"https://friendica.eu/dfrn_poll/hvm\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://friendica.eu/poco/hvm\";s:5:\"photo\";s:45:\"https://friendica.eu/photo/custom/300/250.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAySe6KB1KAB4boiEnf103h\no6c2r6azQP9TCdc7wK7sBFfj0eUj503/pfGcRyGgvOPgi+qqRxE+hfW2TJi54TUGu\nmAMUJbC/265PLpg2a2eSez0JlTwFa5PFuEh0MSROIgaqYaLemKiqE26uIVVWidEN+\nOumKs8kUSvIJ1FWpkvfawXIIgmr4WGVwAPMac2ZF2+0ElV17tBu7B2WteoCRlqm9D\n8lAloXgWUD38fy72bbok8ACyyKaVss97DH6SwltZ7dSbE7puUkQXFAy+5OVPlhqXi\nl1cqo8jTnhwI1EHWX5GfSTfa/eSF6lFyisQDc0e8VZ1q1L0zcCxqPlyAh5o0um6mR\nVMKC1LiuSJ7zMlejm8l+Jjk7zTSmIFiB51d6aYbI+MIJy6TXmXZIfG5TN211r3WI2\n7g2G7moz2T37GyqvTbB+y48uLbnuZ16S8hI6WeSqcqa2NBWSDtgO7L9TfTkXKOrbS\njHpyz6lW9wueYhQDFdxZrVhcSc9GTqw4LiQBrhgYlizQwiyzXt4ZnCn2pcKEU5PdS\n3qn97EYyGIrnIPJypJ/x+7xeGsL9pgY0aP49WHj2bLZn3nk0nTSJEA7VaXHDa+5Am\nyyN7R2cgFD/rC5NSS09xBhwGZ8yQbFthAdi+2d+Kz/zwvlhu6hH1MrJ304Msz1mn8\nbK2fbMaxaVl8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:24'),('probe_url:1:https://friendica.eu/profile/jacques','a:15:{s:4:\"name\";s:7:\"Jacques\";s:4:\"nick\";s:7:\"jacques\";s:3:\"url\";s:36:\"https://friendica.eu/profile/jacques\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/7625102b4b42335c\";s:4:\"poll\";s:38:\"https://friendica.eu/dfrn_poll/jacques\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://friendica.eu/poco/jacques\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/907.jpg?rev=2015-01-15+14%3A37%3A37\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2+Ex6et8LUQHr0YN5iJQ+\nE/+4mJvCfk4oVJMevpvPmnrUV1RBszyISUROwOuzLEE1BnmOQQyYJMaJ0i33Slx78\n4//AR3CF6mnR2k7/xSF6107JmqAWu6VliN1+k3ZjP/FidtHrxBfW35NC3mQZv67VJ\nN5iz9PSSz/qPSDPpXmo1nRaWVqb+894MUB7uH2Xxm4fx0CZv/LDnYJ7OjVH6bGAHI\nnETOA+3fHHApHDF29ezOZfhTbM1A7qEP0HE2Wm93WI21Ft5X4iEpXhf0cxWDhTKEe\nXCsuHc9HdNEfdB4NyWY/ghkSgOfmvfipsfee0BPV8EcQjuk10PBk40J76BAVTtDAH\nr9T/06ZlfZ9pDGaBv9JthzXKmdxeUsAVtbr9Z519dwi0gwwvac3e32FPcKdthISrN\nm7a8esYtWA1hXzpoQ7QZNapiZJBE03MqcJSuLpMYzTFAZUrCSrMTmKVlq9VzbzCdg\n6Fan6tcaJzI4LZ09N9mtSqlB0GO8aONFD1A7cti1vXCgJZXLgyC58jqV0Gx+Wpnbv\nhEARygVhouSb5YaNlU96enPBM5UevckNbET7IaBU4/R1paOCIMX9D5CQBzDgQyXDO\ndCSZVsytJpz/RHL5rcP9KkLTrGxlsoehTzzjuD0t2ArhE/RBoPb5M084aPeQJEui6\nkN1l/JBY4G/sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:30'),('probe_url:1:https://friendica.eu/profile/krinbouch','a:15:{s:4:\"name\";s:10:\"Krin Bouch\";s:4:\"nick\";s:9:\"krinbouch\";s:3:\"url\";s:38:\"https://friendica.eu/profile/krinbouch\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/09d41b4984c76966\";s:4:\"poll\";s:40:\"https://friendica.eu/dfrn_poll/krinbouch\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://friendica.eu/poco/krinbouch\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1471.jpg?rev=2014-09-20+14%3A18%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8Vgfyns8r/fGfU5Z3WnpL\nsyURateY/4VVkSiLILb8pAGjDqN0VfAE9+ElppXHXNve5YPXcS7ewn9FcfH7B1xih\n15zE6EH/cU6m6bzcu2dbkOGrU8AGlhqMv4Xti5Chx6iPboOkMRpaFXjhMmert5bYY\nlj4jr3SMilR58rVp9nLFEdP5cY/rBs1isqO8wzhNTchobqhVEeesEQRjF47N3itJw\n37OEuKcWS1pcTU6qo8CEcpLlUQKIQk4um/hLNbTdk654kH68MKv3oDTf4TKQi7hEN\nTnCIhTYD+gTy72sOiNGYodGTzb7PA3MGtCwps8D447fkvrjdATFJmyrGGpZzaLLK/\nEkuBQF0+5mY7Hi1RCrEPUogA1m4CYYepwPnt0KacSff/BKsufKndDsKc/C+1ESJZB\npHN9O8rPEDBw7912CXB7XT5UMxni5z45MQg0QwIEjZHNwwHSzqCQRlf5HxyIWuIVN\nA30Ek1p1WMiT/I+yoa2l9xWGB9i+zSVwEDCcvKR8/jS3auy6dI4iAz5/5l6gsABye\nzOpRWnwyDIbZ177knyO9clSP8PVtlU1d4B2aWuVSGoYDcfhs7TQd6aFxDBePX3R3T\nDbqhQmMK8tzplWEq9ZsU4IDGIM0FYSzmlFz8zv5WBpfpvhrn4CgA1sRIuUb1x7+yM\nA5RgDq1lM59ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:34'),('probe_url:1:https://friendica.eu/profile/lefou','a:15:{s:4:\"name\";s:11:\"Jörn Rinne\";s:4:\"nick\";s:5:\"lefou\";s:3:\"url\";s:34:\"https://friendica.eu/profile/lefou\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/508d1c2f542be96f\";s:4:\"poll\";s:36:\"https://friendica.eu/dfrn_poll/lefou\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://friendica.eu/poco/lefou\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1782.jpg?rev=2015-01-11+15%3A39%3A33\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsSesd5WVljG0TKC3NCZHq\n9WKsZulRL8irzmvOxRHdpA4YFpUKkPDXsqrH6DU2ZXnsGA1kaAvjVLVyIDfWSUO29\nkUkcxcz437PIzjHm8OoFoJ7ZgYMPhOu1Lcd+CASo2hCcKl3zXejWbNQh8daurmkY8\nOjAQDQjL74vVrtiG7D1zbd2nDHXHgYcxZ0uOoNLo9Po9ucq4T4eT69vsNK5FYcTBC\nmR4QrKJC1rGluq347lpTpzJ5p7JVm67HW2eBw9qOdtt2eGy0d789BK10DLH1xpqWX\nSW9AVoSppiLMwQRNxDb5EHxT+J2yDvo1hiMs+FRqx7ualcXvoPuxlqP4d9hVXkqOJ\nBXaT5f4gJBrHxNfmEPff214FQLuhx39p2S3DWdtQ5ZWHcFNPAqI9fKwIFhhbYktVP\niKamjlWdTg0MkH+PQUvtSTGXX4gW1y9XJAVTC5plCknJ+DfCeCpkGD8anWFSItt80\n1K9FbL9/O2Hw6zwxQB6MOZJ0xLxedwV5wKlAoYomXxPtAnIzM7qRLcM89UhZVUF02\nDzL1jo2YnRu+QwUXUAUEDrHeeQP/T4Ws4Zh4Jj7I4x6po7Lmy4SqUVK5/3wnTEbz2\n2ZZBbianaTWZ23R/kW5soK3LPz9IR+iHCmidaJpfEXxLK2qG8VWf//c7PVTm2vTAk\npoqBDpjVpwz0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:42'),('probe_url:1:https://friendica.eu/profile/loran_mcfly','a:15:{s:4:\"name\";s:9:\"Loran Btn\";s:4:\"nick\";s:11:\"loran_mcfly\";s:3:\"url\";s:40:\"https://friendica.eu/profile/loran_mcfly\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/c6b410f205e95e49\";s:4:\"poll\";s:42:\"https://friendica.eu/dfrn_poll/loran_mcfly\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://friendica.eu/poco/loran_mcfly\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1781.jpg?rev=2015-01-11+09%3A10%3A33\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2awWpa4k4aYuFtZq/hRSG\nDhilybrjcrWhCPiWcykVWDNEgMdx9oCvv+DS1JPSzVKu3q+56cuTC/wgkYVHpO5G6\nCaENsAeYWc6Lib4BEBHGCz0iZIgzwDimJjeb6sQ5bku9ReqtddMB+QgHrNvwk87m4\nW+U6Z2Gr4s3hW1/MxsuHTgwuUbcFId0wj3ZruULLgZk6Z4X89iS1gl6d1cB7Ou+TR\nBM356l/QCrLOBPTR4wk6e2ilJh469W4ezEwwCX5zFUhhyzHURdwqi2iXy2/kiHDHb\n6l58Q+5zO9+gvmpDotFkrGS9SSz/Y2x86843LuR8l0tUt3sUvhW8nrHdghieWxZLS\nqpqHuSc7jskQb7WRVugZxgLdXusdqdnuJ71tS+iwY+JFjY+TqKsGvId3tn/r0sCrA\nvREs84vWcgDgY9GwVd86LYcv6Pbn0kk7McAPAUU8pNbniNK2fdNg+vPWYmLrLZMbI\nTHd+/+sUWAcmcJOBKf36ahm438X1LzbQQWoUTK+zODER1wRvHrjf07qtK9Mfjx4Ux\nJVNMKOGZoh4lf/a/RnocSMPNBl7IgbviZYmgTKhoLNh6Bz1pRk6nDcfXbjq7OoeN7\n59BXeCGKJdnWlnYFOXWmjLQb/EHgYBCBUnrzhmxAuFXrhxebYvH1vOvn/uKaD2hc8\n5GMqd92T/fzcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:41'),('probe_url:1:https://friendica.eu/profile/ludwig','a:15:{s:4:\"name\";s:7:\"Lud Wig\";s:4:\"nick\";s:6:\"ludwig\";s:3:\"url\";s:35:\"https://friendica.eu/profile/ludwig\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/40a0c12314cd9c60\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/ludwig\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/ludwig\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1810.jpg?rev=2015-01-25+04%3A41%3A20\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxL78Ss4zLyvAPA+fgUETy\nqGKZXCpdbN9H+b7g0sXjPqex7G4gnRCPqiY6SMjm3eLTqRLT62alny4T71rUayTCA\noolzSfC5dVLRyqpU7zuplkKacAs85eYmDV+UTdOBsVuDZGYRF61JHNdJXfile7+C+\noJT4xizPCpfkMxu5fUCKHGq06/mVP4pkjL/JABizLB8K76or9hukdd/lTtPYadvHB\niE/d1aV91ab3QzhXM4HLKRLA/zJZHBOuvC2reWgwOhFl3hNTThljlSGQkCEQ6rp77\n64+d1acyJWyhg4qjJ8RUbRoJhQDd0ADGifEArslBgPwJ81MtUenqIPXdXsC0Wa8Gj\nK0sVgxr3jL0vqoeWIx9h1YBqlbcjLZmmOPdwJb2XmAkzRv358WZTW5lzvc9GhDuXB\nccNJlc4n+I1oAN0I9lKlVpkfki7fo7kpc2Id9kRyVJO/BB904AIOKljpVLG7m8NXJ\ntBv2icP1GpOu+7ChA8cHwlSl3CjGzVcvNzI+klk1qZgCog1HbuXuUbRMStEoQsjuH\nrdNo8T52WlHynm/ew0hGEzJAZxkrMAvr90MDttM2s/0tsC5LKf+LBEXCgOGh0k/8p\nKZXJgK7NLL8F+xvClH+xdrbEv5yN18yec/UcMZizyU0JNsiYG1Gp+NoH6SkII9MN1\nbC9A8vP09mN8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:43'),('probe_url:1:https://friendica.eu/profile/miguelmenendez','a:15:{s:4:\"name\";s:16:\"Miguel Menéndez\";s:4:\"nick\";s:14:\"miguelmenendez\";s:3:\"url\";s:43:\"https://friendica.eu/profile/miguelmenendez\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/cae894978859269a\";s:4:\"poll\";s:45:\"https://friendica.eu/dfrn_poll/miguelmenendez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.eu/poco/miguelmenendez\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1508.jpg?rev=2014-10-26+15%3A21%3A28\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzwBwabu6w4qiLL6iV2b7n\nVdC36EXz0C27ZumHBzYSWQTYViHfQwBu/6RLC9IX0YEZWERLxAJU6cf10FUQiHezv\n9M33CsI/BqPbVfLv+oPLpGwkTb7zlQloM5kaN4zXDGl+PplR8W9w/CEzvg2HQx0vR\nZY8hUR32j0zbqiyz3SsTtQdphiNqrFSXaedRUBh1h7ytOtY2hlAFb5lu7aJ7+seBp\nUbMFGQ0P4XWAT3l/D3GbR+o2zb1ul+yohkR3bTysHmQUq+qik/6u5uFBYHxLgODap\nX5WzTd30f5Btpmm1Ba9eoVYiOHR5nj4sn09iogukX+kKkKiA/UanNPTCXU5JW2PlH\nFnbd1Nj4JEWjNG4LzJnx2sPJXU20OWkpZxP/7/3AunkFIAKAQHGRC9zzaRQ87sO3S\njr3onBjsCFMDMmNURruSX1i82CZYU0Na3j3jpXj1VGH/v5kcw2aLTyH9+Pnqvp2+s\nLUW2BUPY88ljTm7gcnxlaaYWRsYo2B+tdgA27zh5lsi7EAMXw6MF4o9a9Aq3hXwFl\nZI5EKbGhhktLGyLO6NpJKlK5efzk8GKckwjDSTSDtoekr3CNXV0vEgNVQvLgnYokG\nRHCLTlHVU3DcyTsew4K3+QgC4ou5oRPZ1CtWS/0rGnD6hvpPW3Sg24mtBBqDbgGPs\nb2Wb4+/dgCNECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:35'),('probe_url:1:https://friendica.eu/profile/murokka','a:15:{s:4:\"name\";s:8:\"Chak\'pur\";s:4:\"nick\";s:7:\"murokka\";s:3:\"url\";s:36:\"https://friendica.eu/profile/murokka\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/32f341d7fb336e38\";s:4:\"poll\";s:38:\"https://friendica.eu/dfrn_poll/murokka\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://friendica.eu/poco/murokka\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1535.jpg?rev=2014-11-13+09%3A13%3A55\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmwA7zn4xE/+0DIvXCzxRW\nsFF4uJCK8dh4VaqfKrAb+hn3xaf+JPRsT8KGa/0aEB1rm7sXu8GXhYsyybJANJkTL\nmMlpjEaoqEK4Ay8vFdE8MWoRww4MWAnNxWXTYLzHTAZKuP/K6B9S0WZWzaW+TVRgG\nUXDqTA09Xa+G3ae69sSxiEiqvggHYk5OOHn3+FuDUeBUu/YVY6TmBJDigMypFBiC/\nNvxLynPAft6CQpJYWiyhXBgMKOlu4jY3cMioSKunp7bVG+gH00DhjgW2CIZIpvOZq\nXaAchIAfRJZ0/JK9Zahy4Ar8/GmIUg/D8gbQBYGdGyx3gQpYUdd9ejeOdbHURW02m\nTGbY1J7P2VE2d+HwAxkAEkhuWKV1eEZJBUl1mLtN3KBf2Z7Czkp9JUATwBgbALKJ7\nXz/r8SfySpUNYEVwhYUbIzlEzSAj/bSKbdCSYeiIQcIISU6/9VdN18Fwo72omyd6B\nwrUFeJO9IoRAllpaBgD6dGq/AruU4Mm0wEicnXdeVL1Px7/puza2ujRJTnkYGJPWi\n7cZFk+4GOEchxcCnN8qVUYUJJrFwZzpT79JnPiUmuRQK4k3GyLAx8Sh3a4RcmnBOK\n07IsqVruNW8EhlriMCLjKOJkYzArnDsBnNW11SXjFtagL4L/C2ylsiu4m6laYe+2Q\nk0NQNlA4xmZ0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:36'),('probe_url:1:https://friendica.eu/profile/numan','a:15:{s:4:\"name\";s:15:\"Martin Langlotz\";s:4:\"nick\";s:5:\"numan\";s:3:\"url\";s:34:\"https://friendica.eu/profile/numan\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/870164bef29efefe\";s:4:\"poll\";s:36:\"https://friendica.eu/dfrn_poll/numan\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://friendica.eu/poco/numan\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1621.jpg?rev=2014-12-02+10%3A37%3A34\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4AtKt9MdB2Der14kWZ6UW\nLBUVY2nq8UbdtfFe1HME4OmRxfzvlWriMEk54BTLzfYW3JlXrLPYkhSMxE0aeLB61\ngm4Q9qepIwAw6KJkXLQzHYQ10cT/UooEdOAuqobc67IxB7xaQzsAkQPs++nQ5kWtP\nHp32nSRsOw/rIeeLLcVWRExnt3bd+6B19t4jrYyxJBh/69J9ErVAD63mj/7J+wmzq\nl3QqYOkKz2ko1P2RTCmzYyB+1VqZm7WOeDQdo/T85byyXv/bAh+m4xZnP/Bh2LJY8\nVtYw0e1vSsr4jg8mOOeykZ8CxEjO9XkkH2PuwuDTN9eL19n0U0aei3ieFoAqb8ISx\nKaXPA2iL+1fvUWvbgmMTIRM2SSaiKlG06yY0G3yWNpuWIoP4CON4r1DtirPdY4Fgx\njSUFwb/yighV5qXBUxewGXysUiCrNuoB9+SUl0ZnTSgOVdGg9oLUT9UvWBk4CDpzF\n0PtuXmBSeL4R0l6ycvTDhvZzVIWKogiK3/094zBNoWmdFHEqb8QBiGf9LGchCt+oc\nqCAAFIW1ytBNxcRyDETIWEe4Bl/fHYDjhHrXw0Tb8KYaixqrSpQ/j6CGEuQzHUjRO\nO7uXbODwAZWoCSrPkBn0Kog3AJ88xKbf+xmgLWe4xQoZZtYL1Kf7IpOn6X4CSz/bL\nXCpEvXg8463UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:38'),('probe_url:1:https://friendica.eu/profile/o2myfrdca01','a:15:{s:4:\"name\";s:30:\"offene Ablage: nothing to hide\";s:4:\"nick\";s:11:\"o2myfrdca01\";s:3:\"url\";s:40:\"https://friendica.eu/profile/o2myfrdca01\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/8c4fdf8affc1ba0f\";s:4:\"poll\";s:42:\"https://friendica.eu/dfrn_poll/o2myfrdca01\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://friendica.eu/poco/o2myfrdca01\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/259.jpg?rev=2012-02-16+16%3A49%3A37\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAv6lArTd0EQz6jdSZlsdb0\nUxRS1jID1Lxys7kJyNHL0fIEBXPask/HPnjZyRCFkjYltT/fyAyVpcU8RW6xI1UDo\nNiVqWmjqns7yQ3zGkXhl6tVBBvlJKjmbU4owAsjPA7d850xNv/pK5e6Ri2Yd9+tGP\nuWsIRuNEqFp4lB3O2nebBKeeT/KBCDrbN9ZODVkdiZNlpDtdfITFJZVZzi9nKlbTx\nm1vFtAHk22p6Scrtd7t5U14k3ZCELQTwKzjYkSJWOVoel6lTGajJJhR33eZf597Ra\n6aRpGvd4nzSdSu+0VzPbRhZhWzfUUOgxBW7PlZ0BVVsvK+375G+RsTBGfARWlMnVw\nv8onNdw+fC3uqHmdlAPzpZ3mniV1ZDMKW9Zv6qJGFD8UYCrCTmpaCE2owPLijH3Zj\nOe56bu+4Iw8sBg0zXFtJz9i68PIAGmVPt9numRB5zNzqZuMjFw4UdLGtQ29wBNBV9\nUtV/8Jicbk3Mm+Ytf0JsI0vYhbt+KsXYFv+qThE/E44B88AfrxZ1vBMLziAM1qFFf\nAzMeoLpt1aqvRuN74+xguaCGiaeki+PtTaDoRPSvNEzfSliMs8zpObSd1vkdXpeYJ\nOAMG7U6AaNH+zS0aVlmvB0wt7u4fJoLgWYpyUOLe4IYWNr38hFw2O2yCqo6AylfFH\nPlCh0Ih0za8sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:25'),('probe_url:1:https://friendica.eu/profile/oremus','a:15:{s:4:\"name\";s:6:\"oremus\";s:4:\"nick\";s:6:\"oremus\";s:3:\"url\";s:35:\"https://friendica.eu/profile/oremus\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/bd707e92602233f6\";s:4:\"poll\";s:37:\"https://friendica.eu/dfrn_poll/oremus\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://friendica.eu/poco/oremus\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1073.jpg?rev=2014-04-29+15%3A09%3A50\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvhY0nAx2iW/NY6lufh6Yg\nVCODCAd+m5+97kMZlw3ZWw2krRSfyOkgUuELjfoLG0NcDqz9NMlLrp6sqfGnGNAX5\nAc+KVXE9G3nEWG2LnIeHzfiRWsZRU1bm74uCPIVMgVuWG8M/H89bb7LxaWso0WXmn\nZr1Bo22a3Sz/LUitH9i/h1QT4Qbq4NLeqgMn704pQwQiqw2wpQ2tC83N5L82891TV\n7F48xKYRDYPK9pMUbohHQyF62+vL1HTYgGr254WjATX9tqI/WbXf9qnfjrT1vWecf\nLW8ougCi/U9/5G8l5PIvMUjtu5V7tlud/CsaPHYuKZsKjH2vBEq/3sc97IGV04mBq\nxzYpDSctGYxhxpdG/Q9kfHY7D4fa5ZNmnV9xtJFfljoQjSeyIX0X4UmTbEyk54mGN\nU0n60IXnSh7BV925Rtvj8GfI0q3lj2VOEi69YpWqk3ho8PjudVwshRJk/bFu9H5Cf\nyrDpEZi4ytuC8OLb11y2JpaymdYFMqyZlpR5vqioeqxf8HwlrqF+Rh3zOMbjl531e\n223CG0pLOmIRF0vYYR8lzbIa3BbPDQMcyFxo5kjO/JXU7GSds1ge1Nj3928pZYfYm\n4ivcben1KLYw7PmCSz0yBddDDgaYKHZmTvmXpamaXLPjvdo9oR2mf7VK7alls7b/5\nvWxRuEk9WkJMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:32'),('probe_url:1:https://friendica.eu/profile/piratetimes','a:15:{s:4:\"name\";s:12:\"Pirate Times\";s:4:\"nick\";s:11:\"piratetimes\";s:3:\"url\";s:40:\"https://friendica.eu/profile/piratetimes\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/a5fc21ab06138444\";s:4:\"poll\";s:42:\"https://friendica.eu/dfrn_poll/piratetimes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://friendica.eu/poco/piratetimes\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/885.jpg?rev=2014-01-21+11%3A09%3A35\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsCF9bWhZeCoI1nSK58KxJ\n/gIM4jyDmEJ3IcBys0pY/eEeibLKirr+7R5ZBE3I9ClFODAHpXV/9ZSyg6b00Bujj\nGp9/6mDDl6If9pY2g+58nvN2TfLNmGpVVueKGf0LTJ8djsT5K06Vfq2DY+D3RMyqK\n/aBM+5iLUzaZvSWKTF90Sch2Tgy8tB3ha7hftnEMc9nQKjqk6+wQ12WmBfIdi6pAx\nmeLqLfrcwvA6wcc53GVTC+mCDpq+cjo8Bsac2E9XQ77XX0IAgcdpHDe5CzGxlGEjJ\nHWI6cprgcGIVilSDYzN8iBO/6du1cEGcgEU4drAMaoqfEvplL2EI5zIrxdBMewffC\n+46MSCLajFautbZYHFOiA4JNssIxjEis0v333M5S76gQTzPooU8XR/KwPS9RP7NJ2\nVjvnRRLx6qilIMc5swKbiP3vBILq6/BmssYqjvE5z6hxGwKZeRahRjud4tXOuS3ht\n+Lnm4bQAZBIPuD1LRjVE/3E6XWVIsPDBobJwHXmK8X48splr/myvQMud+PndKtFls\nGB2+V1mQvzBeGa+KJtxN6oVlWHPGPsNwEsQOBapWdWC/t4Y06fPN9BGXzqVNLp/84\nh1MQrQSeui4dF2s+pBXB0yRM4TRe+adgfQbD0B632WnNtMP242AOtmmZ0gs0rJJFV\nxNjllTyDxqQ8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:29'),('probe_url:1:https://friendica.eu/profile/ppp','a:15:{s:4:\"name\";s:3:\"ppp\";s:4:\"nick\";s:3:\"ppp\";s:3:\"url\";s:32:\"https://friendica.eu/profile/ppp\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/7f71f7031586d823\";s:4:\"poll\";s:34:\"https://friendica.eu/dfrn_poll/ppp\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://friendica.eu/poco/ppp\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1134.jpg?rev=2014-06-01+12%3A58%3A28\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxr9qHjG2TPA8d8n0jccq6\nqBLtbk02MQKf0B3vaXkDL56bXl1ayFb+xjCaHlNxmd09hQSuL1WqbKp00bRpHHrQY\nm0cKakXMKYzjAfDRmlWkSrrsC7Y7GRqXWV02WBqcnrB52FprNfqKPc3grgOrJ5Rk3\nRCFeTuTqJLmuTr3i0vspyHesgXNA5ZJA3SjaSE2d/BViJwwtiQjNT1RESi+UHTMJ/\nNDD6d1bMGJ3GGf4e2/qkjzyoxzLYILbb+RXqbsClQbDFGzgy4RQjol6LOKoBs4iVz\nKETnZ8/Lyu9rpew7BrjQ/g8hV9/JpBBXAue/TcDirU8nMyWS7dOpjxgI/L8AqC30l\nvd+g6w2Am5fajIMvN7p9bphChZSwkX7PlLpq4U7uI/qBw3NQkcK1tE9NcAVZkJioN\nFLtlUsANqbR0L9fCEzJY8Aes4iSp5ELgz/JlvrVP8SuBD0/J92gMpHKaG34NpITQ7\ni2U9bSgi/fpgI3FmXUrdtXl8OF+yENEHD6B407gKuTlAsa6EKv1a1eNY4IqzOqB/N\nDLUvQssjpc/2JF3Kyx5u44JLEiQKoqHHAmNnzbgcoVHv7CtDzjegoKnqgGqrbaDR9\nFawBEMNKqn/kbxPiHyMYMQLlAAkPz5gA0/w7HM0W117SY6FdAmrDVhmCjfjdB5P+D\nF9D2MCL+mhycCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:33'),('probe_url:1:https://friendica.eu/profile/ralf','a:15:{s:4:\"name\";s:11:\"Ralf Gerdes\";s:4:\"nick\";s:4:\"ralf\";s:3:\"url\";s:33:\"https://friendica.eu/profile/ralf\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/934d11cf5da8c3c2\";s:4:\"poll\";s:35:\"https://friendica.eu/dfrn_poll/ralf\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:30:\"https://friendica.eu/poco/ralf\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1739.jpg?rev=2014-12-30+12%3A43%3A12\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2pHSstAs3UckdgTaEybF0\nxlCFfiwTDoXEh2qeEECHKqbITx31IXvE6mOr0yhFD8gPAAA09302wFi+j9H8QYosR\nAxQCb7QdsYh50BgiWwbPE85lr0ePewtYTfukTNPq6Nx41lQpTMNWS2uWMMPnjlvkO\nffZsQ4XPbMIHBRHdXh2iLG9+/Nu/oe3j3LpMJlP6o0KSw9Drb5H6kQDWZSGTSvrsb\nFgAgxoL4Khybdx9qD+7z9JuSz2gOqo9BeHb7K+5596V4xHAu16jO867Vs10liH7Ym\nhXYzSdnGk9FYKzJh28kGqW6dfub7Fq7r7uJ7BF8CC6/xBndcLJRi48A0Y7Frg9VkP\nSJoKPeXBAAbgN8MNGiM9fWee3rjZgqmNK1efa30bE4G9mJWlv/dAU7VLwKsSxvrSk\nGlpVh5t9GLstmBWMKAXn11oXJs6XYwMkV4AfHJoWIWrfleTsDou8lvPkGzuvG0+VG\nqGhxVv8TXcW9zVbSvVFIbbYsJt11jZX7IVUKNbev3JDeVtMPczwjYhcgwvQGx3BD8\npEBK8BtpyZsYqvHZetyXgRKQFVXHpCGvp+J64MF7E/EypPH+Oq4W7AIWrFjGollA+\nwJpMp9fnWbmBq8rFMh/Po73Nov5LlpfdFBFU5ydbFjFIfshaUkAtcRkzW0FpLWaHx\ndrd93QNlLS/UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:41'),('probe_url:1:https://friendica.eu/profile/rcr','a:15:{s:4:\"name\";s:9:\"Rolf Rupp\";s:4:\"nick\";s:3:\"rcr\";s:3:\"url\";s:32:\"https://friendica.eu/profile/rcr\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/b86065076c7a3bf1\";s:4:\"poll\";s:34:\"https://friendica.eu/dfrn_poll/rcr\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://friendica.eu/poco/rcr\";s:5:\"photo\";s:73:\"https://friendica.eu/photo/custom/300/841.jpg?rev=2014-01-09+22%3A15%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6s9Tfw1a7nJAb6+6+Nox3\ni0vyxmaQofZpgMPEZSMHN2NTn/90C76KIxjPxKTOxu8SP5CCdwrzJp8J77aZ6/jhL\n/f//bx0wngxWfO1yu2Vdq2/XdR8Mjsftlkro3AAmEBiGZ2SgU6VbJpWN810NniYX6\n9k/ko5gmQgDisWBFbDk+5NksGV08m3KmFcw4Z+e2Cw8EqRG6jySV2fgGKyljkhy4L\n4Uf/SyTgQki1ZpVOIqamI/lOn6ReGtAgGxE79nYW+aKL32N2Bqa62hpH+dCEKOr9M\n/7UHB9tfDjS1+IFgM+GiPFcoddPwG5HuIINFXsoE5ltykL2VZ1WrgmhuH36AqhaC/\n1lWiGLJJKESWE/HML1XuA6+NPbOJfU8h35I9Epb7pQoGAdBPY+L+9DWn9TJcE68d9\nB/y3EVUJuyE/OrwHRb3y4T5IcTTTvWmtCsmiIJDoN/GuHG0i7JTVVLxv+XbRPJVmb\nouWcAB3HnqFSGPSpI2n1jiz3p9XiZZAHokSt32DaIkw80WBDo7KnNeZDhGyaJ74Ef\nOmK3XzI6MhIiXkyZKIxGgltc/W+/XQHkBtEgGiAW9chP0SnMAstkOgs4ds/PnOAi1\nTQ7pQnEbase/n0yNlBEOSBEprxN/Y0P8kdFlBxbhlc9kA+ogbFELsYpSO9Wcp4NtC\nCUJEkFcuBhTcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:28'),('probe_url:1:https://friendica.eu/profile/stace-melunor','a:15:{s:4:\"name\";s:16:\"Samuel Contraste\";s:4:\"nick\";s:13:\"stace-melunor\";s:3:\"url\";s:42:\"https://friendica.eu/profile/stace-melunor\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/0e76e39fd890027d\";s:4:\"poll\";s:44:\"https://friendica.eu/dfrn_poll/stace-melunor\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://friendica.eu/poco/stace-melunor\";s:5:\"photo\";s:74:\"https://friendica.eu/photo/custom/300/1586.jpg?rev=2014-11-28+13%3A01%3A22\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8G2F2fE8XM6T1ZgnIg47P\nZxoLcR4jzgbYoDW+ORKoVUAmkvQab7x9TLi2+05HekLTxL/N09BQra772ZNBUkpc5\nB3v16ROZxwrdE1rPsebZVhfoIrZsJMcjJhQG4U9RuoQEg/l67topBBvBlqYkQtXgs\nACuLOY2B0t/FDKzbLbEvKPBkwvQR1pqHxqdXfVmfPX1jinKgfwX7DjMX99+ieBkMF\nEZAsONhQLLSEEdLJIQw0itdqAWGAZcPbSOwIP5Qd5VEp32IBal5XwAWy8fDwsOeXD\nZ8O7TeDt3BVQ1xZCI7Ib+HjBTUyfBakdW4hpj2gsjyEUq810+8+Jes5x8p11gJrq4\n6qWNeutL3L6asB90T8NQNzxU6zmgFxG/Jz5+eHoKGDD+L+o36cUw0BlVqW3+rP6AL\n85jjyXxEai9apa4rmqwmZTQ/gKLGD9btIM8k7XhYr9g0j+kpnPH+rcXuf+TCfS2Hk\nXRNtxQc84D3SHK9Ql6zH/zmd7U/fOTre02oWbYfcj/0BS3QTLC9OTBQsQiovoGIa5\ndOVrZIIRkbu14ixc+T/z2SySxUHe6wu6kZj2KJXwPh5AHa6JNfc+vswGVK4ZH2W71\nUN0jwcm2rs9QjbMxUQY4KuNWSqVgHPay2Dgr9yjyOqcTth4c/+aOWThbwdWn4FGyI\nn6lrQ0O9+//cCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:37'),('probe_url:1:https://friendica.eu/profile/support','a:15:{s:4:\"name\";s:5:\"Keith\";s:4:\"nick\";s:7:\"support\";s:3:\"url\";s:36:\"https://friendica.eu/profile/support\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://friendica.eu/receive/public\";s:6:\"notify\";s:51:\"https://friendica.eu/receive/users/1503b8ff50e44111\";s:4:\"poll\";s:38:\"https://friendica.eu/dfrn_poll/support\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://friendica.eu/poco/support\";s:5:\"photo\";s:71:\"https://friendica.eu/photo/custom/300/1.jpg?rev=2011-12-21+14%3A41%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAve96jxENeBOoA29E8lT1o\nUGRcT5sSRNImjBleZ97bfBn8px/DgS3K6De1MrJluq9/G+Q2NC36cA4xx25YFzCI2\naQEOqk2ywS2gWtSWviHp0UNG/PDQ97i5Hk1VgYhg1YenrY+INsCGTltX4ZLHxKZuG\nBTar3QGwZ4q2CJ7iKSRyUVYrXYfLXCfV+twC2FSrZYW8xmkAay1lTttJ185cYW1ZX\nWkfDD7/ysB2NmKMWHY8eRcIG/k/BujiAncOyY/SOtM/viWFIj6HuP1mUL3E/ge9iK\nAvBIDWdNW3ZLijLISmoOCNeRyWqUTc3ijBRZr9fEGLRc9Amjc2e7pLefnxdXfzFEx\n1hwuoSXPVuROBWh9i6kIGpGBOIJ2D8CjmfNYD7B5XKUgvHLg594qOckkmplXNcBmP\nChXnL+r5Rj2zjuOxECWdSwkzuONZaZPeeMi23d0odIpmS7v+xoOJr0GiJqw3a8LDW\n9yJ/JtLY0yeq1jjjYzWD/2T1U7J/OzhJpTPwQJfb8AF/kNWxRoJ3IEN0STrCWJW5O\nxE4wVC3F5P2rGbOGcM2whTsHYgetRYWS2pYrXJDPyN5dmAortwLGRcYEwZzxL3l1E\n9nmZ5ghGDwhMmmDv9/JFQVoWA2zaLxXKYFg4RD/zXbkZOndWvkQmYI5SH3odQH3yG\nzjbaUdsaHps8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:23'),('probe_url:1:https://friendica.free-beer.ch/profile/ac44bo','a:15:{s:4:\"name\";s:26:\"AntiChristos44 BodhiSattva\";s:4:\"nick\";s:6:\"ac44bo\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/ac44bo\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b3c19884b708f2c3\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/ac44bo\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/ac44bo\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/440.jpg?rev=2013-07-15+01%3A55%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtbtrzWYn+rBivpufzN62H\n6Two3ztcITGsXH7UcMBP7zQ2UbwE5ADJXnyrJT/wFzZMyXZn/wQYdC8vbwcBx/J51\nDYp/O1UodBzH3+8YE9mrN/0wuY8Hj17Og+KcZwQuYn23EPsMmxw/JnWCMmVwW/dHA\nvtAApbNww6lsjhUd+JL7WMKIJsyJ7Oy65GcYaweEL8EOUbIg6wQqJ0KdrJBAdSAwZ\ncfH6CAmOq+/2MTV2za9LQL3psf4WYfI3HuA7LVfcvUL5SphaQOjBiwAWw9W01dN4o\nYWd/jirb+rszEb4TWGL3n9oxo4gc/a1tmIXbBQC6Kz+ny+YRUR8MAXKk2Y9ijNvqN\n2pEKDUzlAA8f3vwXYgEvOblovVlIb7WQiymqEIA1hfLMz8CIxdHsbLVfymWgv8IVl\nvb+G/r8MlCW1jpfNQ2YXPSEOsXw3obINHNfOSOWHwiciT93L8wsChbVvZIO+rMaNZ\n9aOJ2upQiwxxf701pyLV2tWptZjDTtFjz4CyYOuhMqMdbsf9v02Qrfxc4b5gw1SfC\nBtQVLISyuCQfuHobeK/QFQtoCQAHGQ8wb0c+x0Boaac9Ao+FdlIyku1lUYE6wwFGW\nqxl8Xwc7C1CqabYKPvcMvj/U1GPYdkCjwdKmNk7q4SxEeXZm2sDuXoZjrhPqy7inA\nNTSRWdvjOAVsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:09'),('probe_url:1:https://friendica.free-beer.ch/profile/airon90','a:15:{s:4:\"name\";s:14:\"Michael Moroni\";s:4:\"nick\";s:7:\"airon90\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/airon90\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/7e687fc048888f3d\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/airon90\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/airon90\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/547.jpg?rev=2013-09-27+11%3A19%3A56\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1F6pqVyU8SGXDVcwk4AyZ\nPngu4NZmhb7p0SEInAouT6UbvsrF1IOoctwdvT4+DiqeoN7Q/bYaGqzxgFW6qjsaY\nYsJKqqLdA2L90f+A/VtP4Kqg9Q5qGB4i0wIB0owKo0FkzVLUmRvj5Ckr3Ypf0eRl9\nZfhkpljU0HHwPt/UyvA82i+GVucdnoheISmW5FmFI5bSMX/y5De7nl+xQAXc7Sf7E\nd7B3EeOh6nHesB4Ri1gjPb0DyHYs2muJkIaP+SjG0+jIiGMazROBfLcwkHN0ZZEFN\nMHHegv3JxX7vYAR4zp6jV7vfBPvLLU22liA49tqtQLd4ro9u7SoxEgxJ5hxsHWwkd\nZ2DxdIixKH4BMGQr5sZj9ccorbOYZ0rE78Bv4cajWx/3kP677gPZtEhn43FYyBvxA\nxGPrDVr78hS+f+SJ7xaPjmXq/p/GZhvajngUzXox5HW4YS8ZfNap1vVR9plJUc2s2\ncZT2LHv5PySf3rHhymR4Bu4nGAZryxtP1NU7140AjL8/jbZQ+hFAvwWVPDNnFD4wE\nwZKpJ8rBxJs5hG5udTui5SVtvYiFiwnhDBNflff1OfbKhtS4tWkYEQdbWRZVStzTD\niU6kxR9K0G7qL73wkBDpmaTgEhXiDN4Yaeqr0ht2Y2jv4eyMcTQJayj2oMXit4wGm\nexku0sjzrkB8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:10'),('probe_url:1:https://friendica.free-beer.ch/profile/alexanderjobst','a:15:{s:4:\"name\";s:15:\"Alexander Jobst\";s:4:\"nick\";s:14:\"alexanderjobst\";s:3:\"url\";s:53:\"https://friendica.free-beer.ch/profile/alexanderjobst\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e77f6336649c0855\";s:4:\"poll\";s:55:\"https://friendica.free-beer.ch/dfrn_poll/alexanderjobst\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://friendica.free-beer.ch/poco/alexanderjobst\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/77.jpg?rev=2012-07-11+08%3A19%3A36\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuS51pvIz6R8mYc2mK/WYX\nSGeZVwSHLjxtH6G/8PfUNOkrUXpgcEXH1ic/m6luIX7c7/jdvTvB3Yt+w0Mkri+lt\nQfk4qDBsyCW7k5fq9UWdsQED3BPqmkR1wsXAqrqH66Yx/iKmjIGUHWxYHT5S5GRAi\nDOC908y8F25qAWKZ/wGTUuwGNzk0W9F1IKAQzZxpq3i62vdYKNf9nCzuV1K13xgVI\nhPuX0UqkPek1bffxyyl3FHD5dXc8lAmH8uO9LY335NvrU2u/n24oDICyyyK6sh2Ym\nwmsBaF3gqmy0hQJ439xsDR2S3FDlu81LCwtlTMwW41DXzNQssz7Mq+qvoxTHu33pu\nghk99xpc06J2WSfPiUuDlvjcdYipvqA9KwHF4v7Mlsj2uUZO7b6VpBrhy0x+FY9C5\nBONQqCPPqPhAoJkO4gPEL86ycdaaJydu1ke1GTpnMSJwwA2zK+SWmeqU8dPVmNwyc\npvWyj0vT8Hn02fV07Fs4FXCHdtEVhdqkyaV1p9siyMa0zGU0vIsOy5tG+I5WZIuiL\nOkRgehIMsiKAPdjIitZycYYASsDzIcRqy2iPRPUM/eaiCwncT4DvaIqR89X/wnu4G\n3RcD0VLAb3tUcSUnMXTgcg2W3GfoHY+cKUuNPKd9OmnjsUwg/5/XaA+IH4l+rxNOp\nd7xhCsMg9xe0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:50'),('probe_url:1:https://friendica.free-beer.ch/profile/arescorpio','a:15:{s:4:\"name\";s:17:\"Arescorpio Nepesh\";s:4:\"nick\";s:10:\"arescorpio\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/arescorpio\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b413ebfff5608c52\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/arescorpio\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/arescorpio\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/158.jpg?rev=2012-10-05+19%3A05%3A49\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArp90jy6uf6TbvSAIXk+QG\n6dagqnv35cAJpjZpoMGw8p2id73U926zKUadngxwVFh9MJBQ9ghWRewvkYJJ1lEnC\n3ZKti0ROsm9CTKl83FLcfwMgk43Ys0q7HghCz9uNA9IxOKPQiuzQVwQHFymWXRhFo\n6aEC20XDLoco0kRTbpTocotjXy2BE9nPZg5639guhhvykESJilxvAluTzUsVTD1z4\nqHoFmXL4USCiw7Yd5B0cBx2nPkSQCZ1xu00EjReVx9dQd9gADytN2HxR+XYO5p03f\nETdb14g8Q89pEniBF8l/4O6tVsLYhPzhHd7QMcLwKMXteISUBqXxdjXsPS2rukBmQ\nbkavCvpXlPDY9IWqvMpiNqwEDTHq1ft7vRM7Pt1Fk7SKBGaojR1I7W4Trfuo5H1eU\nWyygpSXUzbIzoJ56d736XepIug+HlFEpaqD0GTleQtxNR3Q4HVb9zBEv+3+Y+DyXC\nFDKCNrzWxZDpS0Y1eFwxgIizPmDoj9rtyovVb8T9ALhplt9n1ODFRfK04+gJbRRIG\n6p5+G05RqqvE/KYhssM65lQtkthDhAOHf9gLlQS2vM0llHp9oY2j2HqoQdtYpv2Lq\nyCCMYDKqBQSWEdM6VpLFbsSX8GgK3jvbVYhHqjUYo3rfI5TXH9b4onQjg+0SaqATg\nbD8ycQq3hgpcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:01'),('probe_url:1:https://friendica.free-beer.ch/profile/arlojamesbarnes','a:15:{s:4:\"name\";s:17:\"Arlo James Barnes\";s:4:\"nick\";s:15:\"arlojamesbarnes\";s:3:\"url\";s:54:\"https://friendica.free-beer.ch/profile/arlojamesbarnes\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/744dc72a4038a52e\";s:4:\"poll\";s:56:\"https://friendica.free-beer.ch/dfrn_poll/arlojamesbarnes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:51:\"https://friendica.free-beer.ch/poco/arlojamesbarnes\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/593.jpg?rev=2013-11-04+21%3A56%3A10\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwuvzvQs7t1y5BAlmt1yZW\nacl2khR2tNJGIcFg48sGzGe4aGk4FQ9W5sgagpRT05udIAegQ6PpPJvJj4C//rMDP\nliQWHSjHSfuz9cE710lObzNkovSuLllmC1aTZVtSNT2CmK0YJAotPtWjJjrQDhGn0\nttJ6vCWBlAZCCssrM8gotzt/NZOAJAqa8uaBddVq4BKnse1Rp085DL0odUO7IFG6n\n5wERDP+AAhbHXrdOkKwhLr+CGPSBHQF2GUh4N0uo6DeYzhrE084nonLcJ1mVM4SSk\noh14rmHvWnt83ZfosOA/QqrPLEz7eJMeBQggTV0lYm7X1lbB79DZNFj69XNfZaYgQ\nAO25Z7LKPsqm6Jm0kgp/Bq7Y9kpiMmoQljH12n2xvlplii6ae+IQthdyCGWL3qWbB\nAL/VGV6/1I5gn8GwADoYAc3Zhb1ex1pfVKwidE9xXOPskqKkInalEosFTwgYyA+E0\nBW9Kj786r8JzI5bAWhaMW1ei0IA5UorXy7U6jWRQ4oC6h08pDuRyM0Z0UCkHuYyvv\n+Cj6E6rJ+t0I3Tk/dkWASc2wVF8yYw/GQE8eXgl0v00r2J1nM+4rtMHd1OsVobY2N\nS1a6KFbRccJOKZkVnsrBqa3ekFhpyBBVIIHCIgM4bGLuWo2T4GoDGDpEG0onCI6DK\n5gu+rUUN5Hh8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:16'),('probe_url:1:https://friendica.free-beer.ch/profile/atterratio','a:15:{s:4:\"name\";s:19:\"Atterratio Aeternus\";s:4:\"nick\";s:10:\"atterratio\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/atterratio\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/03fb018e2d4e7c21\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/atterratio\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/atterratio\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/753.jpg?rev=2014-04-04+01%3A23%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3WPh9kAFIo7UiF6x3CDLJ\njbft9UQmxaaYeN58z+/bZzsfZZCi2g902CpsQKTMZYtNyz6/Exl2H/TyvAyeQKoqL\nQ8men8djmleT+svUnahkq1R+rz+cjW88Gqi1C+SLrxl5imWFawjJEENewiCFRqUFZ\nDQl2n5mrGMg27QgkxHiWgrgFTDxAHqKU26d5ecRzNYp2aw/MFn7UGtH1GMP4W9Vza\nJGU/SYp3kLFaKx012UY3zols/rdfh3qBejJcQ37LEbsQLJQpW57knijZIXKAoEL4u\nXnih7iNxffPFrZKh88I2WXwOw31OwJvYPvNtZCgZV4h0zcVpvjLXSp9nMdNK5fgd6\nZ7ng8ceFSIWo8txbNPrF8VIoVgUd5TsO+LNPBg/vV5s9ML6ykXXqqe+a0XAwVm0NR\nrOz9dzG4FxpKtWpXxoTcIuO9nWTvgTypQu+Dh2ZX1672Huq95XwipnmqYlGArLFRb\n8YLnoJuMxZQD0u64C5W7IRbexbZDMU/7ohmhulbVAXpbqWJTM0mst/H8rH4ncgAPD\n/slhwf1xFZv5bvfolDFJJ6v5v7qyV8YPwjtr1Xu9dt9s9XnFb8ios3spJVUURw8d7\nMRx5nuRwIJclC5iES7ZY7t5/O8BWtE85OKeYypJ0sLLi8U3jGB04VNe8PQl3vUUI1\nSRJGEfdmi2zcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:28'),('probe_url:1:https://friendica.free-beer.ch/profile/axel','a:15:{s:4:\"name\";s:4:\"Axel\";s:4:\"nick\";s:4:\"axel\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/axel\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0f242c9afb85a717\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/axel\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/axel\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/61.jpg?rev=2014-01-08+17%3A14%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApwqoTuYNgurcWlcSnqTYD\nYC7ikFuaHly3czgi/G1TeSYAEiApBcKgj9rbe3mAN3iQGQTbxFJBr7anrTThvkbZ6\nRkHTFvU2wO4h/YA9yFTsWPzx9Fmnm8NfO91fuHtyTbbPpcvMeLkRCukpv5nwBvO17\nHze+lhSUiMAzdkOgYgsOE8A9mPuSwVXRLYnpiBRJIpN5OsY4TOwNHQ2kECg3htXrz\nzmC2UtNYJ9Smq65cJIQ7Ic4AHfSsEROdqNyy+LAXeQVonWWFXduXlRtj3Ka7IevX5\nCMIESRNuRBDkeTGVdgDKxwzQind2wc6zH/WChbns9Rn/QsmDVPD/roBT/mVwyYVTG\ns0/Bu+qt+4bxL4cR1k4WvitjzM14w7fZ3wMX0s65V5Y5ecke4Cwdj6tmVLAU1YNNo\nCer1zRqO0ZF4s35vhqn1j/KH1dvMTsDVfqIX/9E7nhEVBs1DiZRU2tCPdr6t/vWFY\neu9u2vHInj/D4DiBRJGwZZV+Mt72eXH2wvpu4ctsgLhIJ8Y5AVGL48RnMZ3WFHa44\nvr0ErqrFZT99iC0HLVruGyzVz4sKgQvglbKPFRSZ5b9QZDQYIEOswxVX6sZRmWART\nvkNYrcW/59kWoRE98+NR8hoHM1rUJQCKicwVQTxdIVRYFI7nPYIqLz7uXtYM1ze3D\nOQ8Zb4fT4J78CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:49'),('probe_url:1:https://friendica.free-beer.ch/profile/barba_negra','a:15:{s:4:\"name\";s:14:\"Raphael Vieira\";s:4:\"nick\";s:11:\"barba_negra\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/barba_negra\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f78495cc269c58a0\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/barba_negra\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/barba_negra\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/772.jpg?rev=2014-05-04+03%3A45%3A51\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtiW9Beu8mY3QXTDfRUymS\nllxAPVMyUbDvscKqlrqH1EWze/vjnTFC/tTnhIG2gnMeNPfspIVu0ue2uoLudUy3M\nZA4Z4zkPkhZKQHAgyuTk7rminvbYOl7890LhEje9DYK6fv+lUmp2NNssgtlSIx+tz\n2wxLK5kei+2PPkwdBOsa8fyVGwQoP452SXNAxq2Db1SSjo6R8MSjOpPkpbYChJAvd\nO9ICOilfqlQYlGBFqnccOJIar/kQh8JMiS2VdVzTbW0P1rY+IQo/VQ/FfXN+/4rxW\n0b2qkHeRzixMBMMT88qCE567QXT+9J5OLaAki6+0rNTGhqUxXb3c0Ir7jlfwqbXoF\nGeTClAr+eARKoqDENR8HqbPsqdEHRleWZtbCyUTuudZMHZsjObYXpR1bHwh2Kv348\nAzLLAC0HC6oiew/+n4aQWYelClKc1uhdGPI6FKFfoRb4iNnCPjyBHSGcISqriY/so\ninYlF/KICQaIE1QAsUXs21WtsoSc/RcrJScl2PVzlzRWcM2FepgemU50m6RDoESZs\n+ZAht04PNqcI0joygFUodwvD467FUL8INEAZq5ozFvPZlvOchFVZLcUJRbnhyH/EA\n6rYlDSkTg4IAeUrB2D53GQhAQpR9gnN8A8HJGk46C9qb+f/AvAm1mrME5q3N4wdWt\nRiNq4XvU8p+8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:03'),('probe_url:1:https://friendica.free-beer.ch/profile/bookman37','a:15:{s:4:\"name\";s:13:\"Jerry Briardy\";s:4:\"nick\";s:9:\"bookman37\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/bookman37\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/95ff0bcfe10da7d0\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/bookman37\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/bookman37\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/651.jpg?rev=2013-12-31+06%3A49%3A25\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAphaYNbY9PzMVFHyXMA4DQ\nq7W+djSkqUa7raSLt/yJqaMVJQlaJEWiP2jPo/kcKDovbj0oUclih/BAmoXNr0wR1\n370q2P3Fmi5+P2i53dM+nj2o4Qy8UbzECb9bFexOdDWtBxBa7PqgnxQvS3uAeCQE4\nzGI9fqc+HCmAOSWrU3JB0x6J9LIqupda9KvWT/kvWvS6k7Z7Ssr44A3QS6AKGuAli\nTlNeUVhNKXHM5aBNDVMBZ18/tTEyyeOsJFs0RLFhZZwkNBLctBHyMsB09exY/wpf/\nkn+sbZf732Yy7AEeDMT+GyeyAPeEvXnnHbKlmOZSYL8AeNa+4PZN/cBERzxu9z508\nxJQzoWpyNZN9I8B6pNhaGT+0sHrPLCvj9M+ask4WglcGZxggpKRtGRq8nC8k87IaY\nouWOuq+dv/la6fIkIYtrkHgBy2pRa5E1foABzWwuv/5TlIxdNCtMDlhuAEqjfp0F2\nuziIxJw0TAatybJrxK0Snov7DxLy3Xeta6Wx7wrr0npA6juFLG/ivgztkN0z/qUJp\npeo5n6J2dX2yHRiZczrmc4iw0f2dv1oZvPFzSYGavqzvKVvPCM71YBULzsJquwq/4\neQA9Rh6BNhYpMVhUrKCLoj1Ig7+oV1rdZ5axUPbtO0sCZJJrSRRBqHk0lgTNYZrea\nR85AHyLEibz0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:20'),('probe_url:1:https://friendica.free-beer.ch/profile/border','a:15:{s:4:\"name\";s:18:\"Frederic Guilbault\";s:4:\"nick\";s:6:\"border\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/border\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/c04a69f1eff6d290\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/border\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/border\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/23.jpg?rev=2012-06-01+02%3A24%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqyK/r0Zj3HeP44zwghs2NN2szF\ndgEGz7jGS8UbI9FUh/f8kRdeBQgg2h4bvGoIaQ+QevHKeMsTzo9tDgs13jFop6EkY\nB2YR6oX6g5XpCGWoWhjV/s/BvOosQZkncXSIFr9M+f4kcQMrAROXnHVIS8mEDdf1k\nQGsBEy2ng99kTtwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:47'),('probe_url:1:https://friendica.free-beer.ch/profile/clandestino','a:15:{s:4:\"name\";s:16:\"Philipp Obenauer\";s:4:\"nick\";s:11:\"clandestino\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/clandestino\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/ecd38c90be136819\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/clandestino\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/clandestino\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/621.jpg?rev=2013-12-14+11%3A09%3A01\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAs8fpI47RU7TvUWHp+yOw0\nvnONmvMg/yOsm84c/zBAN+cazxo4SoJtoSHD71txQ/9DqvwwYTTLUqCB/DU7fFaZ6\nvhvtTWp1s46fUbiX++MPBrJ+QGLtuigwp/I7oEf7FUtoUOeyn7jsC2mS+h2egzVk8\nqF2E5/npPB8qwgc4wpTUArut4mbdpkAYFeMWP/Vj/h37Wv/Lm9pZCqw3bYEk9eXXi\n7VhwKlmIMSgvthdqNsv6ucGIhG183xlp33aBBsE4YLJN0A00u44mTI1tuoQygoPDW\n4JMdNpwF3Ht3IIvnZhgCqQTHwxrxwPJN1lWtayoMOrES5m0cMtl3+Cxh44d7a7JPH\nFNaORDJttT6cg0ewVzWj/tW7+FIi4monBxo9bBsDxye3LxmNugpyj4O4R64vGAQ35\nEmPSDDYeuSMF5/ND1eime29U62Is4T4G0Ijesxbh9a4wJJsNucgN22an7MAap4O4S\ndeJEzOPefq3V46oKEFLf31HQLAl4PrMa+q7g793eerzyH1e9vKZUJkJ3wJJZPiI6z\npfyEZ1xE7Fj5/lOScj4B8CW6v1Zwz2KAz7cRqrcT2EvFFfTUcLqUh2Igz6ppx6gdp\nsAyiigZOKQbgMj9goeDhneby1E1Wci+N0WfbcRKtlGx8nkhBMKD0xZBolYFvRWW/B\nqJaiA58ig9ZMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:18'),('probe_url:1:https://friendica.free-beer.ch/profile/clausmuehlenkamp','a:15:{s:4:\"name\";s:17:\"Claus Muehlenkamp\";s:4:\"nick\";s:16:\"clausmuehlenkamp\";s:3:\"url\";s:55:\"https://friendica.free-beer.ch/profile/clausmuehlenkamp\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/68eb750fc6aa2080\";s:4:\"poll\";s:57:\"https://friendica.free-beer.ch/dfrn_poll/clausmuehlenkamp\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:52:\"https://friendica.free-beer.ch/poco/clausmuehlenkamp\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/368.jpg?rev=2013-06-12+21%3A21%3A07\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxIG0HqsYAmnOmbgTLJrp5\nOuddMR6zMMn80Jnwigo7KUSGVBh00xJhemdqOQ8W2Z6iW5QiyuqaqLnVgIjLZTN9s\nJT1Ec9j5dhRoivmINT14juk/ZBDSEhkakHrMm9aO1sz2jpfpEqqUegbI1r7D5kHMB\ntsYiMHK8UkuZ9b97GntbxqhS1UuEmiomROn1T9LpcDAifNzo02UkHKRoRXw43Mugf\nQIpVQunJkMPbgPUPme3QGjiqlPzsLIHXxa9jsz91rzTvPRO/DvAemHEgokjy2zS5D\n5VLX8qa8jMKRu5AChdhDg7sTq0ra7gTkLjDbCptOCukPwWIDlRIQ1CNt9cYVa9VkM\niNgLYj1B9xD+Uh9xo4n6yIWx2Z3/qO8E17Iv4kgem65/XAx/0QRwivN8+RfKEL2h4\nP2MbhyJgELeHUyOEFVoV5RdzhKoa3VF8SeMUvFmDPV+ai0c2ergTQGckFOcCScH14\n9DTwLucYyyxHRqLeIp0q8SuA91/2ij8YsEC4gN95JxGnmgCLFiCrHvaF4KvgRYyfQ\nu5ULqoVtNrjyu1Tp4lD1fB+1VUuGPz1KBBhbiuSVHLvRANOi+1aRmYBld88jh4m+S\nW03XVS6UyTafpcE/I2ilPwXPHL6o2AseBirDlZZIqWIaIFPNjLt6uIZVvJQHoYnmj\ny1PrxfRFR51cCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:45'),('probe_url:1:https://friendica.free-beer.ch/profile/csolisr','a:15:{s:4:\"name\";s:13:\"Carlos Solís\";s:4:\"nick\";s:7:\"csolisr\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/csolisr\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/6dca8f1a80b5800d\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/csolisr\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/csolisr\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/22.jpg?rev=2012-05-31+23%3A00%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDDWxDCP9Fb0YzaoKXKiAdi/Mk4w\niLgACnLClW1y5HOh5YKlANfJwRISdUglzzFV7n8WcTd38fg7mBkBXq1MmEeLqMbEQ\n/jzplWmIAm+Vfh9sy6DE1e0gx9zS/mKUflyv+fmTFTc8s5ZJOfWI73CYelyznUrNs\nbXGwjTXESr4p4EwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:46'),('probe_url:1:https://friendica.free-beer.ch/profile/d2o','a:15:{s:4:\"name\";s:3:\"D2O\";s:4:\"nick\";s:3:\"d2o\";s:3:\"url\";s:42:\"https://friendica.free-beer.ch/profile/d2o\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/5cfca8f65062b6cc\";s:4:\"poll\";s:44:\"https://friendica.free-beer.ch/dfrn_poll/d2o\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://friendica.free-beer.ch/poco/d2o\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/673.jpg?rev=2014-01-16+14%3A57%3A25\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsHUjaV5/pUcQbQWH/xg77\nZ/TtfZ2J8B+VK4eTzCzy3YRrdkmILcN3s09Cj6p0MAZTEOQ7vCYadU3lFJNaOvKAs\ncVWjwBc48CT5Qf+W7TxzrjjwmUduHLpqg1yXVfiW4QcWUQwLxCGKpiebkJe3FXRKK\nE+YnNaYp8TNu1GRCyyHZrZAUXRU+xxFCvdoPCLYAaDk7w+URaPPZ/stSJOxO/Dghp\nnTiBbg4gCtHpq6h/0PRWE/yAFuVGO+9TP3+ybdOTwEp0pdxqkdy4c2uuPyRrrQqJV\nI5WHU/kTG5uO2LIiamxyW6d0mjWPNxHjHl8xdpadm3BI6SYpUl/TxKrYsL1lVQSX4\nDnAjm5YshQFF320FKIFad9xsFfVGTD5klcyuw4oa8XJp286yTewfQNv7Dz84CJEUQ\nKQu/xo92AOKInmsDMSJYyKyhaQ3rUmsOYk/ki17sTN/qTFffzlokqWhf+lEVy+IkH\nti7b/J/NYOps2Q+MgfRvtj9uCuEZL/zLbHClBW2fYWXN+f7NFuWDUyH/3l1IevOD6\nQwwcPlY9gcCrX60FEHV5KLcGiAM6KdEzoEtqFB44MZrDVns5HshpXjB2VmSQSOaVY\n9mMTeyUxDW+IERw3bgOLlA/7RuPBVrrOCSw64bxGZJ04Anutg9sjaxYdP77B5yPTm\ngBxaHHouureMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:21'),('probe_url:1:https://friendica.free-beer.ch/profile/derhuaba','a:15:{s:4:\"name\";s:6:\"Als Ob\";s:4:\"nick\";s:8:\"derhuaba\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/derhuaba\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/2e4c11f7486793d6\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/derhuaba\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/derhuaba\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/842.jpg?rev=2014-08-06+23%3A24%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1YNrfi6Cz+owdvH0+0+ca\neJVf23j4wuuLlOdBZ5r4x6JXhf033s6c7AzmXqsKDWNPVRlc4oDCVGxgXQXXb9EVv\nmMm8p6H71+gbdAYG/gsWhejWngjSSGSavCMWsXbcY+H3yUowXdCGg9WBCHM4AnU+Q\njHfp3qU/WnGIHx4XEos1agBvhhlsswDwvml9qnyYU4UFkuwiCV7Fk8xSZX/gCURup\n3nn/81Sw7NPEq5Mu/a/wWDT4zcvpMLGIZqlxB991CV1nBXJ0yiy1cxnyAF6N8dAP3\nA+7y5p5k7dbHyOFxBpI2WD+P0/qXLqoLvNcQT7nEk7WBF1UFlGIUja6acP9EsxBcQ\nwV1miPhNdsCKSo5Zytg+LRUZ0CLCG4eIvv3fy/pdxq9djLxohcE3lI5Orcbtp1oQi\nHjwooHx1bHJBtXGEQAZ+fzIH5kPlKBa53mFCp/DOtvkuHaft4lmSMho9JH+fxCvvl\nZ9JHdmxdtHcN+mCy4ZlIezQShBkTtQ/5t2XwPVPl/B4o3cFk9jHoIA4xZrWhnpPBq\nol2M8eL5wvWoEGu5MnHm0HeR3lCfkQGmUumkyeufdzwUzYjgEV/zYN9GzPsLKZgAV\nBVkZURl2zsNf5Wic+bvNtJGhN8nPrA2A/Bnku8/ZX43fUep3lP/EPfUa+hIuVOLre\nRlZsm29mBcQ0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:05'),('probe_url:1:https://friendica.free-beer.ch/profile/dr_emporio_efikz','a:15:{s:4:\"name\";s:25:\"亗 Dr. Emporio Efikz äº—\";s:4:\"nick\";s:16:\"dr_emporio_efikz\";s:3:\"url\";s:55:\"https://friendica.free-beer.ch/profile/dr_emporio_efikz\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/91d4366d0dd46528\";s:4:\"poll\";s:57:\"https://friendica.free-beer.ch/dfrn_poll/dr_emporio_efikz\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:52:\"https://friendica.free-beer.ch/poco/dr_emporio_efikz\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/108.jpg?rev=2012-08-17+01%3A48%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuJq4dSVBCRYzbo23viYoK\n1sQadX9SKgeuPhPnUCLozW/olBcAjRZjm1pxhtEuh6ET6si8JUT6gqtarvnlC1kxe\nynErCrrhvmgJgrAqEUO4jUpg0QDPDaWl/lisu/K2WEdEFm+2sfQ7NjMm28YPy4yb0\nt9ygsLkU/YEVuIV47csfarBNbTPsTwZvYDCLirbYZIFA/Lc5LxdzhQbGWIsenGJ2F\nScRg2bbf+Z9QJj3K3aAuVTcmXKvZB6Z5uEaIOEBLpM021JNAJGFW6g2H6W1Vt6QbB\nWw+46va7j2CBW4UfrSlR/owkz+9R4P65xyrrZ4TOYDBUx9YD8fVEzq39Lp+esDMDd\nmyuf8ogcRRQUUf5bt2urD/QoYBaBq5WEv7AvhpChy5wEF74PX28aK2whguEEwKlyN\nZJoV9LZ+jEk+jMpspECR/yJdAf1ydRSzXBE7w4FCyLTBGYVQcK9HJsiKIXR0Qup+p\nWRyZpKumG42Z2YXjed2ykD6qTgGY2dHK6o7a3pm+4LvByZz6pnqOYwIbYn/CUi3v3\nFLkKVEyZgstuGvsADfTL3lKM5HTAl6gxm+tVI4e31Il4b8tyFTHGg8PIiqWkHJFaW\n6ZpTsDGX4QmB0cmzcv8IDEVMyuiaYWXocaX8fG03MpWZvcOincKsVLtds9gg40dl4\niuflq4GUHKMcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:54'),('probe_url:1:https://friendica.free-beer.ch/profile/dysfunctional','a:15:{s:4:\"name\";s:6:\"Brando\";s:4:\"nick\";s:13:\"dysfunctional\";s:3:\"url\";s:52:\"https://friendica.free-beer.ch/profile/dysfunctional\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/06b9f5c967a6dfb1\";s:4:\"poll\";s:54:\"https://friendica.free-beer.ch/dfrn_poll/dysfunctional\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:49:\"https://friendica.free-beer.ch/poco/dysfunctional\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/89.jpg?rev=2012-07-28+04%3A35%3A53\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsiWLlO+FgyIn6OXbpPGH4\nFlCvD0yfYXrsdP+K9zpS+VVRreTxk/gpjBZUBsBc7wAXLtXwAr0bC7LYdQe1g4JyC\nKFyqt0A+vvy2LqnqFKXl3DjhUerfuh73ecFIeHgU2IwnqWhZZEVkKyjakNx9/JJDW\n2I8YqWdLgKw/NeilKc85wSkLkQh5yj5VmQ11yavY/WUzSBb8lpxL/0MuoZihnoRsY\nZCyGoM3OSnNXSbHtgkhgXROWdT8hoJ95i4YaiiRBuZbFBXnCOAk9CVFKtNm8j8sfa\n4zgLf9CJKr06zHW/GGFyVCtGcgr0i9EyCNPQr8oEy06FW2ptqwVAlr/vgisJpvY7r\n+MRObuCxTfSOFOdfQJEj9zHPjVcSPE9azwFv2ZcQQoNIU/mWElV1bcgiat3lV/eA/\nye1G5NjTmyOw5ATKFMRBMWBeziBgf1YVN3cAJT+5pfyWnAPoOdlZIcQbBloNI2Fkh\nMDnOhoQcd8l3DWy4brjSj7lQKrLO4GZSKJsD//RNwxo+4sa6tTMr9FomjKpOmXXra\nSWAgU4r69N0LRdZiL5kQ5Z72FvSgUztQyhS5JxHGb8/4iXqoEDSjvkG6X/dKyLL18\nzpKPTH7cgiaGbz53/EIEvnV0WjX5vKA9KRD0uVnWRS15LfColTptcmApBsDbBovAp\nm4LTJ8KpfmCsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:51'),('probe_url:1:https://friendica.free-beer.ch/profile/ecologielibidinale','a:15:{s:4:\"name\";s:19:\"Ecologie Libidinale\";s:4:\"nick\";s:18:\"ecologielibidinale\";s:3:\"url\";s:57:\"https://friendica.free-beer.ch/profile/ecologielibidinale\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b0ebb244e15fb761\";s:4:\"poll\";s:59:\"https://friendica.free-beer.ch/dfrn_poll/ecologielibidinale\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:54:\"https://friendica.free-beer.ch/poco/ecologielibidinale\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/118.jpg?rev=2012-08-23+18%3A19%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4uz9XFXLE7ZyuSrEcALdD\n7NMiZaMQVTI/tM9Rv9QMaw1bke8hWVQ+ZT7leHFdv131fL8/DsOq6TWCcRz/xYJD9\n0qVBn8VgzNGqPfkzNK15mfSvqLwL2UCkdiR0GG0dBOtFkSpLVbMKJu33deKcCVh8G\nCJilH8XSMle6Fw8oHdaVXLumASHpZk0P6+qWMlJ4uoAYE3sep2OhX9iSfotPVj2H3\ncs18XHDLzwB5o9wzCM2VgZUOamFrKd1JQHJwDe1WDsoYoVPsMP0i94lRH67bW4/lk\n7IjjVq7Sk606H0jv43jlaA9K17vVjBrjUqG+fxvsnDUpc9uKVCQ7wtbYHGOSrs9WD\nIg8fJPIYDGU3ixhFelgduhoj+L/tn4xXAFxYkGpAR7OHzBE7ITip6OII41QcHyVQs\n5XQGWLl/HTFP1qZ7sHCXYqwu16si2eW1nS4gTfcUTYKUOJ9ssC/cOpWdIjo8HdSMk\nR917awR9fEMe3L2QAXAM82VrzXrOtxLb5m+TflgfjLzMX0/d2i55nbEaI2gHC2MFu\nzGxbrbdC+W2JIw0eOkaVBfi3aBSQlWwrU2dg6+Q2Z6P56qhwDtNEHTsdOPc4JS/Nv\nV6zq0wb+sm4aoSz1tJ75yYoZA2q6xtVt4An5RLp8FdRZ2ct+A3Kb61p6qD8Poba7e\ns1YH1KAPs+gsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:56'),('probe_url:1:https://friendica.free-beer.ch/profile/edwes','a:15:{s:4:\"name\";s:6:\"Ed Wes\";s:4:\"nick\";s:5:\"edwes\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/edwes\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/517df4f697622d21\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/edwes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/edwes\";s:5:\"photo\";s:56:\"https://friendica.free-beer.ch/photo/custom/300/1206.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAumv4COQgF70gY9hb0z5cr\nqtAdYCpFPQdRsaz/ND0VgAY8w6OZIInKsQ6vEKK+K+pCHlmyRHiCfG1pPDOrDnx54\nRLwRyJdL2ZWKWcRXhAPar+VPhI3t9XFyLdIzzWSUoRFbd/sQABXoAxrbefTiOljrG\nZtR+o5Bj34yH1C1lb6B726CSEa21LMPIYTee4JrPkbQV8AOMDYVZXECAXHKSi/eUF\nnqNSFycZUAZ6ufU5LvzphTyqWQ60ILqxkVWR3rJhAFVDgr17kF9lst/XWPIqCGd2w\nVUscmVjecTlhw13eCg21JeJZ67LWCLKBk7awe/GWOdPddHlciMwCPKVEeYNftEnfU\nr/kYFqEhAe5G5XuxIveX/mw+HYRSAEA2YAKKwPKVwXyhYCMHeFtKNermng7ufvu2z\nPLcrVsZXKnDs27I+zY9Thd3AowZNBK89LqvHzaDYqgKCIUYst1P+a7c8FkAPllyA9\nNV2rmWjJs5VXIC3VVA5VLQtFaDyNZ794Am09ga0vB1Jo3S/9qV1f+gw7xZi/3DGZs\nUspek4r0DCb0i+XqZjOLd8OVRFqjlPxvnkihZKGK+8rYQm2CpJQokcX6mQUINHtmQ\nWpRecfR9y9y5mNpCLEfBTRPBtKXoGSB9kknE6s6oeCC9t+4clRIxuabcNbRl26fVa\nhlOvg4k3Ze4sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:31'),('probe_url:1:https://friendica.free-beer.ch/profile/emberleaf','a:15:{s:4:\"name\";s:12:\"Colin Steele\";s:4:\"nick\";s:9:\"emberleaf\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/emberleaf\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0bd0e0e9de54bf70\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/emberleaf\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/emberleaf\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/245.jpg?rev=2013-02-23+16%3A54%3A57\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtxYBVedz2BQIz7aIfs6ot\nWmCl+2vtypan/5PzewOqQ5h244U6RZHY4QGN8hL7AhbEU5ggMSOO4hWK1n9JIK4x+\n7I/4NUoGU3f4YLD56v3VskUhnhSA5zsSsIhB3Z+qGqStG0gMZbJLYH7vPsEGyX8ZT\nrdCUWIS0wdeLgD5QWLyHFiRFo51a+EeklwptWSaJIELiPkhv0DERtZ5Bfp1gBfKbo\nAIINaW1nAroJibIgFjQhBpvrhvTqgxV1p9tX5+BPyWmg5gk51BafWRM9WPoP8ZMeD\ntaXpNJoe40LrMUR7g+NoO4phDtzUt4jCLXFdgEDfOLVk3fhai1bG0vbTRKVAN54AR\n+S+/JYlv6iTyweZt7riSNLfVpuwUZ1hH1E2bZ4/N/WUJB5wXo+BNymRzLLYUpVz8u\nHtAeg/ZsWn9j55RF//bZVjo40TvLAUdP4F3wE1E8TXBHkMv+ChqhuJmYIJIkjUOoM\ntdO1Zo0SL7WosW/LTMpUOAR/RYDwX9BAXehgY5TlP4PCWPUJVHTqsT1nllTS33wq3\n0AQmSSdSg+h5oOeO3sWjZbsiNqRAO5iM/unB+vkmX+kPGrGXw2rQgn4afsr06Y1NN\n62Gq8ObpMALsY+Kwh7jQrrjpMO873H+gFFEH7GgMGKjeMGxDbkfuCGIU5Fl1a0yR8\nPAbBAsORC378CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:06'),('probe_url:1:https://friendica.free-beer.ch/profile/eyal72','a:15:{s:4:\"name\";s:6:\"eyal72\";s:4:\"nick\";s:6:\"eyal72\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/eyal72\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/c3ce7e628bca902c\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/eyal72\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/eyal72\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/872.jpg?rev=2014-09-03+22%3A35%3A36\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxRcIcEIF5DJyYQJXMA/EY\nRhjLRohuLLMhzCAQpgrPjKUhs02C3BwDY74/FulIhQXxUX7yWz+rYIgwXCLp58kPb\nvZBKAgTsHALTfqZzPu0PdrZ7rDdNuMvqU9FXe2MMM/bfkl83hySDLppMMv7567wGU\n3FxGRzHmT+y/iQoeB58J0JVJuY0YxUS2LkNT/zL1dHs0cYaz+DOWrs1GNujHam8s4\nGdOcavbKEx+MqGYWQsoJBMa4xw2GulsFlDn7CfxGq5xkU1IHgQ1EY0GNhQKplmAx2\nDGYBaCSJ5k5r8zHuEuHC67h4KHdqbXn4CEEZjtzPF9EN56RoG89f98bfIhfFt5LcR\nZ18B5vp4J1T5zXG+GlkxyDHTYXctT/27H2fLBdStH5YJyn+HZU2Sw2+oEXrtd2zMH\nT5hHY53gGZ3JGcXs0+8JMkkEoE4V76uyiR4Q5QRKGRuHdIBOraKIEcXzIttP3BvnT\nu7o5raPKOO4w0LBlzTcWk9MDIZjvhhM+U3W0wsRJ0/QGgvU4RT5E4VeZHKI8sR2SF\nqfixKa4BjodvdNDgEo5DemfgyqvhdXSqTOdPncOFJmKLl6IA4/tWHWoPlrZMuFdYW\ncxpZBU86MwyVY7Hfty4aYjBKi7nZpG2yQSfhF1YCAtHWDnU/901V7XD4j4rAz0Eh1\nm/J8uTiju6ecCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:30'),('probe_url:1:https://friendica.free-beer.ch/profile/funkymartin','a:15:{s:4:\"name\";s:14:\"Martin Neujahr\";s:4:\"nick\";s:11:\"funkymartin\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/funkymartin\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/1dbdb91a2060bcd6\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/funkymartin\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/funkymartin\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/557.jpg?rev=2013-10-04+06%3A33%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlt3NZ09UmvP9y/O8wdPlu\n4Iq6P+yxQuLuuc7ITiP10JGLJKruAGef9MDdJEM5zzkQS8U5+53ACAftaOn0ASkhZ\n+bg7/SgkBBEgGFt+bmpuvZfJmeQ8q1eirMdoE2AwZpiMHX8tKGZZyA1zefBpUGi8A\n6SuMNcAHszJficb6B0HSxnWdzB74I1aZrsWxRuNGtWfYGsDEQTQfXVzxVEekSB1ph\nIdgdt4IkuN1gtxcp85axP1QlYAJBNxILUKNIvSxCTYQKs7l1Chyx9mAH5Mc/8kz12\n1K89vOcYOcpilhlnG0aO68hpYiGvrBTGE6IcYp9f2ElHppn3JcCJm7BEzP88i2kK/\ntjOrGxXZ9YnbMISl+dz40KAYGsquw9mUA8ZLSX370eWJV66e5j82e92zkkdzrz0K1\n0tcgxlgPkSge/A9Uqbm5An64tyAoFDI0EBEs9F4zf743szM1h8hgvamOrUB9K48qQ\njG4Q3xWQXhASRhdA5kf7M75Pzj9A+9la9NlN3dnfn9oGpXuofR6sQDe7wTBxTp+Za\nd/S0rMuPAIzJq9ZRAWOCNxAW9GMM0yQ0lLUDzYdLgWOi3LWXVaYtHX3oBT3JRZIOB\nS5s4FI7JWmhLMkJ8vFPLfSofnK98nhvhbhNPtrL+LikO5PpoVHZqQF7uLw5e51QtX\ndi6vtg1hh+f0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:11'),('probe_url:1:https://friendica.free-beer.ch/profile/heindys','a:15:{s:4:\"name\";s:11:\"Roxana Diaz\";s:4:\"nick\";s:7:\"heindys\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/heindys\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cbc318c9f4be1d3f\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/heindys\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/heindys\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/774.jpg?rev=2014-05-10+09%3A51%3A52\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwOk5lDZN0XQF7eQwuVFMD\nutarxfUFP7o3wHxIBJ44hIUpHsV5gJNQsaG6AHfZbnrMHKHTaAQNUofZfXvYuiiNQ\nYbIZo/BTWeAuCyPCHOLbRQXSm8kSWsD16/BOFSuUj+CXTX1izQBLyZsXq+wCO46wr\n/2npSfgjIehJJr8sbNzxDu+aSeu/4vsajPJsdi4R4QUa88QEfVkvyffx3Xr1HNfT+\nk59nABrRD+M3BFfQsNBBZJtVT/qHhJvIkje/6DkKyjFy3VFB07GlhSFe7FUp/dIvQ\nYw8PX4whVZZmHTDHPTgJMWwgfNgQf3jvCh5Tii1QSHARXQgAX0bdrgewmUFZ+WHg1\nKlDxqhHFiM3rco2mC+mn+8hFiTFaQ45TAT7OlmCBJqeBXWXWV7HEmaUOGUxCGoHsJ\nJzq3OjFAVs52OYyHZf+ERF9La145qH+ssy7WX/I/gFrha79aoUHZKLyydHUoMHOsC\n1k10CcGUbO4N0++0srjFdVLtaYLNGBD3F2lbjmxFBgxtXaeOM6lT1iY44zN8C1Qpr\nwAzeG21SVFnPOyC0KsTUDAOvJM1lzfNhbAW7ZwXfZZMM9p5pa14ka7QU4dokitb2L\ntdcUy8o8FIWM2wVc8rP/NiscgaUPCYR0m9SuZolUcp+HUtBwbOhnLDV5oVsREaVqi\nJP/6mn3lZ+tcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:17'),('probe_url:1:https://friendica.free-beer.ch/profile/hook','a:15:{s:4:\"name\";s:14:\"Matija Å uklje\";s:4:\"nick\";s:4:\"hook\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/hook\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/41b5ee1ff0572c15\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/hook\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/hook\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/336.jpg?rev=2013-06-02+20%3A40%3A51\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAspUYbaIsiwH9Mz7oeHzjX\nPDFw+7cQbT+MaBHCc8qtuhZU0JxcQnU4F+2GZh1BrmEdXcOdN/bANmCO7DMO2zD0U\n6KHPPPktB3TD7p2DH5aTdPh18kVk/5FWVPAyX0b45fRSCggUKz3GEpiQ8ADKIS+IB\nzQsZUDGysTkuywoVBTacZO8J8FyQbG13i81p0Ga7O6Rg+en3ffCW403Kw2+PYyWJ1\nMiFW6h9eK+TOoA4pPtLSuCjsltNADLLCu9fCrzZPjKRC+ZNNIltAx++ik9ljlSSiv\nufdqs22CeQ+Pn8AkUDiKRUsVObi3DbgmYFN7jSdyIIOzdIX5pqJGbFFAj3EKkfr7l\nUrfVMB9E/EFIwPJasYaOMO+y++2GFfngRMcRKtvgInfFOOrpxgi3Fgb0K1A/hlEUM\nub9wLvGx8XPkh47Ypi3H582LwFj34NfRh898k56WYMP7J54k8Da3vNwrA6GTdgEFT\nTRfi0vaM0T1KXb2QaSCF+kV/x3lgC5UcE8riyhbBxJ+5oQPqAFfezZv/nRQdG/DCA\nYRPcZvljCMg0GT4dpPAzu55BpLKTrCg+t7xWCVlqFLlc6Q/BQwjDPOgj8NV4QEBeI\n0FdEFtKYuuvASC5UMHWAst5WqMWXvF/BYorNfyzk6yAMsAZFszmqsF5EkTfCMX9rm\nqXd0/VrIAntcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:51'),('probe_url:1:https://friendica.free-beer.ch/profile/ilma','a:15:{s:4:\"name\";s:4:\"ilma\";s:4:\"nick\";s:4:\"ilma\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/ilma\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f2d794d273152c9e\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/ilma\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/ilma\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/739.jpg?rev=2014-03-14+03%3A41%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAw5ChEbjeimj04lu9MKgjL\nMxVQrytNGD2OlbYEpptsQjPjVhgbGko6qEutEsfReoHDDVIpRm3rVFiQCY755kG23\n4QMDxcwTCBJl8dCEBoSTkW9SU6b1Crno/YQH9zoacaLH7tNb6C9dzwHHlbtBIHs8N\nI/kF/cA3ntisyMoWqvCLxYvl9RKy5H/jyOKf0Pd8pORydUJmlF2NkVC+KVmymrJ2j\nd76pFXyWJWzGeCz+Eu3+OiWn4XGyQME3OkkMWIZqmB/msIgWhWrsibGKdVqqx0fJR\nqpeTSbaJIS5xckf+e80++ipASpo/l8s7yGjkc/11YYgtRveLk+CDDyOytKycv3KEG\nsWS6xsSsc/HvoNoDsIklWnCDRfu7xti2OLUzuVJ2XD6ZUo1hEk6KurHNQMSwYfZjg\nWzyBvm/MUhZ9uAHeq6vdfTxhnTgdLKpVdMQeWLHONAoBvK9zc3qi3rR+SJciiN5Eg\nwQY1uiSybTG90O9RvT1Ng/KwxoOyVsDa347uZRoI9CCYJgfiSafemHn0DNKYetn1Q\nEdKTJx42Tg/A7x8EvW7FuVchGvH4vdV0zrSjKVDEuptcqY27k2odcwndiTgylkEl3\nwp5im44HqqGx60HNYQ6T2eoeO1SM6wAflkQD68lIqKV7lKw0ynxM8rXQCVdapbir9\nb3zjH/t5fuaUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:26'),('probe_url:1:https://friendica.free-beer.ch/profile/inyan','a:15:{s:4:\"name\";s:5:\"Inyan\";s:4:\"nick\";s:5:\"inyan\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/inyan\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b11a008bcc65e199\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/inyan\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/inyan\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/111.jpg?rev=2012-08-18+19%3A01%3A17\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5PQCDobzIAJU8kIrKZtmV\nPyD9Lckhlkp+Av/XI5PWqWeOyh4R7yhQCctBO7WxLQTVwBjGDjAZlp+jKsl4+OLq0\nuqd42RhAK8eppWqS7XDjgOJbRXGzaHzmnqFkJsiRyALcHOARHEHrPm3iU87A410lU\nQ3JDmRN6dPIREU+I+ruDLhv8g638ORUa5HKuaShxv9mT9Gebeqn16IPnAhVoM0nAF\ncbQzR9Ej0dwVGzcHeslUrCPjGJVHmRRYrKNffcTykdmYn93LeFR/dr/OF1DNr/aBT\n2M7/Yb6mlEIRjJ38nCyKSTbcCVSZRVH5JYWng6MPT/ek7CFZKjM5FyhxNV11at0Iu\nmqRP5GsuUL+y4cAMeePkF0Sa7Z0smH85/UBWOI26FeMttUoMUk6lHLrih18vHQGh+\niv6WuVJ+8tJNuzRfXi7zo4S71Tfi6F9QcYYyu3HioX2dQggELYSUh7+vucjl0rbV8\n5BW8+p9iH3eId+LQqtUeuSyTATBj5lQfQKwtsg6rNt37nhhgkdouk/OZzXuUz9tiY\nhHmM0pWn7AxU7KZYEYl7M+4dT5bwI9/OnTvZEct7D2CG3Z081206hLyFFij+LOe7E\n99WKz0jeoL902TxCjhWe3j+VrnEoyzP5otPeJw5+KBEPw4RzbPiLeK8JSJ/s8g9He\nhPBlF2+X2V7UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:53'),('probe_url:1:https://friendica.free-beer.ch/profile/jan_sofasurfer','a:15:{s:4:\"name\";s:14:\"Max Mustermann\";s:4:\"nick\";s:14:\"jan_sofasurfer\";s:3:\"url\";s:53:\"https://friendica.free-beer.ch/profile/jan_sofasurfer\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b17c740d1f8c5cc6\";s:4:\"poll\";s:55:\"https://friendica.free-beer.ch/dfrn_poll/jan_sofasurfer\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://friendica.free-beer.ch/poco/jan_sofasurfer\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/246.jpg?rev=2013-02-24+13%3A17%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApNV4Z2wskvZWGHJgty5iC\nTi178E3gmiIwuciq2QEq69J6SQFYt9wiKZsOYVYd73LBuUdVSXfYj2QYLUZ8kSKGZ\noTol03lHVY5QwlpEbMNwsgJMiSzwBCPEB89SN9bhU/6/iE4HMrLs5EDyALCN0tZDN\nZr1B7OoG2wAVFyQZLWp+2T5FNcFl1W9uttWSeyVYTz1c8Mw/3nzk2c0OQ48PqykPI\nlXVES+QAUwnY6xSIjtwpPOc7ReMlO1FwKkXj9etM8G2yiRW1WLnu/IvT+Xx8vr/WY\nj9H0XR+/B0PEaE2+gn8ffzOvwz84BCqZXmKdnyS1M26FwCvD6M6twhoGflIHo9lYW\nHm/IAR87KBfQvsswqZgpih8UkTbxiyzKpkVmldrmhkdSFt+jV9FjlnTx2gVGCeKeS\noJq1k4LMUsUEX3BdVrr2O2dgot287/LfliLqjsvakJsqJkgGoaysBR0mbxai4Tcbv\nvr287nfYe7aGsR390JM7eTNncbMMQKHcnWmfmkwEvSPWD9Ft+wuOoXIdnANSld2SV\nDjsgC0QBIgZnQEyIQl8V4Z4sizKcAF79OqBI++tdj4WZ6iC5xImpyx+ZfJJi8Gytv\npFmA3WkwGxGZtb9Wl2yv6ismsutjimN+6jLI3arKb11F3m38owNU1bWDUjpoNksJ7\nIVXGXAHNa57MCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:06'),('probe_url:1:https://friendica.free-beer.ch/profile/jh72de','a:15:{s:4:\"name\";s:14:\"Jörg Hartmann\";s:4:\"nick\";s:6:\"jh72de\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/jh72de\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cf1f9b3f44a8ea19\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/jh72de\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/jh72de\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/295.jpg?rev=2013-04-09+19%3A21%3A01\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqlD0We9Ex8SKMh+tvZS0R\nQewKf86fczUro7E9HpcWdn3biu64/GRhcv2roZBiZin7KbGl8gJr+dHMxbCqdtUsj\n+kFxrbA5jAEgxktOdUxfkueCFYqAp32RUqWFxju0+KD8ryuz7bqQ3iCnIQAyhCqlL\nXiUDw4WHgfRf+Rz01DCGi0Yr8cqUaKMb0cPe+q+bmTHDZ6nZM7vj690YfNKiS8bRe\nuXkZNdmxeraq/Hp0GrNmmqQc61uI9h+3hhFEpNhpKr90j/AJw7Yls2WWlKnI1UqEO\nmA2OHpoFm3P9vh529rRtRp8sYM+u27oCRCpabgzFcLXjHUXpMgWKZF+1TZzF6roR5\nlfCKLCGtA8a/pk5nBuu30/sSxvp7/uBwDSrqG6pm500XAP3y/sy6eomU2Ntjg07Ba\nw/woZZ/AUBuxnmgV9HR61ryk2KbvWuCqkpCrxOt9F7b3Gr84hjv65OJJLJxmnKPvE\nOaZovlXP4t1aHd2QmmVY+7Lc39F/F1s4QMV2i6BwUl5s4pDyAYsPi1NaqzgyWEtHx\nnUvR87BqJmuWNRzN2CbJwdpYe152T/KcEwcl+qW3ZCoPFQAEcy18G2KUahJc0uO3C\nKsB8oFq29W3fm/HOP9fa2BhrLhlPwjZ+aIQ9/4Ufzc938KVHperCIHO/qNrLlr1Ux\nVzIwnIZtWHgsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:46'),('probe_url:1:https://friendica.free-beer.ch/profile/jooxz','a:15:{s:4:\"name\";s:15:\"Yossefa Mekyton\";s:4:\"nick\";s:5:\"jooxz\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/jooxz\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/bac7439ce9fbdf3d\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/jooxz\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/jooxz\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/413.jpg?rev=2013-06-29+18%3A54%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0RLYasqvNH/TWfmRmanHo\ng1YDeLfis0D3UmjrTBqd7QkIPlK9dydQgaCpe94Qi0LdwDPuaxDvXViH5zXrvs+6C\nyfB+rbI+u1KCkzPwFs5FCP+SGsQg3yFR1amct6EdYQ9kNcum9tC2KUzZBcC9lRlFo\nZQ7aBmerA8RO1YIo+ikiQPFiz5lub5S+YjnjcBhln2QSGlWGQWJGz1mkFrO5H99w9\nUrFij0pYYq7VR1w4FSXNYrW1K9foC3P2em9rCHOwFHF8BDmqQ4gw97tLd84zt2x0j\nlgodAgtGiYUEbe60UO4/+wyQO/gdTye2kS2WGVx02lDilkZJWogCiHH5Z7unap27A\nY4F+jblWIEcukx+hMdRPHH6d8JFgJ1ux6p04TU0lr5oXzHok6wtCeI0nwVqP8bzBs\nhkFhpuhGp9GBXlSb2zaPyt7UXUCvwEa9UURlkP8RZ+GTn39DdZaLgsG1/DOT0zwof\nhk3q6jnvqLFwI2hB/toT3EgPvA5Bgc0UTxHxddw8jsZhj+KyUPGVCCUXT7EhXhQtA\nNNjBcJi/GzU7m+EobtDCQd43FGyqeyqAN96dncQk5AkhnsmHZoBPnmVZofpW3sgxD\nmLS36GlNGORUB3nJSjpBL7AlMcH636WCT0ZIP/0DPiwKRCcBJPJM6gXx9rxM4ztCC\nxls0RYEYFM40CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:58'),('probe_url:1:https://friendica.free-beer.ch/profile/juansantiago','a:15:{s:4:\"name\";s:13:\"Jaun Santiago\";s:4:\"nick\";s:12:\"juansantiago\";s:3:\"url\";s:51:\"https://friendica.free-beer.ch/profile/juansantiago\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b1948791a5a4debb\";s:4:\"poll\";s:53:\"https://friendica.free-beer.ch/dfrn_poll/juansantiago\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:48:\"https://friendica.free-beer.ch/poco/juansantiago\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/94.jpg?rev=2012-08-05+21%3A12%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAumhu89KZy6cL/5XC4o7i5\n91XFtEhzlVF0M3PedN26d/7UW673ckOXxLlxkda2az4u78+eYsn4J/riNFD7vcSOE\nSABL8LjsL/eOQV5PK6zXaae8RAMd04OuLnB2xokhTWy5JSdTSRhDc+uH4YBCJFp3b\naWQoocBu8j2dbS2pfK7Tf0QxXGpZ9A1dwaHAOIJYLvuDiCFG95tgq/V7599FkjJBG\n0kwcQKBGyM5CAp0VYsbh6A6TyON8mnpaJrUzMBXvOIchVZlbyjFeVfT2I3vE22G6C\nZTmFF7wRDWA1cQCIVzWDBcrx+n2vcoWQhxEUaDNU61TOmY8idTl55vD9Sy83F/opT\nM52iXGSUxdImXgQy9Cm3k6B4gc7/y0awpNAp5ieVIhK++ali4vnUvVDTpxSQ00U6+\ntqHWoKYxxa0ZjzQlM/LnXhXHKOrGNnSY3WDdpmrSWEPLJGu0kviVNYlOUlrNO7RwZ\nPKFb4CfGN27lsfYRJS3tAt41DKu9jSAp0unSTQTZk31t/pxU6sONoUYOPnr9LhzVj\nsvKC99V3qNVfM0azOk93gDuiuR2rdw0PMyeK8IywunHegBO+IfboK8UzHECugrrdV\nPmhhcjNUXu2xScJ73Rd4XnXRDNrkbylcJTAy1BPkXTq4cG94QKqq69R1qVFe2oM9H\n/nOCKvERR+AMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:49'),('probe_url:1:https://friendica.free-beer.ch/profile/klampfattacke','a:15:{s:4:\"name\";s:15:\"FreeBeer Klampf\";s:4:\"nick\";s:13:\"klampfattacke\";s:3:\"url\";s:52:\"https://friendica.free-beer.ch/profile/klampfattacke\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/ab2c558e5acd04d1\";s:4:\"poll\";s:54:\"https://friendica.free-beer.ch/dfrn_poll/klampfattacke\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:49:\"https://friendica.free-beer.ch/poco/klampfattacke\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/167.jpg?rev=2012-10-27+02%3A34%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqbIJhut/KZj4r3Xu0l2/J\nuOyt/S6JzI9QX9HGTZi/6odlaq4ct2Rc1zyebxuBU9XeRNNxYQgf4Qmbs9JXO5nsG\n971ex6SSJZSK7od0HkA/SaSm4OgMRrD7cbg8plgcmzMvX4MOawoV3qa/zs0/IownB\n288wWm0yO7BJau7DNmJ3409oEqZafmURFWIJ8Z8peOjAMgtqLPewVgqimfCm1LFN6\nwyRbVNAFuPEaCA9Lc/x1RhpLVtQVojisskC4H2GYqVsUNV+/lLWQAQsmscoGmuxlc\ngR8Z09GMKPt1WzvqMqBH7zSblFzYa3jY069gK4n+eoUbixHyc2Z+WZNtxi/0bT8ss\nxCmXRQR9S72Hv5+dpolvYQRtHzj1vhUZ+SV9mOL0gFiKUxOhi1YlKjbgd7cS0cL1s\nS5zIFtBR6FeVVtv+Tl4sLyAFjjY0mEf7Ax6z4N/oKJHuO/hFT46xq+UboEnRwO1Ln\nUVjOd9GqoC9fQjIeGePDH/HBHPlaIhz7ri1RWYR30Z91ys27u2tyQ3YsZJDUYSfGy\nXbnq1VDvD9Fa+3RhWJa657edLSVolHYQn3x42+DMFRJZojj+7pnYSigYFduWWQGRQ\n42EZujVpwaMX/Fy0AiI4xLLH9w3YHi8XJAhwsaCuJkScMOhmEnT74EjZWUyHn8Kow\nnGYPVdg5cngkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:02'),('probe_url:1:https://friendica.free-beer.ch/profile/kreuzmacher','a:15:{s:4:\"name\";s:14:\"Markus Krüger\";s:4:\"nick\";s:11:\"kreuzmacher\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/kreuzmacher\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/ef8224601d4a8016\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/kreuzmacher\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/kreuzmacher\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/800.jpg?rev=2014-06-26+05%3A48%3A58\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwzaZQbxuGxkxYb9iO3I92\nl5a/zaQHDUwJ6ADFj4c9aHZh7H5S8LKX6SE9qAdVghG5dXNluVEkbz7nxCccps+Ku\nP0pIep4WvtbdwR8DaglBaLJWawA74P/+j0WqEj2Qj+zyvK9Pp9TEWd1ec4esa1UMG\nEdi0nREn1TJ/dVarKtjus7p7fk8EqU8Zcw7lBVXIyngA4OjuC6ECk7bNQMU6QtYSn\nJlOpLHAshGkVXC0+7e0BwRKT0kJ0EukFOeOv+emxxQ7URJl5210uRQRXaVkzfg8SC\nl89G/Vc5pCwEEQzdeca3yrxCA5//R6qdsi4bXcGlFDNQO2rnTcp6YNG+bG8U1/Z7I\nPtxaDjiOQcgVODCCS5ru4PC+yqT5lpYCu4uDMfLqgVjWzmDZQ5AqM1YvvTFqgGV6+\nUEFrFHA9FYtVlnA+j45/2lkPYLLUogI28pLkE7iqwCo/NqbyJbavV1Wn3naqrWB4h\nHMzkjZQwV34bf8GcXnvZMi22aDO6e6L4vb1XlvvnU+HtuIR5Y24NCS+1iY+Er90I3\nDnKVw14wtB4e9dWgGKN6i5gg5c1BTC3nJx2r81lF7HA+y0TuJZHjBlY6JjqzoDaeW\n7u8Oy7pPQkt0ws9uL4sWncWaIS6QtRYPG7P81eCv780lPuiX9ohfMzWHjonaeFKVD\nKb496VQJarLMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:29'),('probe_url:1:https://friendica.free-beer.ch/profile/lechju','a:15:{s:4:\"name\";s:25:\"Don Viktoranghelo De Cuyo\";s:4:\"nick\";s:6:\"lechju\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/lechju\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e86e4102a95850b0\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/lechju\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/lechju\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/583.jpg?rev=2013-11-02+22%3A56%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1HiiNDc/MkhUbhtBvbq87\nw3cxqjkOz8xtVkVZ2njSGcsPLJm53ZLUG0wBNyAvxFvetl0Cxr7MG4W6y1lprw1DQ\nFz9WeDAOWN38OmzhTS7Ga2TI3h+rUXcQmc+GNxlBxRQT8Witp7XIc6RDIffnPRxHi\njrFMXQFqfIQvTJS3cBeoDTJd5RccUooH+TMBkPhQUVFiPm8jUauPReQAP1h3aXjOF\nXcRmbCYS3I6JPQRY2XQK7QU0H9lBr0x+IogYNSHYWt8Fwt/+sS1RHvKhtIfezVJmm\n919h7kGLKR0eJ5rWnF2hqk2HYP67Ko7mX+cNzw25Ldsa8uGsUkaqQPJkWW6G7Pezy\nhBX9n2A8TGdLr7YidpIT7ce3C+89w8EE+dNnEV2h1T8dLfeYWA7IAm1pX1ve4fp/C\nVeAQydbzAaNPEHANeaPNLpmYs12+P49hOxPg7sGdmOOQpU50V0sxajqB3b1kBX5zI\nuHJe1pAYjigYh3n7v+271SiB1Ee2pk+VCPHl1X1spW1QWm66EAJviFWSVKKx1VcVO\nmvEhtvlDKa0Xd3DzhzTmQHCFY+Yy/IeDF5RetoEINCKq0EVkPBoWoSuOPlzUbNtVw\n06Sg9SiTjYIf39cnRJ5eysr/ogBae3dGW/uSRGA2mc1yGbGajSrX9eAiIVtdsV2lq\na5J5D5KCz6v8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:15'),('probe_url:1:https://friendica.free-beer.ch/profile/manoelnascimento','a:15:{s:4:\"name\";s:17:\"Manoel Nascimento\";s:4:\"nick\";s:16:\"manoelnascimento\";s:3:\"url\";s:55:\"https://friendica.free-beer.ch/profile/manoelnascimento\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/bdb93436b5a48bdc\";s:4:\"poll\";s:57:\"https://friendica.free-beer.ch/dfrn_poll/manoelnascimento\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:52:\"https://friendica.free-beer.ch/poco/manoelnascimento\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/734.jpg?rev=2014-03-09+14%3A15%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2k1ibgFHrWL0wHN5fbQqd\ncXwuiCfsS/EteKnVVJnOhRTUIVNa6ybmJtQd6+nsINvGUyKPOPrfLSwOa7/Ytup2g\nuXEM+uK7n2V30k5iE1DZ7FE58xKIJ09JyeTTfraUZWmNdUt4RxQmq+M82jgEnDuI6\n2DV+iE17q1t4K1VDq5p/Cx6m/XheMcM6M+7I3cDn6pvFMA+xpNE0Ltn6g5x1XewkT\nQLYxjV02PWz2NS1dGmHiNCdxWyIKVchylRUsNN5FLePtXiGJ2hHiKOa1EVZKQbGk6\nozuw+Qp62hzAPTfcoplELbjGTTMIDJz5RT5FA9BFqPouhC9dFWEiXIIEcEylZNL7X\nvzXW6ahUgEDxH+XoLc4zRP8/EMQ2Z2y2pLKvyrikzxOcCd7faBaBSpMKSgH6d0m9D\ng2mti/dzq+9mNlqbQocb9Aty1AVdVFXEDQ7i2FBnAkhguVtusm2zPRB6OwFl7ZpFA\nNgNxz6IGLLKiq85fB0G+6TYb0NbvJ57m0+uxn3AalBuPQerJVSzIjzfac0ddP1oDA\nU2ba2m3lgWVbJ58EFMKxiSci8E3QFL5iXzSNHHihTpvjeOn/31Lqtamm1BG5hpiyI\niQdFWtDfslVgn1LeoQAihTXx32LHZLbINnFUPr3XNzB4xXD1Lb4q8qHzQNxeH/vCY\n739pIOEjo7TECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:25'),('probe_url:1:https://friendica.free-beer.ch/profile/marisoler','a:15:{s:4:\"name\";s:12:\"Marina Soler\";s:4:\"nick\";s:9:\"marisoler\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/marisoler\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e1c6cf1c8e3868a7\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/marisoler\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/marisoler\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/514.jpg?rev=2013-09-01+18%3A38%3A55\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtH9brU7mueoHwXR1vB/FP\npayBuv0yd8mP0/Ap4Zn3cZ2g4c4CxPkZNVob+hkRwjiXHZgyI1AqsVs8PCQuLx7aT\n414mKhzSpxjfgTA6AwUwUip0oJVXdp+tAFQr8HohJ0eVedAXm0d2/9SRxVBVZsdSz\nViD9XN5R9kW2AYCFxVv42lOTt+byNtrYgqqjyAxOIhhm6atZgFkFZl+xvLojwtCxI\nD0oC5uT1ZPmTW3C//b8xGh8ZiTAbDRFkxnUAQXiM5oFBNnDiUSyTL6JOS51CNsb+0\ngnumbWgtXMDfmqZDS/UXzm2hGovFeiQAsOPRttUf8+e+OlXuoXUsuzFYmFeifRGLm\n90Qt4qPwdGa56eqD1o9Uc0y5HlfvIfflgOnGTiih4T6e0hXQzMG+m+LoCcsxW46yt\nlf9nOMcuAVCrAfGOUSK0RXJrANLol7iZxFHqgrglte/UjbA3uS7xwG/5AZubtOtOh\nW0siTg3OQKev4ei/OuIwDWDHQgWHOmUI3GkIbxp4XfdnLpI9Xrxl00W1opJ0LNU7g\nWHT1SZWpUXl9UQIIuc40v2XkYWO0rHiQj9O6fV4yhez6dHQDz54MqyVsEmw/i9i6V\noWpvcOP8HtZMg+urx8e795fMwpwcUSX19FKrS/EsT1JiSGTGPlbX4hKv2G66BWjcx\niAVXNflMdtXECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:04'),('probe_url:1:https://friendica.free-beer.ch/profile/marius_katca','a:15:{s:4:\"name\";s:13:\"Marius Katcá\";s:4:\"nick\";s:12:\"marius_katca\";s:3:\"url\";s:51:\"https://friendica.free-beer.ch/profile/marius_katca\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f63a522a48b40b63\";s:4:\"poll\";s:53:\"https://friendica.free-beer.ch/dfrn_poll/marius_katca\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:48:\"https://friendica.free-beer.ch/poco/marius_katca\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/143.jpg?rev=2012-09-10+11%3A02%3A55\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApGqPIrtXYktJ3mNpMG50o\nkf/X+Qf7FSOi+ODYHoVF2PXFPpSmdnHn6CbP8/9OmxG0TBW8xtAsQYFY2824tneFK\nwtzpbt0tCXlCPVfGyjXhH+cljaW3w1LDy1nk9EESj2bFtszwy5lfPeCTZqR+B8ixe\n1CECUXAb1UITBoL338awAV2VvuROCEGTB/fZAsGnk40osmAJND00snlV8SN9TJemJ\nky6Sr00FeJpREYTiOm/ovvFne25tMT6wUfUA2n0hxthiSTBOsqc0Qi7ijbaZ9Mut6\nTEcKsyZhAr/5BCZUI40paEuDMKDt5tWPIuuODY07e33yypwkCa/ucqqXq+qOCdO4y\nSr+ywu0CcfxbntjE3FPvAVD5i6stDL1MYZku2ZZaXIyyFYE1jXe9Z9IMbPzmdlMSz\n5l8G14/M9D898rAklp+yMzWJId/hK1iKbzmSj2MjI6HckbmRCHRPCvs6iZMNZFoVp\ndrqKog+BbzwP83d7JvSeFhRSvn1j/hu1XmaQhrRfgtJqWEm1xsPgWl2vUkIzkYPqk\np5EuSQXFWa0+BFD1qlN9zQBywNXs8fHEO/mh5mzG/U+GlZ5+0LRoH8SKUeKVqZr89\nrfkDVqxvlRa9w4wxxnAP/760bRGw/d/Vm0X/w5vD8R5OtFU6XPtjtWTKVb5jdBpxu\nJiuGH/9zjaiUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:58'),('probe_url:1:https://friendica.free-beer.ch/profile/masterodisaster','a:15:{s:4:\"name\";s:17:\"Master O Disaster\";s:4:\"nick\";s:15:\"masterodisaster\";s:3:\"url\";s:54:\"https://friendica.free-beer.ch/profile/masterodisaster\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cc80847a02355083\";s:4:\"poll\";s:56:\"https://friendica.free-beer.ch/dfrn_poll/masterodisaster\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:51:\"https://friendica.free-beer.ch/poco/masterodisaster\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/855.jpg?rev=2014-08-18+20%3A31%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt+br3gjlgXA4U9/etjMvV\nQJwebviefeCGRxNrc7c5+Ogxf7hU5zkRwFtQRrT8HxFUzF9VptCJER1QArJOFMWcc\nmiyN7B2t+UOMJgRbrLjVRrn8TjL7yh/s4XBbCkGqws9obtQBUujalTHgqmRjUtRah\nhrXgfyrcEyhml3gZtN9mH2q+ZBuUcbwvWI8fCLqC+nojAY8PhDEAuA+GZlrS9XwL5\nQxzl3BVMnxJEzkoamu59DbPHIabBVV1DNsF7BFLfJ/p4BqAV6ixhV1scieCHJLROP\nlROBur56CjbsExfnIM9JrYzyVNEsTrsTXNDUPUSAv3BUXipmNBUhoqZ8XmHAlcvcI\nX9oImx6LiJ8mSdFp3DmVDKyRbkOSQPQZxkiGhByOCwgpdED9eF3bbR0bPE4GAK4AL\nyQep6jtXv3m71rXrMKGM4khN4SFoBKd5AcjbF9pFD0m8BZgSasw+qceWxtQDQcrdV\nKOaVNdSDA6zKPUFhjOrbz45JJM9n5JEe/HpUsP69sePhKsGhwtozzO9w4IZV0LyJG\naO3huADy8ui5uhaaM09W29KfgWJ11biycgd28TswhEMXe9Rz2oNlSUF8id94R0z7X\nd07GqQzvg98HsrIJaVCbzHGVYVSyP2sPXgt9iOGjmm0zG/tOMDwuoSE6m8+i1mz9B\n0WG8F78KBLpsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:29'),('probe_url:1:https://friendica.free-beer.ch/profile/miefda','a:15:{s:4:\"name\";s:11:\"Marc Leunig\";s:4:\"nick\";s:6:\"miefda\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/miefda\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/059d8ffe084c5a51\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/miefda\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/miefda\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/675.jpg?rev=2014-01-16+20%3A51%3A38\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt45Xz38tkLnZfUJWrU8qR\nNXsWPt+Rd6tMTFlvJQFhyNfBGl9ZX00V6ljdB2C6ruklNWjv5w5jORLF/O+NTHI+X\ngz2W7uUynAmKKyWMQAR1vcwivXWeeKXzG5yhWaLBlFHB1IBpQdtNN5TurTiTFHnFr\nmJAWPCAqec0/Z465eSVVy/7/q5smQKyWO43mjdnnN7fLn6Mv85e5SqHEKBURu+zXv\nNX+w28s7IefYe040e8QqP3vYn+fqTi52v+dsGWZ2BZ2DgY5MwN1B9GuokcsQhek4z\nhaswkXfXq8xJ661/bqGIly/8Y5CvptTF7HZPc5jVPOkgVJI2eGKtRei2IA5a5rFKC\nXFSPGo3gNKML0lojWyfolrmQZ3nM0KXzQlBpCghumgk6gkJQTcnSvKK/vRORpJqQq\n8sDYI+BAgGB2G+foVkgwbz32FtzroERaij7QdRnvSOTKBy6pbyHZ7ul6WplUceuMT\nmp62YI5k5FqkmwQHkaPHcCcZC3l6srzVRkFUoNL1DL6X9pNgxQQEbDqXocJwkQHKT\nrNwjpTocdYmkMEe2UQS8Q79OwCOiYfvufF/F3/W1iCAv6YITz4yzL3FTyvLx578LO\nQt6eqBYk9cRhFYflNVM/XvBecCtZthnj/xHNkD4dIO3C1PvSONe3QruN2VtG9hLJm\nF/7lcSU4fWnMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:22'),('probe_url:1:https://friendica.free-beer.ch/profile/musikmamma','a:15:{s:4:\"name\";s:17:\"Liselotte Vinberg\";s:4:\"nick\";s:10:\"musikmamma\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/musikmamma\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/bcea46165727cd5e\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/musikmamma\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/musikmamma\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/589.jpg?rev=2013-11-02+18%3A22%3A16\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwK9oWOPy3yArW5/OcM7c6\nW2tfCpgZ+ihkmdA3yaBOK5CBGVUT1Buk54AtsPzBZquF2zJffGN+UH/MQHpYW9WZX\nYHX6SlWmNOfNBeNR4CZq4doaHOa1Gpwyp/QgMJnHeGmgyNPTf7xMlYOujYeKi9Cqb\ndVj7vNAzuMyROlDqkmirmmo22vLzILeJxck1t4tHLKxqpo8rkHrYOWIvXLk90FYl1\nxJTYloeBJeYlvwpd9C5L65yp22THGzmnaLPYo43ySKH1pRQOEl6FLqKCGelQCIbVA\njeIIQGFAngJN+3iDpXMNqHZLiGS0c1CFIUemKEbj12ZbSV2Dru//Bb8E3LA4OsebO\nT1zA5b974j6/o1JTjkO0a/m89/eVfQY1AORUjes0qHL4xCfLe0YQ7RAwDhyNCJng3\nVL5VX8bg8agj6uBeB0tSNgYZMwWbyHweDVH5gIBDyvB3q7cBicFjm1RxoHRwDkurK\no3WbjvQgLiMr8obXyp7PiPJA3XnzKbNKqXq4SoWcjKGC5i1llY2kY7fHI0RwNaC5Y\n5og9mKGLeOuSSOWlNOaPndvdgTsZMz9pRvHyOUGq9YQbd7GomV9V7TdfM5E42XjxG\n/TVV8lM/nZ9S3Auy1TKu921MVSsV6AWno1h5nbfSYD8PXwXeMrH+TDHKG8UKI2+gI\nIJZSHPO0OaLUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:15'),('probe_url:1:https://friendica.free-beer.ch/profile/nk','a:15:{s:4:\"name\";s:33:\"Nicola Sisto Alessandro Vaccarone\";s:4:\"nick\";s:2:\"nk\";s:3:\"url\";s:41:\"https://friendica.free-beer.ch/profile/nk\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/a46a6fcbeee139fe\";s:4:\"poll\";s:43:\"https://friendica.free-beer.ch/dfrn_poll/nk\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://friendica.free-beer.ch/poco/nk\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/286.jpg?rev=2014-03-05+18%3A14%3A39\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0CVjunXj+wCYsjE8qx/G2\nzE/erRd3AifT2u6Y84NtnFAlMV+u8VbfEZIAafpCzZThNi1W9PYV2GeL40i5I+/rv\naA8S9HvLmGJUNYZ8/5AJIH0BxmBzla7gP8/cMNX+D3yOrVhTyUDUX4JXggNHE0Gjt\ncti6QB8yzwfZRJN8i0A7ylMgiKLo8hAiVwyOm4Hje6liFYyQSLiyNd9DHNoK2Lyzn\nGJHaFV6zQzWYrDjiEVHXkBmQR8CL3pTliHqfRYgi4cOrek6zjQB3IRF6S6NQZHOVn\n2Fu3rodolyIMLQUaBfPFtR27iO2RexI2DyJN97me5jiuuvEBd0D+y3AgFQugCjqRQ\nzcdUE4JOnF21/h+9dyJumlTglc2IgwF4F5ZYD9LxOyd2qVyHzFCkceEqukYSRx8La\nTVIrgZ3POL2pR1whs2vsDDdoA5w4yhBt+xxB8nD8vzxhFl9H0FM5GpZLei773d0kJ\nhncsQSPUnRiqPFXnM6KVyg2+b+autj83uwBOkyjv5lqJxxnc+xmjYll5vsQ40H5lp\nlFdw4PxSCLR4nrtoCe9sc2vov40OgJSIwTHOY3KkuFGppLHUm6hI1Ed7QgDCVE3R3\nb/Ti5skFKe5yG/l+xqFtU0K1Bjt/PcoUV2JLpj3Yl0QltLdvmfZnc7dNVVM+6VRfa\nuXzBj3/JProMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:07'),('probe_url:1:https://friendica.free-beer.ch/profile/ntimes','a:15:{s:4:\"name\";s:9:\"Max Anton\";s:4:\"nick\";s:6:\"ntimes\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/ntimes\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/b11f6bc07d3eb2b1\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/ntimes\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/ntimes\";s:5:\"photo\";s:82:\"https://friendica.free-beer.ch/photo/custom/300/98.jpg?rev=2012-08-08+21%3A32%3A00\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQ++Gn+wgpzhydf73WJuP\nyHpviMOs6P76U/1ctJyirDRcHm7x+o3VUnqfIkwJB44quCP083fUA020NWbmoEv/1\nE5CKTOOa3vUcdl/3EW2oj6AjD9+3h/CVlSInboRyEK0oshDZJfREGGO1F6EHDty0x\nTsw587PEbZNdrRVCWRQdy85pQ+qyWqQA6QhXjkRAUhjifcWxzByec8kYrh3E6KYvT\nFAWm67QbyIfO0le+hBZRy/YmuDOx5CmGew7rkBmuDuG7k/tAbQQxTCPDYXvRmY53V\nBmjSJyV931gPmk1KZ+2zPys6tgmhm8nz0W8+/xynZlSIP04juOWpdnaHaMvmcD9rI\nlSFnZRlRizKfi4P9NkacGldLjecesZ9YIm0GYGQ4thdjK4dUSeDEzFgPuOujjxNyc\nkso3JbSqHgesjc5to8j8O9z12rDpWWTt1iiIdYT2TWtBwhZwph9lP3rGiJBCggX9c\nFlIxhSRL3cpIZFHUYixXgaJ/5GZaejSfqmyf175iHSp8CwnUJabYTAXM7j4W3Hbyp\ngAO3kPsQ/vXmKquifGU0nBGwdQWcFuWrKkGeSIbQXUMxKqSUumEYsyQOkn3mZBY3+\npVIIucuYks3y9IScxV/l2SxOxaEz44Max30dAD6VDppKllfKaI5g6QxMbYNKZufcu\nq+3Pr786dIy0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:52'),('probe_url:1:https://friendica.free-beer.ch/profile/olivier','a:15:{s:4:\"name\";s:7:\"Olivier\";s:4:\"nick\";s:7:\"olivier\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/olivier\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/5b5f450b9ae0a7b0\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/olivier\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/olivier\";s:5:\"photo\";s:81:\"https://friendica.free-beer.ch/photo/custom/300/1.jpg?rev=2012-05-02+09%3A02%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzO6Oge1F0HGvpCGZ4Fvd1\n2+oC7s9VK4sxPwYjkSSGnxNvgJN20BbxUcyBlpfOXoB3oOEfVUariUbrpWqRfT6z6\nPW0J+qPmUAsDkGWeu1s1TsF++atB/GHozbAkcJOLqy02ElA3axd9OUjlFbiBc0fMR\nJYuPWQHYRdGVbVg5H+oh06hamQW0RUt9faAkrYtQRx19E3yov1tgu6AOPbB6Ua+ee\nQ8J80iFtz4o6WyZrdmuj40o3cfpEbGzlOaeBK0+Yk4bcSaAKj00Xyj4v9ORuapMwW\nwyhVQo08ZaiLUddIkXzBvjPTDiZ6n7fgZLj4hoBTQJa3dz/HVmJdBLKW/XmAuTHep\nzy3eJdvEt59Mfl3ZBKMxg1jtWehEwL9f8LJFrAZIUvWgnQ5jMIakTNXYp3YxC1cXh\ng8DuidcKf/G3ENRmR/hX4R5PzYtft5sCudRUHgNrdKfnUkQeNywPM+kEUbV+MzOtO\np3DtdYVGkqrzEV542zgYPI6+QDSpPxeTFNwMGMhGk2zqntEjCNKac1TUwQ9GY1Zcs\nk68vLfArcGUjdTKHqLFaz5w/6stGmzUr9ZhFTaz1OWqMbVEdov9LHqerCAjpEDrIa\nY4CnwHuBIdgSg9pQMegVAw/ZXvRScrDhYJeNrVbom3+x0CM0CNkBhepMgoVtnaTDz\nUnQAXre5NRTcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:43'),('probe_url:1:https://friendica.free-beer.ch/profile/opticalrevenge','a:15:{s:4:\"name\";s:14:\"David Mccauley\";s:4:\"nick\";s:14:\"opticalrevenge\";s:3:\"url\";s:53:\"https://friendica.free-beer.ch/profile/opticalrevenge\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/cceaf1508663be91\";s:4:\"poll\";s:55:\"https://friendica.free-beer.ch/dfrn_poll/opticalrevenge\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://friendica.free-beer.ch/poco/opticalrevenge\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/746.jpg?rev=2014-03-22+18%3A30%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2SeUZ2Gz1l4t1jtyD+y3X\nbUw7qljHT7/Qsas9GY0xBF+WPSN4K+2p2CpTktzROvXMzh2gUEohLKseQgJWAex/Z\n4M+dt2O2pEWU/ZMDHw0B+yygh6S2YblqBxonaabV2JMqeTqzu1eUI+0RBfY4uM8Az\nra7N3VTK9QQis8kWM503R3wwruC7pdLOxZlruO/xS/rlxdOUvRMggPXx2X6CXJYBR\nNjJx9KrTanQKKdp2sNrtPKRGjRHoq3/9wWeXfbCsrjti8io7PHXsKxZcdDui4y6fq\nikHTaoZEDIJ/D9W0AXxldfaiC4CRCgptDTs5Je3yjGzIdbNrOryqik2WQpk96OR+2\nyHHNH83dLyA56yExwpyEFK43ecmJOcj8sZq6oSnjNpZyH1Tj62cMdYrGgPkkHXqp+\n3u7QAArpHpR6fa2RrwaP4PMKTVDPxbpsdXHB2gsSJtkKK4DbYJPCo/VD1sNIeiY/N\nHWpBVm2xB8DBc9nvyhhhiJEBxWyuio9fgCC2zQNFTgSZU9cLq8lrP4Kl4we9DaXGd\nsP7/w9wjgaiK6cYapbmmVnciBBuX0qxvet4kIZCpVAmW9p6JiKtC7Go0nqxNQffy/\niLoYEf1+Zr5pZF7YrpOr2sNpz4ZQtAc9hEp+pEw0sKOgJaHsd6nKuwl/XCLOFAlWV\nqu7/zHcOoJW0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:27'),('probe_url:1:https://friendica.free-beer.ch/profile/pascala','a:15:{s:4:\"name\";s:19:\"Pascal Daniel Angst\";s:4:\"nick\";s:7:\"pascala\";s:3:\"url\";s:46:\"https://friendica.free-beer.ch/profile/pascala\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/9a7f0101d0427294\";s:4:\"poll\";s:48:\"https://friendica.free-beer.ch/dfrn_poll/pascala\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendica.free-beer.ch/poco/pascala\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/268.jpg?rev=2013-03-16+14%3A39%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsubP859FVYnrbWvRkm5Ix\ncuY4s0tWve+ukI4GgAYJGH98LRh8USayn8EjrZSAHEODFICm6gzEr3kcno8RNAti+\n5jp/ain9eZJlDUeo9vx+sku8sY538Xm0PT9rACVhHSz4ncrg5Yvwfp9bXvlpUDbO5\nmdATfQgPfbw1sxSroz4rnI6RwaNiIibZvy0SgPrYw3dXYt/7bKxZhMcAK587iLHPW\ndDMSHxaGhLpj/2IDLm1pHj2Pe/BlJnQ5l4ZaISW7TgY+8IJU1rkNoUNrSZAblU8U0\nUw2a8g4UXv+meIlm3E455kIl+AYd+qpauyCPC+mUA63hWeA/BtG3zRcADf9AjcqYx\nKlOArwHiwZoaEaN2/EQK1f0+Mfubn+R9lu5e3abB4HEsv3FHdVzlbxsokQVcrvgKF\nN+Q13ixPUa/cEPwlBbv8ATvWjODCzdQ4bxFi06Xl9PeqHk2BgRsWvbqMjsK/hZ7o8\nyRseTTq+RcFGXhQcJagkjNHRIZQRAXHgxVQS97OaMPJFVOGK6g/rHrUyVPhUMTHe2\nJfdhz8rPOV6Gd4pnfNxMkMpzlc3sHBVJDGkKYo1iVymGrbgJLnKBvZATQWIqIFA7D\n4bN+/cwqOHBAq08ddc+uIyb1p+pKgSKCReGa149/BuAMu5bQD1eXM6fYFWzZDqQbI\nfa3R17pQzpfMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:08'),('probe_url:1:https://friendica.free-beer.ch/profile/picaflor','a:15:{s:4:\"name\";s:13:\"Picaflor Azul\";s:4:\"nick\";s:8:\"picaflor\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/picaflor\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/8a0b12f9b79a2a3b\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/picaflor\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/picaflor\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/549.jpg?rev=2013-09-28+15%3A36%3A46\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAu1s27SynM8IjcZVZ6ZZ3x\npPeT4DnY8Yn0AqFEhKMBQFiEZ4aJPS4XooLQBuqhprq/jk2csoNZNnyCE9T469TK+\nCEQDbtY03sin+Qq1Q6NQ/xrTM/t9IR2lPTmqU6+i+ubHy19p6baIZxtiSvLmvfBUM\n9LHYfF3GPLcgbclj8eC57QZHZCSC2TsLhGYk+5hKk72caCrYfD+1gw7HutB+rl5t7\nHpgtlsQmDpg7K5xgHRuIHNkQcIc+LwrbXP2bJzrEuMCHbJuW1puM0L6xdMZizqVN5\nxiON1qCuSbAQCIh5H1R4LakUQ6HSNQUw6gp+ci4HDxjs/QQnEQgxQWtvcdqJQ7lYv\nJDVePJEpdsZ925GSI8+v9V5YH+/2fiNkyNI3a0LZ400fH8pHJUbZ3jBPEdgo/kVsg\nIBxMuTmEIRTbb2FESttcMZXcnXAmtN6c9bNFoJULNRNiPnzIGlUuO419xV9BXSQ48\nLYzwZ4jtk0z5/hbvKoEi9wB1RjfE6cYx+HvvT0hkD0G6F70eMA5q+9dfS6ym6zdFu\nPlPZ7sdP80NVR6w9XIzIGIkjZ2YoDMhfvwfj1z9p7y+qMicTa6+rmvScVPdbo6VDK\nTlHPoB2UwXSfxBSJI350aazYdUHVsFoD2aiwEbLw6gzEtKgEikDy4QQTlxaylK6Oa\nWICsGW52gSnMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:13'),('probe_url:1:https://friendica.free-beer.ch/profile/pogonator','a:15:{s:4:\"name\";s:9:\"pogonator\";s:4:\"nick\";s:9:\"pogonator\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/pogonator\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/7d03007b5952caaf\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/pogonator\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/pogonator\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/396.jpg?rev=2013-06-22+07%3A51%3A38\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAnTo4Ft860rkvXsajQi6TH\nQdezDt1voLi5Q+UcTMq8kYxwo4CCfvHwUdXE9sD0aJtMtTln7gk5pBiJeXs5EAbaA\n+kffqI2svQkxcx0kRBQJYrCp03G9LXJR97RchKm6WAz7zzBDr/ij38sW3WBY0DCrE\nMCohNtmokeiBiYRxMWag6GIkWgqlqBTWo4pTGbcImdEJVO7eyQN9SJkhys8Ts3i8f\nqhP1GRUIWAb2qIVeRG7X79bdkNS3lMiDgO+uCfS47ftYUgoMwObEFcJ8nyAgdcYZA\n6xehEO98njGjt+Js6uBiOTAeM8tGYwboO0oQx6/rH6IDLlmB42pGR/Hyu+tEODPCm\nydTelHJG2tP0U9SJl0+wWBJnI5+5lcPJg8/NioTbr9pLoybTlokmzKa2d8bFVdtCD\n3bOX6wIo4ApvkZYsQGEauhrIeLdeOrpbkL/JXV2vEyGeV/mtSsF5wdTvUIrQlPHkS\ncRmR2th36oeenzWEZNBYQWVxusM1Yqrvuz7yOKMt1H0GV3hGn8XoqPS0F5zA+kfGr\nS7rzENYjAyXupfI6yxRmKn8qedPbCnYn3+4tkaQ9D3SGhpmN6C1C4YHxiGW0lcmn+\nV0cCIe1H5m7IKWSsTkdXqd5bvEVOkTw01cQ7ggIcmm4MFhY8onLk78Lw8Rx4iQBaA\nvxW3RCYZRlkECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:44'),('probe_url:1:https://friendica.free-beer.ch/profile/red','a:15:{s:4:\"name\";s:15:\"Redrick Deckard\";s:4:\"nick\";s:3:\"red\";s:3:\"url\";s:42:\"https://friendica.free-beer.ch/profile/red\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0649e46fe2debcc2\";s:4:\"poll\";s:44:\"https://friendica.free-beer.ch/dfrn_poll/red\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://friendica.free-beer.ch/poco/red\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/724.jpg?rev=2014-03-02+17%3A12%3A30\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxmUEdiFPPbD2qr/zYpRuY\nMMChpA8xzby1GMvhL1Zgq+uetJqizH7F34WKhHEQjN6Z0j636B+TYXZcYQCyrRs+b\ngF/pKFJb16HgwHqj2lyJpf0+oAmM8GW3GqR1q+f2bv1CYEOlNLEqNv2/L/m0gFl9l\nCNrEmhuC9EZXCnC1Q2tHwU0+bE3VLMfCGzy19q+cI/AaNnHrAFYD1Pc8D3UhMJ9Fb\nwXpE/wNs0qZIphlDnrc2y8n+uHum1htSKfyY8xIq/1lhN9Vlkprlmxepob61YiDOX\n3F2JEazJ73slICRbqXP4nztefTJoTq61RXvZbYDS3w+4chFYb51a4A3lCqI2eA0Z7\nksINMrTuvRzeUBio8V7pVTyqjhDPo9hrzK2fzwA0Xt4u1Wpaswg7Wl+lwB5K93zH6\nna8esaQ6hjWaBnDhW3cZzjYYU3nlzxFRmcWzEalrAWGSJTjOcexlnXJjfbFlUSDpt\nbdsU4FLFrX3zn+OvOBuO6LeyJP1JHTZTIrjreJDAkby53KvkFiXS+t1cMDCD4/Dhd\nJ8eN8jrZJUghiCFTjFViBp0GL5PcEN6fWkDXd/RC0N+i/rHKk5X03HFxLfRlo8v8h\nC7MqaaPHGdEJRh77d05WQqJFJlsXw7idJo/CeJf8vHBRWs1v3XdqEgYn3dqlg+nIg\nq16QdEkdDU00CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:23'),('probe_url:1:https://friendica.free-beer.ch/profile/redleghorn','a:15:{s:4:\"name\";s:12:\"Romoli Marco\";s:4:\"nick\";s:10:\"redleghorn\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/redleghorn\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/7b9e864d95745916\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/redleghorn\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/redleghorn\";s:5:\"photo\";s:84:\"https://friendica.free-beer.ch/photo/custom/300/1270.jpg?rev=2014-11-26+16%3A57%3A51\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwsuFAfdoCuA+7lcvE7Ld1\nqNJ6ANPBukYjv9Yi4yY7pKNSr8pFlnh/CfvTjwLPyuZtwV9a7G3TbYPfrNg0XUpyd\nMh6Q4wxXoxjGwb7j/T25ZF2oCrN3ux9jv0/OGWUZr7afWc2E/oOtcYkyw6O/Z2Q59\nQl0YSoWbT9X8STAODFFniqqvG2omanAsdqfJQmkUlSV+KWkxKpuaRk39bMD1jrTWT\nvYRyzfL73srsHHPpaMKgQea3o42KI4auNuZYeLy6jCFDtSIqtW/Q32+0QObmJ6one\nNkvkFiekUj8alYxkSdm0uU0+Zm9CU2o7j4eGj3+d3+KJrCsp4+d26+WSV8g0pJvQ2\ndVDtp3AL2olq+mMMYecavdePpkbo9HltWTSF+77M1vA1ovaoPqcV2kz2hilNLtWwP\nSIKz4+qPnD7i2QC4Pvy+CBg3YGO66L5Rf0idfwNqKwgk8OvsIcvlooJqnp9zbMFWT\nIvvoEezi4dTNnJXsKUX+T1r2H4S1E6KZzk+VsfM+SQVhYzK9YvT59PEIYM3xXpjlQ\nkzg6cUnxrjEr/ebm5xQKNidzLOtwW8+fF0FtKrzqrqJ+yeRihMfF2AR7MfYpi4e/H\njz1mlNfArZ5WzKU6uLjKfk71SeGizo2xFYarFY5/7lmxccDf5cYLOneSDd+iMim4R\nUKx7ehwH3i2UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:32'),('probe_url:1:https://friendica.free-beer.ch/profile/robrob','a:15:{s:4:\"name\";s:12:\"Robert Bonie\";s:4:\"nick\";s:6:\"robrob\";s:3:\"url\";s:45:\"https://friendica.free-beer.ch/profile/robrob\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/380a0723f8a496c0\";s:4:\"poll\";s:47:\"https://friendica.free-beer.ch/dfrn_poll/robrob\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.free-beer.ch/poco/robrob\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/138.jpg?rev=2012-09-07+17%3A57%3A21\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyTQZz2ttNtLN1Uyoitqk2\nGQ25PaTqpP3gBClvTP+l6Wuw8R6MtK0cZlbwTPEKG0fPXaYGl3k3yas07Yew6a40X\nHe+62EM44vAgBvmgziFhqdDIeqbwiDJhzn3fgI2E11hKr7v8hUSnHiIDF2EoyGLkp\naAmrgUUjukJcpdBMY31PGSx8UYK3U0R04zncQqhlnT+muW7UyAOuPSVT+3/qzXseo\n5lRwLVBvWj6w7+JTvT7wbaqVOai94E2zk/KCNYDJFZF0CAYwoj1ox+dfEe+VbxK7C\nhOlzb1dgvQZeaGzsbKHIKksTm8rYVT1RDKq5Q6z9IREIJ+eQZPThrIL4WDxfKJuan\nheNx+FACKKx3pHYVnEr8Nz0lbyNnm7cpONHgzCLFWmgAFP1Sb0456rBqrBgbwO0Z1\neM4Uq+SN1ggF0lROjy1GV2lg5s0QQMdxOPUF+s6kZiBAnl98VJiy/me9VKQSTLCE4\n0BtPRq/3iQQPQwWXK0UHb2ETiBS2dB6/Xza/GiCISYIzU6A+wwVq3cYeuQhMUcPzR\nK7E3zNLPcOxpKssbFn6h+6FKwp1N2UOi/cvjV4bfWAna0cijd1VEk9MyfteCjoXIW\nQWNEuCIbAnDawz5uJgRherWG8epQhH8hTOO8Yhu3N8Y3IDhfu4+plReJFB9AsuCa4\ngyTdoBuBVDdECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:57'),('probe_url:1:https://friendica.free-beer.ch/profile/rufusson','a:15:{s:4:\"name\";s:14:\"Fergus Ferrier\";s:4:\"nick\";s:8:\"rufusson\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/rufusson\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/a6a268bad7ea78f3\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/rufusson\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/rufusson\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/146.jpg?rev=2012-09-14+01%3A11%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvFM+RIar2WI5j8CgqI3Vr\njp4QUNJ/TNsTNqa+3+sxEC2JMmRcSeeF9vFv/C74twfbyoJii0ujNWx7cLSSFNBSV\nCwUUxI8rQpSlYVqbznu9Zw7Pjwb6n8sYxLAR8h6qeuE7JiRQWhJaPmFBXi/VqHQO9\nKCTm2UYqXkl9fT2VaYCawjoIyVmXHKlHUMG+X+I9nTzWMAEpayQexiUfFilIo3DpQ\n4awdBut8+sKNUO2Jz8GASNDgowuOKGDT+rn/yGGbsUv4IaUWMv7ujI74+Ia8ZvsMO\nxeFa+A8GkVZnz1Ccss2DVMYTP/FcwJeJz3bJPFWMBIVf1NVPOrPt0RP1D3CFhi45Z\nD9OVG4jRLQkk/qtcy7AelvZ4R9y2Y1lIhSxtbhYXCNd7yeTuqfZ1PFafUiSx007Rm\neCV3ByT7Q2bhmw63D9luycaewk9FErjZ38vp77guSuaLhA0mqcEixGKKWGSP8vN2F\n1SZ+hTdXYVpUo6fsdnlAxL3w0RjYn3DOmn8iINg+bN/cYaGrQbdA6k+D0wytwX4r4\nvAXeYD2oeBzfDK0MrR3T4o7aYbumjtdGkjtBDLKv1JwcCp7i6gmOkFP6BIROLCWtL\nH45eMwNkO6EfxelueNk0aDa0JGxNyrP75cIfilhTVLoMAT3PIzqg7/S5C5O8q5GcS\n1bGsqXLtB5f0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:00'),('probe_url:1:https://friendica.free-beer.ch/profile/rui_miguel','a:15:{s:4:\"name\";s:12:\"Rui Bernardo\";s:4:\"nick\";s:10:\"rui_miguel\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/rui_miguel\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/f74970a82e224ded\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/rui_miguel\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/rui_miguel\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/729.jpg?rev=2014-03-05+15%3A46%3A11\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6ydMDaStwKPZiQsc9DmcK\nyJmi7IQ3UfaLNvpa5z5wNPD6OqAh2kmionXW7p/EBypEAGBPEmGiVBXLi60ncENh3\nUvQp5EU47bRAxIUdMA/s8sHyuova8SdKMHPn4HHpS6MLY0yo/zrvjnlky/ApWhelW\nOPVCWHkP5by2fruLc6h3oHqTVobUHopPZ5iBgAScHrguhAO1mzK7UQCMqDGPvwjGI\n4snOiXM8k5Z5VEOl0LMpWfDfzFzh4LUhuMwcsENQx/AS7F79ncrIhdXM14IQouhf9\nfaoXcgN613syZy0SgrZiH0sIBBUO4OEnetSsZevqXOfXm8Z70QMss735KeMvPsrI7\n8a4YViXuiXmABue5bI0ohEzp7ZN5wTaggB4KOTcwU17L6E/E5tbEgVQ9MlHovccV3\nYWEd47N81r0KPHR3AmTg2l9z6A70GWbcohLlIVOVM5sGPOYA6yocCCMBsyI5HDfMI\n7xoJPfz357sU4wVpct+jYWadVE98v1UfUUeJ+gC2EAFm/ObUH32jt/U0Cpbpeh28Q\nopMHrzhBW+rHMXZNxOmE13oweECv0C8Io1Lya7cVCe6CAyV75A9gakW7jsjgXPgHp\notqOPr7fEwhma4mbO3M8GAghNhz63tFiJi0FdHOa/s/U/YjejpQ8ggBI/ptIEMXnE\nq/NMevrJurtUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:24'),('probe_url:1:https://friendica.free-beer.ch/profile/sebasped','a:15:{s:4:\"name\";s:14:\"Sebas Pesersen\";s:4:\"nick\";s:8:\"sebasped\";s:3:\"url\";s:47:\"https://friendica.free-beer.ch/profile/sebasped\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/e3d4b2be642b476d\";s:4:\"poll\";s:49:\"https://friendica.free-beer.ch/dfrn_poll/sebasped\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://friendica.free-beer.ch/poco/sebasped\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/714.jpg?rev=2014-02-16+21%3A33%3A10\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6N0RIns/qbzVptEUGlIQn\nYLo/M5CtU17OKagH9AcVDhrhjurAENotrs2U2InRtLFc9serbGInlNCxEmbVBjDON\nIAyGxG9oJKrLhOG+3xUtCX9SEA/lUZtC5XR7t78mXqtqsYW0LsM7Gd7+37gndEyPw\n2mE/M4z1Vo8UHrS+roVFKrkJZhY5NZzV4chjG/SbDBr2xaaHGSDcyIjQBKwu3NKlX\n8tGKdxskV4todjduwNVj5ygtR5VGWE0h42NPuwE9XxN1lOCPWui7hYwslAz0UP/Yk\nSwImt9PVJWjmuzxo8Yt2yKvosoLCDB/VEN8XilG7OOZkwLQGWd6ZY0Zac9UpVNA4O\nHPmGPHI07QTjltzPRshDP86rDS6HITWOMDZ+KgAWAYnZ/g7jd+W88XbbYLxGur+hO\nvAU5TjhY5t88zWGi3q69A0MxyFDHlHeuUf9BtzrdfBblB1Jyw9biVwkw713YXDJ5Z\nb1YGbtjvvfvxQyyv7JZP/wNHEsy4l/hQXCasCi9g0MKtm0Pi5jmMAY2F6TZdhxDWj\nyBHAcLCThbMwlA9rscQEVEEPdpCW7dY9qFdDrGTk2ulCuHG5Hl3hWRgMAYRCgF1qg\nvWNmFICDsxY2+T8Y/sxcI1yg6a6t9RvlC3IeKlBWbWZcXqQa6lmgPbKzmC8qN9qNC\n2BKOuf6DDQCMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:23'),('probe_url:1:https://friendica.free-beer.ch/profile/shiroikuma','a:15:{s:4:\"name\";s:10:\"Shiroikuma\";s:4:\"nick\";s:10:\"shiroikuma\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/shiroikuma\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/0b0ae0827faf6fd5\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/shiroikuma\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/shiroikuma\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/334.jpg?rev=2013-06-02+09%3A59%3A35\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0//dYC6puchRRtmr5N23i\nSTwrtb4I1z6qR9O6BzofHLpWL4rgQ4O4cO5r+3RLUmpgo635Z1QzTeGHSE6YjT3Zh\nG8elSEUR8Ca20OAPpd4wnzcWyFPPNLQFxyY7D13hfIlyoks8C+WDppulRvUv2QJAk\nHirrES7pjxZFaxsgPTV8PDqtfCY+4mgctn5cDMDFYcl8VxhJpOWYLbjmegQJY2YKz\nzCOxRTu6xCw/93KvwXbYXQyDauy6tInsBmERUAZnLVmihB3e/7UDKCE9WVxC9ucpT\nVtmnLjGf79gEmI6u95ge0mEDaoRyzdnuW/Il43H4jNCVbiwYCjAYSY3ZZQ3jw6GyG\nMy7K7QaQ37LskVYCgvKn2DbHt3MdIWm7vw+XmtaJ2XtFCoq9KQBvQqgSTXhNSql1J\nKxNqQHxrlElj+TUS3MTJiyoDEL995m6oFPzBLWhFw6o68PwS4SRxjI7vU7Z8nRw8R\nAuNH1qNBwBOrSop8DDckeb4wwTKzLUKDTbUyJcIQzetz1Y529Rqw6s6kW4OGQJOJy\nHF4H5pCSWQSGUuG/EeOvAoW6NIx+w6NebFs4fGmSEP1kG85SasadIPHPFBWQ9LM7/\nPz4Rd5+gsomZuYXxiHh2gTnq7GlLsVwDqPG5RTMwIZXeqJpV9JUwpj2y7nHCM4AjZ\nDdqDcSBDWOE0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:02'),('probe_url:1:https://friendica.free-beer.ch/profile/snapdragon','a:15:{s:4:\"name\";s:31:\"Bodhi SparkleSnapdragon Goforth\";s:4:\"nick\";s:10:\"snapdragon\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/snapdragon\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/9834f5764710a04e\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/snapdragon\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/snapdragon\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/494.jpg?rev=2013-08-15+14%3A51%3A39\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0h6UjlyAUWxo2V6lU7ZUo\nnx5TJVB8yop7pXvclh7iznyiv1YVKQrCWkrKXh8iquX9V5tFL++OrnzblYxkc2bWB\nPiX1hxeH2pqvuM5hHHe2ailYnrbuPj5+OFXMu9Nt3DgAobplUPTOjkBZXyaGhKRPt\n1/jlOpvlEr9p6ZYSlcx6n/xWGnhxTSK5htcP4RfPYz1mxFX3JrtdGFWvg6tD4jXUr\nt1itnW66Ohn4KNjHnU7S/5a7mT8wryavmzPsYHo6DgvTMOHdaSAgwN90APZmr6xOY\n8p8uijfN1l75ie+dZ3uk57siIW7S49XVhX+7CccEUVhC4+U3OVkKGo6US2go2o5jD\nt7eI7hWGH6Ds2v5kNwQ+fAovAWdZSRGwsJe+ipMUnzpbmDMpMoMiLSA9Qq/kWHYSc\nVTfhZAgNsW/XuEXnCYcxlJKypfq56cDjVBN+qZG3vLwSicQwW0S7pQf8D0AB8ymlT\nmLZ/WW1S7AuQUmwjw1NA7eJRSOz5euBpAt+rSRBvLMJlnL1XxYnpg3Nnm68+Dq+VC\n/Pjcr0/UGcnRegftvpoGSVFCQgwhag6otismAjqS+9nTKm9cpxRUFBdJxtIaB8wDu\nxRmAnMCG1thK7Qrh7UkltFiNNYREqP0yGl9eCEA9pwgpY70YBSIhN5qSEG4u3HAZQ\noXJe5fs2iZTECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:09'),('probe_url:1:https://friendica.free-beer.ch/profile/steinkampf','a:15:{s:4:\"name\";s:19:\"ѕтєιикαмÏ\81f\";s:4:\"nick\";s:10:\"steinkampf\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/steinkampf\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/d3ec65e4b5e78eb5\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/steinkampf\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/steinkampf\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/652.jpg?rev=2014-01-19+13%3A36%3A41\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3S+IqfmT6Cv9xrEvNcsj/\nJQE492FEP4YBEu+r5LoGbaK8udElsEsBFidQwmHkvB+4SnQrSHv6tuNamT0IZTMuW\nrCBoB2Rrv9IIyO0gdJJgSSEncb+XLw7Nwlwh5wB6RJjYADfAXt/BOC7smNo5BMhNn\n9r7+TUDuwJtJjqsXuhTLilEkJjysXPE+imhPIVq/wPDvwl82wlqemz77gkjGSj7jE\nND62PkrMG/6enZGHgPlqkg7VBcau20VpRbz6OWBw+qpQSFkr8QHYAFQ0mlAuooA20\n+kOUvxS6dDdpv+TcRG5w6ZtlaQZxbJCEPYenKQzLZ8/chEiSNDTtl2N/pKrYgLKUl\n969l4WX9kTx1dRCLqoaOQzJIeP02rFz/IsI0P6+/sy3AXMlA27bVk3P35X+5/1tWO\ndAE/sm7kwNkjbnerVwX1mg5RCeL9ZTaTPQmKVlOBL0ngvqD3fBq8ZREEKs32OqGeg\ne/F5ovLZZMMPHZexV/gZDdKG16jxGIKgS1pNo1bhk8yVJM1FeazxP7DP9Bvi6gmrq\nilYu9noFV9rv8IUOlSx9LEk2iM6d9w6V8scNk1MjoKQPpBra8ZeOHJCaVIUPNylVD\nLBcT1BFekI3Znc4zzSKFdu/92YSwsW2bv8sP0iZGgtmbdrvvgbhUGfLc2YJP1+Jwu\nrgk4gjgoTu4UCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:19'),('probe_url:1:https://friendica.free-beer.ch/profile/sunsunich','a:15:{s:4:\"name\";s:10:\"Sun Sunich\";s:4:\"nick\";s:9:\"sunsunich\";s:3:\"url\";s:48:\"https://friendica.free-beer.ch/profile/sunsunich\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/360eb19714a3c7c5\";s:4:\"poll\";s:50:\"https://friendica.free-beer.ch/dfrn_poll/sunsunich\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:45:\"https://friendica.free-beer.ch/poco/sunsunich\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/337.jpg?rev=2013-06-06+19%3A54%3A58\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAoXvjGQlnrGB9iGYlXc+2L\ncuKGlA3PSPbrFnF5TwWn/84IJQVg6IRUgn0PTmi05XY4fzr63nyLzK9MJCbnlBddw\nvV1r/GFvLeHrKRxYIdq7iHZ0yZFKfD4TWUDPrsSHIuVg2l1N9DuVuSRYnwo75sske\nQRzSttrBL1eifbiivajHKOKoY5fOtMBaytYVwrghMHXXx/nFFoFe9TXUCzhIwxqxO\nkrQVK2k2ZtGJyrQLPxY3R92EiMYKOVcztB3y6qPSATePAApBiueZApRCkXCISXsHD\ny8x8W4vEQc+yHXmYX941oM3EtrX0jPUQVn1BigFHDEzRZTDijGvqm53061Lfu4ESN\neKog0wJwvaqc4xTbrFwTK+8VW1+Vx6fMoImMYv4HTgTT+7a1e9TiqBHb5b+GdhFUp\neg/dPYkQUgRPBvvXOWnWEAiej/fsycn/cTwtIWvMA03nADo8wsJho+QscrZZh81xc\ne5dy3H/HrgqpogA8CR21mZ4hxvruxjiF/Uv7dZEfPNIpBSDOHqqYi6A/RDwrMKiSp\nDkuk1curwDYtMS+UuJP7hiWWvkghrm3i56KNu9OHDnWvgHswQhxD8LZR6kjhLW27T\nWLfy2hYcF2Mq5euhqhYbQwu+gbcnFV51z/CnhJiyfraH/z3E8umC4iEFe21SaqXOC\nZvNm5ov0BuqECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:48'),('probe_url:1:https://friendica.free-beer.ch/profile/temsa','a:15:{s:4:\"name\";s:16:\"Florian Traverse\";s:4:\"nick\";s:5:\"temsa\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/temsa\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/be4b2b5485f201ae\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/temsa\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/temsa\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/548.jpg?rev=2013-09-28+06%3A16%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAs9WQTD2qYDNc6c8HwJofI\nCo5qoC6Me3SOpV8WbZXwFioywAjKqpGkfZ6acPFQ6I+3QTCN9Gx+WSGnaV+b+w78t\nQbcrcO7f/SeQpvzVcceohK2BSSGIduyONXsMH4O9p3erVzO/cZv1//f08Cat5zUJe\nSLPS1kFUxaLGz4ugKegjVhmYbK0a75rKnoTwBJZAiuEEL63o+qj0WJ2OcHVKn1sxz\nBVF5ex5vEn1IcYkalGxiG9dDgi5+VB4otedXTDKVwmU2Wg/VZpqikZOSfSGk5Qs/d\nrpXRmQvvVYblsmOtpOTKoq6x1AaK0CnMmYvDSSIrwODbpZu/FCNKLEQr+xQN/5KnL\nvAg4GVuSjCGMornE2kYW17QElsPbsSitqrkIiiDgqMq3CxX92LPcvW/oR80AaXd/B\nQFVZ9/bBqXKwo+lTU2NVrqwyecrDcopakQh9HqiLlVlke/MH1gLeqgkGjukyO6voP\nacXGEqFs4lD5f0PPpQlMaSA7zh1j/nHT6elxFYhzJAYkVNW1wz6FEkD4r4QPifQMy\nLI3jbQO7YwqagwZczfdVSW+yB7RM73lHGr92C0XOWAoog52k3fFD5K3JtkvMf8rvk\nSNHILMeMsuZG+TALNtbjukDEf2J+sBLgQxQ3cTbZLPzFaSG4W5OHVcLmYW7WwCK7T\nELCHO8aJbIm8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:12'),('probe_url:1:https://friendica.free-beer.ch/profile/torsten1968','a:15:{s:4:\"name\";s:18:\"Torsten Schilinsky\";s:4:\"nick\";s:11:\"torsten1968\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/torsten1968\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/1afc1759c98d2467\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/torsten1968\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/torsten1968\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/107.jpg?rev=2012-09-18+11%3A17%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3mRei/n0ebC8aG3XAGSm1\nPVpotAhnPIYCgzS2qbVrlmVhtz2YtnbCBX7TudLxvC9f7war5v7tmEL0Tlex3pdjN\nDoZuj1DuRV1ClvocXNhdw7WKXsRY/zaLlSK+XTrJgd10QCo96yEL41xPmsvTF60so\nc3DiMc/3M7bjJIaFYvOyOtkZymebmNV5MznRzxs2q5+7DY3+mXsUfROOJOXIYfTeq\ndQ1DLPU2gdP9Q84ZohuBvtca0aiJTkZYkrsUrVRcBqjqJ0bJeLdJjsV2tW9S0bE23\n11S96TTOHxiLPF4Ae89G4bxJvl+0wkXS6i3vFHW3gdnFsuz22BoiC8VMq8KG8Tz5D\niLmf/j2KLNJ0J4oQ3qI9JVxXKyCFHuSYFwLeuMc320uA5hmadkXxxjSdx+KaVE/xR\nzQ2nF+vjY/22l8RWdZRW2PzNoKOk+p1reZV98h1AJyqxcsuGIQu9oUJgrKKEvtHdv\nOINP9+vES7BMpZKotMjUQk3p7nwUzuCXpmzBU/tWWDzA/XKxPu2OPSKEig5RghXC6\nHvshIiSB3ijLBkw/IBLC7oNQKMiG8pspAPpj/HtLfhviDYfZZmIOdyQAp/cFXbjwQ\nEdkRqOUvY4lWO0kXOpCKCh0teqT5B3koxTHASZDoQCar+NP3paQP6zcQ1bY1Seztm\njxMV38hw0gl0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:55'),('probe_url:1:https://friendica.free-beer.ch/profile/vaugs3roty','a:15:{s:4:\"name\";s:12:\"edson duarte\";s:4:\"nick\";s:10:\"vaugs3roty\";s:3:\"url\";s:49:\"https://friendica.free-beer.ch/profile/vaugs3roty\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/9615a042c260c95a\";s:4:\"poll\";s:51:\"https://friendica.free-beer.ch/dfrn_poll/vaugs3roty\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:46:\"https://friendica.free-beer.ch/poco/vaugs3roty\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/570.jpg?rev=2013-10-13+18%3A01%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtd/GlFYQpyEoFDaGK4Iv9\nmQdjtvkN7IYNV+w47ZPgxP+OL05U24wwPmqS8a2NZzFTgTXjYThIeOns0JSFuLk9u\nqH7IZnfWkRi5BQB58/qzeCgtEKu3YZMrvIOBhXpRoxshQK2+7H3eN4WHkBYYa5QVj\ntnDybcD2UzblNVDdIMSHEAmMFfrP27wdVMpqg9Xmh9JI4iQFY8Kf6xvBlc3gkP7yG\nPK7X2HhGMl5BCp838Ql/6rRuTSH7RjS/UjEN0tT/ZvWmI6ghU777lcCfWIgrR/N4/\nhDA3jR8jc9YtomCVBbYzl5dQHrr67IMybIck50FkntyW8/yKYlTHe7oIGow7edMxa\nx0UtqOYBr0a+Uu87kKWTZbAxRStNHHmq3Uo4cwnWtBJlGUOIS3LgnO/h4bOwmXtw9\n8HMoVOxX3FvHd5osH09G9TnMc0WXbIChzaXlrky2sKTrsqUVfCVOCAMARkZYbuMAH\nry8GBtUEvNzkz42Lbr3Q+Ajo8XDG/fIlzf/LdUwf2wWh/h5E8LCOFNiuZLHXTWKxa\nAQ8ZofK22JOD4zH2TSQWDBrdf1dKUwTPMk3hh2RS9rjeKfceGQFeb8Zf4mueLYSEV\nVCdXrObFyGSk7dJjyNYNGk7nu4ytlnMYTDwT5a6BVway4a6u8zgocF2LywWNush4g\no/L9hhGHqW7MCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:14'),('probe_url:1:https://friendica.free-beer.ch/profile/w2bh','a:15:{s:4:\"name\";s:19:\"w2bh.- free-beer.ch\";s:4:\"nick\";s:4:\"w2bh\";s:3:\"url\";s:43:\"https://friendica.free-beer.ch/profile/w2bh\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/737fbb1b26914edc\";s:4:\"poll\";s:45:\"https://friendica.free-beer.ch/dfrn_poll/w2bh\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://friendica.free-beer.ch/poco/w2bh\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/104.jpg?rev=2012-08-15+10%3A52%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt+9nHtc1JTMK1l/Vr9vTA\n+Y2RpBfnYQ4K7REdo0ZzugeqXOxN/Q7tUuNep2kvy5LlMOJj+1MtWH7M5oeuAgOuC\n8nOq/NrzRn6GNxLvUeO+OrRnYT4Lk6HFu10WlOF8gsbufYayyyyJR+bnD4MaSaE3J\nh93SqyqSEmNV5eC8ii1DOA1hno7Zpfz0gQrzhrrlr5FKxGDkz8sGbTxi0eY7Tgale\nrcvGMAO8Ukmwhvy3kCdCPxAxaC5bEMBmSifhGiGckVW9rpQnLtL7MCfFh/OkTQ6ig\n4jfR0OCT+2hiIiNFuJHFGRm38/MOhnvXAaZfOGzcqYMyuQEahV0tRjUwLplXkj+t+\nj3eiUqleKP6StLDCa7urcdpKoLUO9/920G+FOWWdY8v3S6zEDvH41UNAnFkZv6I5N\nc01lZItbH6kom0Mm/79FYvMMqQh+dCckRUYZjOiOde5CbyTW4ljma1w0Lt/YPxy7P\nzhnSydRAcWoIzSemYJvYKtPGrhwesOxj9Pz+XGh0Tv7KzS84dYr+U58MgijexgJmu\nmm7bKQL1qJ5UIoj+yT3BTKzyisagP+POijPR/tec36D+zvLIt4KKSFbR6YXm6UiKz\nqVJKTH8g0Xq5BTcSVSz+yrtu8I4CGP+bjhm2xbMDw+CZCAbFo1hwhCjMdXiUud88j\nrEcUCSnoLZT8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:55'),('probe_url:1:https://friendica.free-beer.ch/profile/xurxoventos','a:15:{s:4:\"name\";s:12:\"Xurxo Ventos\";s:4:\"nick\";s:11:\"xurxoventos\";s:3:\"url\";s:50:\"https://friendica.free-beer.ch/profile/xurxoventos\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/d2b4ddd0929993d6\";s:4:\"poll\";s:52:\"https://friendica.free-beer.ch/dfrn_poll/xurxoventos\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://friendica.free-beer.ch/poco/xurxoventos\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/412.jpg?rev=2013-06-29+10%3A07%3A23\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuVBMOSFi7Pak4WQQ2HwJ0\nmTAfI5YZ6gE6IX4/o72tCqtnvJ3ZYQZ3LBRS8/0Ry7ehQ6c43M6JJJlqa7GkgbXmi\nLwHAHWwd9FDzHTbiLb0juVB0jfsxbq8vkX/C2oQfwM7B9i+ivFmhEjQhO95F2eCdc\nJsE0Or9W4QOEm2AZH3CZLdTaZruxFfzUtSw21zuY6gPDckcGy8Eq/Lmhurc3PoYhB\nWQWaNUriL3IXrlkrxzgHfxMnEGnqDBvYJ2Pqk+F4NBD+9eCLQ+N0jMRExqGZyNS/h\nxIn2XV+5vBGAxhMYfJ8biyX1cp6sqHHVxkyZXYFkV9rjPlRK8jMwbyVCFVRfoVXsQ\n+R4Cw9EcE1ebTPXsabe6f5eh/zYpSsvNvHUX/3C+dbp8XVKjwVzZc5aRChA7p6o8S\ngQQUQOyK7gmJ7LIJR7aVV6p/iLuh9j3pEYe9JL16kwHyzni3gDWv7A6O/AznTQ+1M\nhHN1Irttscd5fRV+1K1UAvEYKIE8QlHWBF0Ya6qJJKVy3ONGK+D1qlZh0iJ3v0gIO\n/y9QnfZi0Y1tPWqIcEUo51Umeu89azPzSdrLvIfpIZ5ZMhB08sOLcicQUWNjCQLsE\nK/ipuIHgS7U+dRfNj/l/9uoEPX2KcMWLMHReS+APfIMU/tseIe+MWcR9ex/Vqs/Xw\nPyVzu6EVVDtkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:59'),('probe_url:1:https://friendica.free-beer.ch/profile/zebra','a:15:{s:4:\"name\";s:10:\"Armin Lutz\";s:4:\"nick\";s:5:\"zebra\";s:3:\"url\";s:44:\"https://friendica.free-beer.ch/profile/zebra\";s:4:\"addr\";N;s:5:\"batch\";s:45:\"https://friendica.free-beer.ch/receive/public\";s:6:\"notify\";s:61:\"https://friendica.free-beer.ch/receive/users/a947eec04f59b8d3\";s:4:\"poll\";s:46:\"https://friendica.free-beer.ch/dfrn_poll/zebra\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://friendica.free-beer.ch/poco/zebra\";s:5:\"photo\";s:83:\"https://friendica.free-beer.ch/photo/custom/300/612.jpg?rev=2013-11-20+12%3A36%3A03\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA1FMq1E9w3UjAE1plu8Clb\nt4P4T6F6NYv7eWZQ+xsjEQrEv3l/FMsiSru1Z7MhO4DwhNxJPngrhkt2sI7aIWArb\nmTmhEqxf3WbIH36cgFNWBA/J9K8CkQu3Q1N2xk/25ZY+JDGMJJwKETSYG60KZcfN7\nw60EwoMQXoNCnj7VeET3snblRO/EAFf+DYhHIBQ5H7NlCLW1D4tGrB2Sctz6jcYyW\n1nTuzPeEboJfzCCB2BM44dPlNhlROvPOcmQA2w/G/wU1/aooWWFFRt84TraOrcC1J\nen26LAztONNn64W+wg/Zk5y8uzXurZkhc3R4pi52A1VOigi5XMhJ2xxaxEven7wbH\nPbCp+IFFDHV9ikvADoVjxzTqwCE5+eB+YIsoPvmiRhJv9PvoyeMhnpQ/bR2CzMH4C\nqaWqi8ePn5djQ5a1Dp4AQeI3YfJBccM/BfNjCgPn8oog43P/EjfJ6TnQmlzOZHkGk\n8KhHYGeshq/aFziHTenkwU3MRwQLhKFvDd+CH6cg6fNuTfknS6Pe4xswgzKPLx4lG\n9R5qMZAK3Lgu+LCHtGWX3xd0GX6t97YTSfgvx0FfboqkSwBl4xBu335ar7El317jj\ndgbMJ8ILFe+3dSmFl+C33aNU1P7DZehr8wAR3fgGGWTSy8LrCkuHj4Fghv06F7qPp\n4K36Fn5A5EZECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:35:18'),('probe_url:1:https://friendica.styliztique.biz/profile/stb','a:15:{s:4:\"name\";s:29:\"Lass Mi Randa Den Sie Will Ja\";s:4:\"nick\";s:3:\"stb\";s:3:\"url\";s:45:\"https://friendica.styliztique.biz/profile/stb\";s:4:\"addr\";N;s:5:\"batch\";s:48:\"https://friendica.styliztique.biz/receive/public\";s:6:\"notify\";s:64:\"https://friendica.styliztique.biz/receive/users/ba09b241ba872139\";s:4:\"poll\";s:47:\"https://friendica.styliztique.biz/dfrn_poll/stb\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://friendica.styliztique.biz/poco/stb\";s:5:\"photo\";s:85:\"https://friendica.styliztique.biz/photo/custom/300/20.jpg?rev=2013-09-06+16%3A04%3A10\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxgqWrggPeYOab48lIP8xn\nxNUo6vEymJeLI0DDuiBH34sCRwt73jbz3MaAjGXOOWDRSXvxcl6jxBowTcopViPEh\nt3y5NZLj2JxgEyENeF49gqd/FBpaap8QVQUiqmD54+z6MkGfTlUkKYk/q0z4F0Ypp\nQZNVgDWZgq1VcQYpMWQnAFmIEr+7ndDp2AR7u46Bb2qm2YgU1PgavR5G2qPqy6ieO\nUvhNjQ78hH3dklXilnQI/pTUFh1VgsNFlYuklT54Z07ITDgcIbGlnW5tWIYfU6hfL\noGWoUEtexVPAOOLto0DJBxAZQPYFDpRq/snoM/Ojr+M7iUtVFYFMXr9YwFKN+qjqA\nbt7uSK/WfrR/glcperIP9OAOipNxD9ZmLO0NjAfolNe4uW7Q2IhQ0lEElgupNxqma\nQTblzVaUrIJoo2G+nlMh9CWwC5fPVn/xwnoTG+H16lTuHIQnN582DaCBeACaVFQeZ\nHfvDS0os5u6LTu3eDdlkYvg2KgBGOsh+j7DOsXCmXkSvLKP4bfs/iSZ/7pp9DsaDf\nLOBpKoTYiIYnua+BpwTTEiqMMsaz29YumWB+9ykl0bLPxOR8CDMgfDf69ZDuF8gHi\nU7zqhNN6EXnLN+1ay5AbgBdE8+QyxEdZeFfWzmAPQfdQnRGWcyeabFg978MPjO1jD\nKFUj2/3gcY2sCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:47'),('probe_url:1:https://friendika.me4.it/profile/jmgoig','a:15:{s:4:\"name\";s:17:\"José Manuel Goig\";s:4:\"nick\";s:6:\"jmgoig\";s:3:\"url\";s:39:\"https://friendika.me4.it/profile/jmgoig\";s:4:\"addr\";N;s:5:\"batch\";s:39:\"https://friendika.me4.it/receive/public\";s:6:\"notify\";s:55:\"https://friendika.me4.it/receive/users/edd126d4135d5e2f\";s:4:\"poll\";s:41:\"https://friendika.me4.it/dfrn_poll/jmgoig\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://friendika.me4.it/poco/jmgoig\";s:5:\"photo\";s:77:\"https://friendika.me4.it/photo/custom/300/283.jpg?rev=2014-12-16+10%3A11%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA03gRxsnGr0Q0v3aFOdJvE\nLf/RWQWN2W6UQf4B0CYZg7dipt5KnL15/X9HK4+8YgTTQ1FgueQmxrkGD35XhLcvA\nfCNTdCrR0NXD7JtEAiBkXCaz3dRDCp1AB9RGNNbeQBCKMu4wFBXpjcNZ6R7QU9qp9\ndGUZn2EYMg92zFs+M0lg6FURj3URY+/Z838JlBBSQ5MslYIK1Ehar01Y2rkq1neLl\nnpdXvwKx4/eT5apxCBQPmTzj0swzpLDILPD/NvYJpwSXoYiWhnAC1KBrQHT4omIif\nwbvoNQUuVa+D4L3PK+kj8XZNjlohv/YMeUl0o1PcWFwByxn+g9VJFw/iMxhtN/Tdd\nb9Si18NTT7tACqk7/VOeE5FcdO5hdTn32UebAR0v5+gnw2KpLLV1yoxijkVMf4j8E\nHU8RJaOvBvdZ+78Au/zCBEBPK9aVTsmlAMXGkLyKPrxNRISISbbGOjKwPACu8afgg\nesBF4NXSNii/7ZX2hH+7AaBm1j3SsWATlynADmOOTMtcahcLNZIr2OMQzkVci/Bgs\ntmTN+vOl/+P7d5RG3CKBoA5F4gQ5TgQKzbl+S2r5plZFW/FsODrgnV6M4yeo0qz2W\ngT1QrU+KQNlsVIzln5x/x+bYqxsKz6zBwKZ7sC2QQ75si7Muo4MqqdWQ4Hojp6E1Z\nwhQRCGHB/lhsCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:22'),('probe_url:1:https://friendika.me4.it/profile/keith','a:15:{s:4:\"name\";s:5:\"Keith\";s:4:\"nick\";s:5:\"keith\";s:3:\"url\";s:38:\"https://friendika.me4.it/profile/keith\";s:4:\"addr\";N;s:5:\"batch\";s:39:\"https://friendika.me4.it/receive/public\";s:6:\"notify\";s:55:\"https://friendika.me4.it/receive/users/692676bfa1ec918b\";s:4:\"poll\";s:40:\"https://friendika.me4.it/dfrn_poll/keith\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://friendika.me4.it/poco/keith\";s:5:\"photo\";s:75:\"https://friendika.me4.it/photo/custom/300/1.jpg?rev=2014-07-27+19%3A34%3A36\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA/em/rc1hSqF5B2ldP9NMH\neD7SgqdSxBrQtyAZyTv9kcgVp/VHeOp3/shSc85rH4xGPyLklefmu+Gg2LRjEVsYF\n3ZCdw4AXjUEEJDSViYINRHXYp0WkRpTnQ5gzXFCUiSePBBtLfFDJnKhYyWRfFJQsV\n009LjPSQNeuBDI51M3m6hLedYA49yG4iEpvcPWcGN/dmLSXK38MWe22aXf0t6DkZ5\nIhgaCxbS3+xOQE0C/cHfp7NPLkRLQsIqt2Jw3KK5/DX5Mf8yYuk/DP+tHKsFAzC8l\nP9t8AImgN3M+OzbGxRbw2I5GvAPeT4KrFkoDMU8otD2kPno18YQ2U+nOWHe3WlEHR\nE64K3/Xn82NtJGRP1tm+ptC/5L1X0kJl1Cb9ZDQ05rLv6PJiMQy5KyrBx3FZ756vQ\nCoZyKdcB5TyzASUoX82pVOtYwKxf5wdzVe15QDjaLSlTgd0TsPVthZRmMAb2xTP+z\nygJuM02rAKNJRMFHmq/VY495sxUbIOF3VNg2HrrMF4WNIYVjRvaGierWDxOdhLezj\nBIUS6zzGlSuqC+2dA8sgSlxdXDBbKYiqeU94apDwbDtoIk4Ybj076vF7SGAE51azU\nES5dqRpxU0hiQXIQrR2W3C7ARz8WaHvKqLJL9p9R9MIf5aK5qFf0cxx7MPMrGKNVd\nIKK+xJGWeftcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:20'),('probe_url:1:https://friendika.me4.it/profile/manolofreiria','a:15:{s:4:\"name\";s:14:\"Manuel Freiria\";s:4:\"nick\";s:13:\"manolofreiria\";s:3:\"url\";s:46:\"https://friendika.me4.it/profile/manolofreiria\";s:4:\"addr\";N;s:5:\"batch\";s:39:\"https://friendika.me4.it/receive/public\";s:6:\"notify\";s:55:\"https://friendika.me4.it/receive/users/3c78460e1503a644\";s:4:\"poll\";s:48:\"https://friendika.me4.it/dfrn_poll/manolofreiria\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:43:\"https://friendika.me4.it/poco/manolofreiria\";s:5:\"photo\";s:77:\"https://friendika.me4.it/photo/custom/300/254.jpg?rev=2014-09-06+23%3A58%3A50\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvkqMmn/MrUSVVgCQagoiV\n5YAohzh+HOvJtJB8XQ4cIwrQXacPcRMv97AHUeFAfr8L/+65QEYxJ7jNSY6qY8QQw\nqhXQUwR8qjjJMbk/1XVFGUJvK49kSvR287t+GikgPHoQoa0ZbyqgPsP7nhru4N9ZW\n0zJ9sm0Wgl3xkGmiDblvynltouNubcOzON1ne7VHZpM2CvMMZjob3xES0Ci9TG171\nbA2rAH4Y4zIn7AS16DWG2XceUruHg65ssfv2YWmux2LzfQR7MQm8wqSTHXnSAuDDz\nn8zp6QDto6sfEKOf6UFTD40qbxdta44tsWIuYH5zgNxKuiRGvytHucA+KemMvQZA/\nAHTJJbCBvgEz1IRw/3p0qHb1gMJ2Q3pCqqJ4E52adeLrvsBZ1fKisdSkbeUXGqYE2\ndExAUnL/xJB5YdB6oh8MclNBLS8fxOWTCvM1WdIZcQb2BDxTdpdZmRxs3+aK3ardu\npBm3uZR1i1nBd6TcPamvDzme2XhIxF4gvWC6aXs7X7vCDCOFAozfl0DL8Zbt//ty1\nsz8JQFFLwmVIJddtblwu+XLZNrxXqa368RFkyxM1FivuXIgz/zyt1ItftjMwTV0JG\nUjVhNwcYUElwI1vICi0xZWHb/ZNMbfcz/vscJ+3Cs9yEqyIzWy4NSj6p7jwzgoSTc\nBXEGsp6pPDtcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:31:21'),('probe_url:1:https://friendika.openmindspace.org/profile/anarchism','a:15:{s:4:\"name\";s:9:\"Anarchism\";s:4:\"nick\";s:9:\"anarchism\";s:3:\"url\";s:53:\"https://friendika.openmindspace.org/profile/anarchism\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:55:\"https://friendika.openmindspace.org/dfrn_poll/anarchism\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:17'),('probe_url:1:https://friendika.openmindspace.org/profile/ccase','a:15:{s:4:\"name\";s:10:\"Chris Case\";s:4:\"nick\";s:5:\"chris\";s:3:\"url\";s:49:\"https://friendika.openmindspace.org/profile/ccase\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:51:\"https://friendika.openmindspace.org/dfrn_poll/ccase\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:25'),('probe_url:1:https://friendika.openmindspace.org/profile/friendicasuggestionbox','a:15:{s:4:\"name\";s:24:\"Friendica Suggestion Box\";s:4:\"nick\";s:9:\"friendica\";s:3:\"url\";s:66:\"https://friendika.openmindspace.org/profile/friendicasuggestionbox\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:68:\"https://friendika.openmindspace.org/dfrn_poll/friendicasuggestionbox\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:21'),('probe_url:1:https://friendika.openmindspace.org/profile/iulian','a:15:{s:4:\"name\";s:17:\"Iulian Dumitrascu\";s:4:\"nick\";s:6:\"iulian\";s:3:\"url\";s:50:\"https://friendika.openmindspace.org/profile/iulian\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:52:\"https://friendika.openmindspace.org/dfrn_poll/iulian\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:11'),('probe_url:1:https://friendika.openmindspace.org/profile/joecskues','a:15:{s:4:\"name\";s:53:\"https://friendika.openmindspace.org/profile/joecskues\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:53:\"https://friendika.openmindspace.org/profile/joecskues\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:55:\"https://friendika.openmindspace.org/dfrn_poll/joecskues\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:13'),('probe_url:1:https://friendika.openmindspace.org/profile/survivalism','a:15:{s:4:\"name\";s:11:\"Survivalism\";s:4:\"nick\";s:11:\"survivalism\";s:3:\"url\";s:55:\"https://friendika.openmindspace.org/profile/survivalism\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";s:57:\"https://friendika.openmindspace.org/dfrn_poll/survivalism\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"feed\";s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:28'),('probe_url:1:https://karl.marx.pm/profile/anarquia','a:15:{s:4:\"name\";s:7:\"Anarkia\";s:4:\"nick\";s:8:\"anarquia\";s:3:\"url\";s:37:\"https://karl.marx.pm/profile/anarquia\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/8466a0a1b3dfcf31\";s:4:\"poll\";s:39:\"https://karl.marx.pm/dfrn_poll/anarquia\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://karl.marx.pm/poco/anarquia\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/45.jpg?rev=2012-05-29+11%3A01%3A11\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVSK7blRwRTqgtBhYBtar1ZXgAl\nJjsfoQ71LvfybF+xaHJNsRDqv6a0mceT/aIj33iXOIEGkln1qHm22R6dPvgcRAaQm\nMoeS3fMi/zgACuU0z0d+PxsKb+M27awFXeJb77fjCRYgoFonAQSpJ9yh7JOGaAgB7\njgqsOy/RV/zHTNwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:55'),('probe_url:1:https://karl.marx.pm/profile/antifa','a:15:{s:4:\"name\";s:22:\"Grupo antiFa Friendica\";s:4:\"nick\";s:6:\"antifa\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/antifa\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/a289c92a3e430755\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/antifa\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/antifa\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/60.jpg?rev=2012-06-11+08%3A46%3A48\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDFA+v2tkyOqlXxxh3pZeXXNWNdI\ntw/f8F2nhGH6K8fmsZ4BdshoPBfNej8gfj+xQkae2yS/uv96B7fa8Cvg/kJLAIuOS\nuGYpZdyyckNX8DT9xv9jF5OMt/X2/Q9sj/PqKD+kmlrvTvQeoIMwzsuw9HDWw9JRU\n/M4mTvwBfVo1GnQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:58'),('probe_url:1:https://karl.marx.pm/profile/cine','a:15:{s:4:\"name\";s:9:\"Todo Cine\";s:4:\"nick\";s:4:\"cine\";s:3:\"url\";s:33:\"https://karl.marx.pm/profile/cine\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/9bee352f894739e1\";s:4:\"poll\";s:35:\"https://karl.marx.pm/dfrn_poll/cine\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:30:\"https://karl.marx.pm/poco/cine\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/65.jpg?rev=2012-06-15+07%3A20%3A01\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCmlmMUqPzMi+FsD5K6JY+y2/V1r\nagkCQywQp75YRZdTb3lib3dag8M0cIlkg7RsKfT3MnlA6J/vu4/6JqZrj04/Zltui\nXjD/z57Bq/I3IuEs4gTNTp+L/Fbu0+ITmGyoej0B266LEcIc4Mgn/+eCMvKSE70cU\naHeT9SkCkgb+D6QIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:00'),('probe_url:1:https://karl.marx.pm/profile/eco','a:15:{s:4:\"name\";s:8:\"Ecologia\";s:4:\"nick\";s:3:\"eco\";s:3:\"url\";s:32:\"https://karl.marx.pm/profile/eco\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/cff1bc16b6039814\";s:4:\"poll\";s:34:\"https://karl.marx.pm/dfrn_poll/eco\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://karl.marx.pm/poco/eco\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/57.jpg?rev=2012-06-09+06%3A42%3A04\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC1ugD+z09Rou59yNJnUhQ6Uvun2\n9WByN8/+3ArLZx7OKLvo5I68EAXkbOpQY0r3pU7E/XxpUmu9JNo4wXW3T4CdhuFfJ\nNuwlXL/tQIL9wClSZx8/o6b6066dQOZW9EvALzAk/o1eWHgj3jBBloMoPU+xg+XOw\nKSJWudzrslE9+kQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:57'),('probe_url:1:https://karl.marx.pm/profile/facebook','a:15:{s:4:\"name\";s:24:\"Facebook (alias Feisbuk)\";s:4:\"nick\";s:8:\"facebook\";s:3:\"url\";s:37:\"https://karl.marx.pm/profile/facebook\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/88fee75f42ce5343\";s:4:\"poll\";s:39:\"https://karl.marx.pm/dfrn_poll/facebook\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://karl.marx.pm/poco/facebook\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/61.jpg?rev=2014-01-17+09%3A50%3A44\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDfI1THUAn/zyz5EmRSANXFk0Ofd\n5Nzt1PnAoF7p4ISH7xTQdLf8EpU4qkAJYs94OhBFH4d7MqbDGTKKAKvg8FOSDZOEN\njNwPCM2DPF9Nbl5UcS/TkTQ5yjtj5hZAk7+SjKoSeJ07OgkR5XIJYHSTO0/UPaHCl\nkpgsJyQpC/swbZwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:59'),('probe_url:1:https://karl.marx.pm/profile/gnu','a:15:{s:4:\"name\";s:17:\"Grupo GNU | Linux\";s:4:\"nick\";s:3:\"gnu\";s:3:\"url\";s:32:\"https://karl.marx.pm/profile/gnu\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/bdb488e7dabb250c\";s:4:\"poll\";s:34:\"https://karl.marx.pm/dfrn_poll/gnu\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:29:\"https://karl.marx.pm/poco/gnu\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/47.jpg?rev=2012-05-27+15%3A34%3A20\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDpS5eQYohbGoKt9fR2II8j5733b\n2BsD+cxf19ECcjMbvUQIxoBKvzbRc5rv7zGUwp5d6LcAyhRTIg68LRtPqx9aMtKnn\nq970q55/Nh45BkG6eMZKEgH/JKu2as2fHHRpwCM74UWfMl4QgY/byjGAmbsIh9enW\nfmOilgG5c9mr1eQIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:57'),('probe_url:1:https://karl.marx.pm/profile/indignados','a:15:{s:4:\"name\";s:10:\"Indignados\";s:4:\"nick\";s:10:\"indignados\";s:3:\"url\";s:39:\"https://karl.marx.pm/profile/indignados\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/c5ea7f73d58ca420\";s:4:\"poll\";s:41:\"https://karl.marx.pm/dfrn_poll/indignados\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://karl.marx.pm/poco/indignados\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/44.jpg?rev=2012-05-27+14%3A53%3A52\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCqx0Jsx0DpVQXbcJxgD+T1fS1JE\nW40lB5hVvhDG8gue1wII7EQ4JypSe/7m9Dt0QnKm8vuyHqkuAdiDJEOVjlDt7PfZm\nwLfRIGQ51rcVqG6K6CutgnVhggzBdP+09XXL6y/zMy+M7AVP9W8MA+FnpUqInPsIg\nN5A1apDIYHC20TwIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:54'),('probe_url:1:https://karl.marx.pm/profile/kmarky','a:15:{s:4:\"name\";s:23:\"кαÑ\8fισz Ð¼â˜ Ñ\8fку\";s:4:\"nick\";s:6:\"kmarky\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/kmarky\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/fbe3d559a1f9ef78\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/kmarky\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/kmarky\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/11.jpg?rev=2014-01-17+09%3A48%3A33\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAt0CGGw3YcZx8ZaxwTNrjy\nFZOtJK3+zPZLVAe6Ay6bS3tiZWDbpwaeRJFzHQ6zQCHhF3j1wzBPkchmKZP+OvD0f\ntzdrtypygpwi+RmGzryb30KP9SaZa8See1BpSXKYmyi1Vw4PQPXRLinQKL3F8DgJG\n1p6kEadqryP39jM5SH8piyIU2DBv2Q3SV81dYLfrA2RWlxnScWN61rNWbhjC/JB/p\n9Fj28giZ+visoQObNMb6sKjEAJa6euQe4x0oL2azKnZ+2/zwvY/Jqtd7ykQcgCdmC\nnw/X4PypIp8JUa0O0A8iCWORl1n74Y32YscjjFOgJZwE8Y4XQQQpBI5fKhaKov7/c\nW49e+lN369BNtJUPkhJ42vbYIPlCy9EilGbcrgBWMEdiIMn6oUIIBCK4XgNYBDhLN\nkIOvCeM0OGFO/PR9bRDr2Nxbfcxv84zwi7s5bZVSQgtgJGesU2zU5scjO0g+JC9UJ\n5eHJdbe/aMa4Y1fHi4kLw+eFuRCRlh6c0tRl/tT6PJstjjofJfU99lJRBDA5N3wOJ\nm3xVZejd1el/MHnB1RYqGEPUjEZG0WYi/OKrrf4w/6yMs5Picf8Be39vAHUVBg9Bs\nL1EYiiJmSaQFH3B1fQW7VbIGEMfYoE0z4JTD1zI6CdYxpYB4gXE7H7500RqbvrsHq\n/qVIjUQ48jaMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:53'),('probe_url:1:https://karl.marx.pm/profile/pirata','a:15:{s:4:\"name\";s:14:\"Planeta Pirata\";s:4:\"nick\";s:6:\"pirata\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/pirata\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/fd10d8a6b338cdef\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/pirata\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/pirata\";s:5:\"photo\";s:72:\"https://karl.marx.pm/photo/custom/300/46.jpg?rev=2012-05-27+15%3A20%3A12\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:272:\"-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDS4+WZCUmZ0sj+h0qhAeewf4SRn\nUnyEKFUvx14qdCki10ajeLdw44YhFMeHKp4OgkOr4CTbUEfzTW/MulRwaukB1fQlR\nKDSDgUoeKAJhWg4Dd/+Cl2VaRDzxcnZ3xNoKArvm8LYVOduOiuPp6KF0ihOF7tqd7\nzY7ZH6Enh/QfF1wIDAQAB\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:32:56'),('probe_url:1:https://karl.marx.pm/profile/protestation_','a:15:{s:4:\"name\";s:12:\"Protestation\";s:4:\"nick\";s:13:\"protestation_\";s:3:\"url\";s:42:\"https://karl.marx.pm/profile/protestation_\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/97790bd375d9652f\";s:4:\"poll\";s:44:\"https://karl.marx.pm/dfrn_poll/protestation_\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://karl.marx.pm/poco/protestation_\";s:5:\"photo\";s:45:\"https://karl.marx.pm/photo/custom/300/414.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwSQygPqEoLI2nDe6YlnSi\nA/c3VFDY7JSbGRwKjYhTd0t4fgu3er20w8nJo7+3asBWv7iaa7ob6rsADBE+Ji3ZV\ndMSlzngmkASkPiJMH9A/OfO+K8DB94QP4IxsJw+QbeSJKplFPiVandqlc1qITBYqj\nqgJhG+lIKTk4stU7k5DB4FCIlhFBRu9qHNrbNc3PmmQJ0E7gvU/nXMX2BReGGLEhK\nsCBnXKwHBaVaj9MSRdxw7htbgWvqnvRn7tdZ+0vZtL00Ju1ZloutLKQ1Qi92rGLt0\ng4JYZU70jrPwbxTSflzKDTXnnQ5ZjrZ5XJVUnKp7rQvM3No8uPsyN4AfTEjdEOqZM\n/OA+Pxa7WAaZOuKv9LR0AaH6CT6YVEcmcu+HIBShy4YE1//hL+m9GjqsMuC5DmV36\nLN7JxOtzvos1cFLaLZVa1cIOox6gFkVDThrNkPnCW4zN4yLtBhZ6dH1nrBbnxRwVW\nc6Y3sBhetykoS7JPCzxjmBEdEV3z9NWQ8QD/U5jAA7hd4ZToOZ76HEkmzjRmbkvoP\nFSDpuArYRDdnFxWiRQLCG2XtCvxkMjCag1Ig39t9735Coo+A7Vk6V4zM7rULWhvnb\nfLtI2xsJQUD6BA0ZWmj0yRWP8/MwGm0BIRm2TJ/YDnxzjwjxRbhjrw8+NTQoiVGtU\n1TPQhV2GBo6kCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:03'),('probe_url:1:https://karl.marx.pm/profile/riveravaldez','a:15:{s:4:\"name\";s:13:\"Rivera Valdez\";s:4:\"nick\";s:12:\"riveravaldez\";s:3:\"url\";s:41:\"https://karl.marx.pm/profile/riveravaldez\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/9ed0065099596e32\";s:4:\"poll\";s:43:\"https://karl.marx.pm/dfrn_poll/riveravaldez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://karl.marx.pm/poco/riveravaldez\";s:5:\"photo\";s:73:\"https://karl.marx.pm/photo/custom/300/205.jpg?rev=2013-06-18+10%3A58%3A46\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4dOLBLnr5Tb1uUZZjhrm/\niXj/MlXin4GQLiETSDrGl+K1LjyOLX8yVksOdUJYXFpuQcLBaGi93Dj/TvuQN/A6D\n6EJU7NuN2KYqhi4aIDi8ifqBwRLGn8VAR785IOpOStXiWZnYO7tkvjAvgzfFnY5i+\nbs6r0MxEMbHAHFHNcFNV+YBFJJleI6caluAandVubJr6r6icnF4NMrtiGwX1cxNnn\nFc+4bQWkOomLsU9qcmHWVY5IN5lDBwx+tekVz/aI/WowSpXEz7FQReiIDj8X0t8OX\nMY4rZKpwER77jkS+U/oDrT9myIoaA3IbyAcngCQ/D5ZV1TXeySunzKQuODQc8Gm0H\nl3X4BdLgWJIOPKDYrMkSuSQs7MpQmjAhc0+sQEaCnNYO9Knum8B4Oe8bAPyZA13XP\n/Y4BIN8AJEYtGXhhrSwBRVPvBS9+fEul6Thbd8hQr8nKnynZ3v7Bp53WyN/CHYMsl\nXeIJZ0R+Vy9UqVSSRSJrHbrVjfmHwpeQq6VCK8isPvwH1jE3JDfMyagf7SSZn2lde\n8DER+OT3UxEG+GBhb2lfORBbWiNO5glbwvTzUOGwGGembunnsJGXvOrSlTc5aO4Tj\njuq/pzFdyHi6Ci7RfgP5d4/mJhNHRa7kQzFMWJpjoHIkHkD3JIHHVdTb4FpCv3OXl\nNeDfBNWXL/V8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:01'),('probe_url:1:https://karl.marx.pm/profile/tazman','a:15:{s:4:\"name\";s:12:\"Tazman Devil\";s:4:\"nick\";s:6:\"tazman\";s:3:\"url\";s:35:\"https://karl.marx.pm/profile/tazman\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/8fc03e02d6916c7b\";s:4:\"poll\";s:37:\"https://karl.marx.pm/dfrn_poll/tazman\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:32:\"https://karl.marx.pm/poco/tazman\";s:5:\"photo\";s:73:\"https://karl.marx.pm/photo/custom/300/228.jpg?rev=2013-08-24+02%3A59%3A52\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4bv87MwaehueYXpIIRNBb\n3aERb8XF3s9oKto8R73Hlf9hv+CR1SJGHle0VOmhplhDVgKwVHhjAckUy1Bny1O04\nVmNyyC9VrKXNrsnbIq85T+r3EA4pw8+rd2xrPxUCI04WEVUCVv1PFMk9i78VnLKNk\nhFARh/dLxtn0UCHTb7D2/Gw9nQ6kRn0D3Nv04g2lVnsrHxqPILAhAidhQeIxSU06w\nohurWGXMODwQUmXqmrEwG240ybCgVw1ge3o9yY+ZXoNkw0HckHCZMhFL0zHO/vYwe\nba1wVsXFQD5xYqdTHfd4KufJHhXEoSJ2jbdlG0YuNGLgPeiJikumxm1aPyiJ3VGDl\nPXvnbC44LizHbIkXkvC54pfM8T2g3pu0FyHEozV3XrOH7B1rVurDF0g7BY7kntiFt\npExN0D+PF1ZI1uJCzfwh6sAqwKePiNhKDjsh1nec2CKHhcp9B0AtrPOkg1cbu/UZ2\nPmNvNpIZm010gzeWvYLT0rd1n16Arm+YAQpxgWyb/2r3g0uvh5WSfMwq8ArrqDpUo\nLdvCSDmjyHI13oARWRsCwDEacqZ/xvHgNWKrmxN8UVfTUUEClYrRNdB20QOylT+Hc\nS+TX2uMh8b+yS6D17dCVuXgHkST7qL8M7vWBvCua7adw3PTOxwkDVepcuQey7N4u2\nD5L6fYfL1bHMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:02'),('probe_url:1:https://karl.marx.pm/profile/tiago','a:15:{s:4:\"name\";s:19:\"Tiago Casal Ribeiro\";s:4:\"nick\";s:5:\"tiago\";s:3:\"url\";s:34:\"https://karl.marx.pm/profile/tiago\";s:4:\"addr\";N;s:5:\"batch\";s:35:\"https://karl.marx.pm/receive/public\";s:6:\"notify\";s:51:\"https://karl.marx.pm/receive/users/29bdb60d559fb11a\";s:4:\"poll\";s:36:\"https://karl.marx.pm/dfrn_poll/tiago\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:31:\"https://karl.marx.pm/poco/tiago\";s:5:\"photo\";s:73:\"https://karl.marx.pm/photo/custom/300/391.jpg?rev=2014-10-30+17%3A10%3A40\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAtXhSfMpcKHWja6y/SBJGf\nbM+S2AJjuPlvqgb11k62eyT4Zr+tlh/mB9RdtKEFtvcypfeqIIn4+KsCVABGg7sJo\nB2jCSqyJrmq6VEmxtSmYJrV+1NEgD+8dJOiWNXkZBXCw4UMkx1xtRzwOKvrJHAMNC\n1gNmtGxQyM+GhnMFHPK5WbcMoVym/2UBl4Hzx6sPLEcn9tFFLVHQFT+RCJVP8ixXZ\ndAuisvJNeSaa66C6oHMUpUW154DaM61VNUmNqGXaC0O4mY7JEubFGJ7PkOK89FXEo\nd1aWECDUZrNaH5zyhiXSuYV6gwO0sf9a57icr0gHT8/7biA/hTSD4GjhGJbUs2qjj\nRERbBtQ8E8bQBUQO47fuMMM6sSd7DCfzfcieErUy8tNX2ILinMmzu7F411C11uFOQ\n1TH9XSRnLh22PxGxbgKnJ5WyWOcbL0+Q4R+nTTkV3jBZ0SJTKaNaHv6rYOYfa3SjI\n+NXA5UZPA+7CCKLYpfkq7yJu5ME32l3xsh+4evlq6JlgQu+4nJudBUO+lLhCL5sG7\nSKdwv+H2R8POfyWHBe5U8irVAvuOZ011oBKPKOD+APvBgJ70XKyBp6+cLQZONiroQ\ndjk78Y73F3cdlhmqEFvSiIUAgX/XuOfTvMlJhK9/IPPbwo/xMEnIvW0c8F6dJ6LPm\nIVAlbSmImbfcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:02'),('probe_url:1:https://myfriendica.net/profile/arto','a:15:{s:4:\"name\";s:4:\"Arto\";s:4:\"nick\";s:4:\"arto\";s:3:\"url\";s:36:\"https://myfriendica.net/profile/arto\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/32a2258e87172b16\";s:4:\"poll\";s:38:\"https://myfriendica.net/dfrn_poll/arto\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://myfriendica.net/poco/arto\";s:5:\"photo\";s:74:\"https://myfriendica.net/photo/custom/300/5.jpg?rev=2012-04-29+18%3A36%3A29\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzAsxi3wBqf4HlVhnmg4+i\nNdQ6KfBbRtF/gGT3FeUK+H/EynXEIx5I7Co6/zob4oiGHHIB67kGNjOjSeB9oN8Ip\npzG5x+0d6E2ulrNWow1XuyldPQryAnlrFtFstWXp3PkozT2vA/g2ZUvz2ajbsYyS6\nVoVL2tTCWh+MydRKpdjTe45va0gK//HrTcjnWqkZdQWiyW6VvvT/mRdIAhe4omJZu\n7Az7m3kYGWlVm0D4K9+zl3TukRPGXSWk+eOGtLfDrbX29KiXSyNpclkggblJ2xFH3\ncl6QZN07uvU4eSfLjEVXpf/KCE+4pFE1AP52INDyAmtNOAz/wXeaM8cONH4l1qcqW\n8/UH5yS4edzTEQT6n36hQ21ZkGw/70fhSL1fv2BiDJiUQDjrzmLWxv0r5NQw5rqhj\nkSc0/qgqNFKgmYwdq7DdQxtQbGplnfHT2HOyBg3hEOvLh7/CcvcM8Hkauy7KQ+m6b\n6tFMhdou84CJv0zzrwIfiOqTVxY7wsGuyURKSL4RMgsRAv0CkVfI3PA6NKxycgysF\nQHlb12WT80DOvI1vxI+lWKkjCNFkK2hEvd1vjCLXolaGKpv0Xvzh9C5sGzkX2Itvt\nf1mlXThGU7HFUrYE3B3mWD1sP2UwkbnN3NRQboF0i9yjmlEm6K4kj4/n/+Z3rkrCV\n6xG4tScTYdScCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:05'),('probe_url:1:https://myfriendica.net/profile/believingprayer','a:15:{s:4:\"name\";s:16:\"Believing Prayer\";s:4:\"nick\";s:15:\"believingprayer\";s:3:\"url\";s:47:\"https://myfriendica.net/profile/believingprayer\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/a1af2de8567ecd93\";s:4:\"poll\";s:49:\"https://myfriendica.net/dfrn_poll/believingprayer\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:44:\"https://myfriendica.net/poco/believingprayer\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/11.jpg?rev=2012-03-19+13%3A12%3A07\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyBWW9eGyoJPVH7nopTBYZ\nTarKvHuzJ8KhEHq6t2IrTxGi9eRVkCzEIDiWV5/A6O0QOP5hAGyFNMiWsw3M13tv+\n+j6xzrd4V34VrL7S9YM92MZBi2pjnJVF0XHj9DMGvS4NTMvea5Dn3Df8Ik9H2Q5Q0\nQtFV9J5u0i0sBZ8NMbC7n1FywivquyNKwBf/vhRysM7n7SnF/o4ZZ0UCdjNpVJQ6Y\nKvA6ZHkouWX4evf0BTfG7797RMC6mnWMCsSamVsJsIuB6RVhme7hdWoiW/rs2w14t\nXlvT8z0AJOULqnI4ytVxQ/ooaK9T/aPLmAncHuZxHY6OP8R02G4i2cHUwkPfQNr6t\nDvPyaD4/m59d3DpgWWg9S9JF7nJgLvGkLw7nh2VL8yBp86eZZUvXG7UAHOlHN5WSy\njXRLK7krdGBhU2n+VxZxOwa56L0HkDiodIwBKzZ5qXSw3VLcqdvZ02XUCuhm4efP6\nq7Puf7PdHp1aPZjMhaYL/4FtLywwyImE9A3VRev2KaFlfY/CopZkzU0o3TviZzuyo\nzxoe3cQiScWLC3cUOC2wl1WMTv5045Vi21iC/cCkpoovv7KBsrJN7ysWlJeoRIzwZ\nKWwxe2p+TBjTZ89cFpMNw9W1MnMFT0YKAzihT2GDYpO7dYtEmsuEfJfs4WJ8Gny1W\nccwkoF9aXfgMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:07'),('probe_url:1:https://myfriendica.net/profile/berlin','a:15:{s:4:\"name\";s:12:\"Berlin Group\";s:4:\"nick\";s:6:\"berlin\";s:3:\"url\";s:38:\"https://myfriendica.net/profile/berlin\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/9d9664e239095f08\";s:4:\"poll\";s:40:\"https://myfriendica.net/dfrn_poll/berlin\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://myfriendica.net/poco/berlin\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/65.jpg?rev=2012-04-28+09%3A21%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAz9TDeARTfgTfdzewRxsRX\nfD3einI5HPV0eI6OME1ftABrDvPG+KOmb8Bzoe05pLnIRpk2UhxhAllJFV4yMI/dG\nXRxYzhfJjyusJ8Uyq0K+YJAsD7TaJm4nhbrx9eT4ymYC9cfjPf8oJ8jNGNsakq5OG\n9wkwUq1GsrrN5B52IMPA7bJQ6lWfw3946fIe8k5cbAb0rVlgrRWJ9tGolibNg5Vln\nMSpQ4dzVXvdHQM434TRagmsK6UsuiQOt/edltHh7n59kyebmsJP2afY2LNBA7dj/e\n0oGKgM5B5mYRpjfzPizeAubUdoiRf7yJVnon6Bw2kPw4wGpfjUbqCWEvaiaUIq8vW\n+0zSFfQOGGzSesHVY+eUaqlAbYxBKROru05peOR64vJMWgqcBWMETn83Wng+VmVDe\nhLPciZedKYTBVR5Z99w0bOSGsiFx/BcMiJJzuyPj5c4DchQRk8FukKca87uhQfMtx\nskH0KU/18pxxnlaKyTdYdtjATyqLvseDA2V6X00svOuEQrkqNPEF+gIwtonacwuJf\nvIvs7jY+/Dj1NRfL80Xk+M78YQ1dnIk5e9D9mj+ClCQpjlXr7+1pYqvoBZ55gUssx\nI/Au4+VVFIBUldDfxAi0ajCQTqWaXg7dsGcZ5DbQ0NKwWsBNipu4IWjB1Cb4N6s/a\nSu2Jj9N/kNPUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:11'),('probe_url:1:https://myfriendica.net/profile/cirilearth','a:15:{s:4:\"name\";s:11:\"Ciril Earth\";s:4:\"nick\";s:10:\"cirilearth\";s:3:\"url\";s:42:\"https://myfriendica.net/profile/cirilearth\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/3fae3213c2922f2a\";s:4:\"poll\";s:44:\"https://myfriendica.net/dfrn_poll/cirilearth\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://myfriendica.net/poco/cirilearth\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/519.jpg?rev=2014-12-22+12%3A19%3A09\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0U+XwWXHPJen+Gxfm3LC4\nsFUUhgng3EuRJGiIcFiaEk4jT162I4qOeBUbrMazdp+gdMX47SCySQ3v7xNDXlE7N\n5GCV9bHU0RGOTMFvzQu6l9FPVHhjTDpsvMGScIuVTCMt4Ckpl/r/XIGtGkhYPZSji\nC0KWCrlx5lZ7tUmkaKawkEidZh3IHoufnYVL5dfkHhng1s6Epenzvs1ISbw+2S+D7\n1Puk9n4NNs2SdfP0F4ACuB8Fm/OqvoTYzugk83/7BW1qfhzqmbdy8+C+Ah9FprJN6\npHZ3537ttNS9KxBel1dxLg2DnDemwfWW6Vz2FjThx8GNEj20SWzbIpiM+WQh9L+uv\nOZb0n+PpJBs/RyTM+ZkV7x4OgbOGX74Vj/ORSK6czMKKCqVFPoKMv46eobZc8NHFb\nWu97tu85SxmC9sKhBEdFQIeSi+no+GAf6MJJ1DjuxmFyfFruewYeRIbhG/dXkT9+Q\nlYByHaJ5jIEgMbjP2jUlL6Ucg0yk/Ggf/nHI9Wq7K/K7bOFmTou5U/xHv3AuMH8CE\nV48XUdSbccAW/CR9MJkm8iMmIhAsx7rBMcJPpUZ0uke5PzaL9VQ73wyF/IhpHmjMH\nbJbzhiwHljXAP23lNj/GNZy+227Ss95Z0LBzHWVVOO/jtivNLtI+hZoDdzcCyjQrJ\nd5+r2/BfL7YkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:33'),('probe_url:1:https://myfriendica.net/profile/deb92','a:15:{s:4:\"name\";s:6:\"Damian\";s:4:\"nick\";s:5:\"deb92\";s:3:\"url\";s:37:\"https://myfriendica.net/profile/deb92\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/4e7e4823afc7b306\";s:4:\"poll\";s:39:\"https://myfriendica.net/dfrn_poll/deb92\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://myfriendica.net/poco/deb92\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/462.jpg?rev=2014-07-29+18%3A18%3A26\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwuZ3T0u2Y+lkEqVj5hPnv\nsHzAR5V2Qzyhdg/f78o4CAc6CFYvfPNkdb8UvyYo5DIiPhYTw7XyJu3p68qOTwgyU\nJo0qFa98XGXJUCO0c4l5r3MfqDdNrlXAwdflB9Zy6ZABvMSz9fxqdygxtbagCCWdq\nOHMRk9vetyZeyrJXQx4Rxz808CmCPYwOc5GwTmA89TtCLeMam36Ipm74sgaYGaY2e\nzMGhKZLngLYY4fNngRI8BXD7PvtCXQ+ORf53Gfm5LYvrHoYXiGE1T6xC8MTgDbErH\nCwDOIcg/mSxo4LV2+PyxXYl8MDmmB2UnOMVGZKmmp/xd8BTJ5BUBMMJJ4o/FLENLv\nxQfTSrjJ8sAacnjorDOEheRVTARCr2m1ftuQwm9zzT0VGmApuSGBuwADbp9VnBIQY\nKUHD0OU/u2sslslDySFogKEKWxW+XzRXz5UhwTiJj6aR0miRatk6DjmbQAOBd793k\nyHYwyydF4WcKjnyrBpUBYCZ+TYjForF48777Q309Y01kG3k0YQzG3DYTMinQF3jRU\n8jsqn7mwwP5dZvvSVV50Nz9SRhVJ7u/IZpFrEK9v9SdAzZWPLFQxN8oOH1kzaTOI8\nXrWdEM3RL9cQOCMw1cK63kQHYnjjzmd4T6gqidIU7XUbB5y/XAr+duTdcFs6vJGIL\nx9r3t3+fcTIcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:32'),('probe_url:1:https://myfriendica.net/profile/docaltmed','a:15:{s:4:\"name\";s:13:\"Avery Jenkins\";s:4:\"nick\";s:9:\"docaltmed\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/docaltmed\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/a004ea236d34c7ba\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/docaltmed\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/docaltmed\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/17.jpg?rev=2012-03-27+11%3A05%3A26\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA6sZXbwHlk7xmVsoTuQyVQ\nlWrAkRkbehQLcvOT+yR6uEtd2g0HumAkPVEUEaFTgRbMOIuf/1pzwd+KmeQCt0N2b\nH++MfpX+BSoG3c6XbiUvx3O3Et0WEwvknvsPysMY0kKEIi/UdARHdNFOyNWvk6erV\nTtSnraN4fEnRrdCuyN7KHOB5C6g9/HN4HNXYyuVW5QusCxvYhTOY3O/Ry9lCmXnqi\n8WXk+XZsc+M3KCFYd5Da5wlrRmsKfeQjlj3DbHo88vm0o5ARDLIhQcmanNET9CW3V\n+epjbrjtY9UXANriNgpUaswSqnofxHPbELtoNMBLPguVVv3Fa31C4fNz3Uzymb9HU\n+EJM9601T0D5EzAwQe3prwsAK4vwxtANZrorviRRdOzCZ1cAE+iOKgujWmbp5GUk/\n2zEbdGRqB8FrepLVfwckm9QE5ZsykILa+eFupktMs0PC5TuOiGPcQcXg0kyH2cXdP\neGSHM15cnOyZm8d3cADQ1jKnT1eMutSb4it52lRceiS8QwuZZGwwwAtrrxX2JUjs6\nO0886kIdKD82tDDtfgeLIP3nxPMkGTS86lw1uJN2ZigCIFvA6Uig57J0Si9OTBNhE\nI/uzEjY85qIzCKApUp3T/pBgY/X4AB3EA2f7SZRoGzTRXeEGFVb4szBwN4Djy/fKA\nKk2NNJADeaFMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:08'),('probe_url:1:https://myfriendica.net/profile/gatoso','a:15:{s:4:\"name\";s:10:\"Gatoso Kot\";s:4:\"nick\";s:6:\"gatoso\";s:3:\"url\";s:38:\"https://myfriendica.net/profile/gatoso\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/00b5c8fc5fc4cee1\";s:4:\"poll\";s:40:\"https://myfriendica.net/dfrn_poll/gatoso\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://myfriendica.net/poco/gatoso\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/159.jpg?rev=2013-04-05+05%3A51%3A58\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4d1l7KaUEuqngljFgcFzr\noPMU7vroEiDVVyXuE6m41RpHtRLIEhO5zC4EH9iI9tdbP+BZgHhA9+D2zcbWOw6zt\nUrKHGKLSnvbM4OeD+rn+D3JDaPkMKELPw8pJJFDQJ2MSwSzD0+p9MNo441z9Vgfr7\n2BNx+ibGRafa6Ickgq2T7bm/FT5C/BFe4WaIS+TD1lyHnGsBcYAiVTYT9xabShr4b\n8zcR6R4Onh6wf1l/KXAPYXRktwhFZY1eDo9bpPSYzYnAJuzztEpErPzx5rfeAxaeh\ns5JVKjbI6goUqP+94EaB0yz9XOYIdMBMbuWjfcoIF9GqBtR2u0DtwnGzhQc9c8Bdd\nf4VdtFsvhUhIjWZlckp1R418VUqgOW3ml/xEbzpcaKURdeJo3HcJfg645OYUQPlbn\nMhpCttjFb0U8UiucOvLxb+OxTWYPNr7hLGgNLVNEWxq1Fm7TXUHyxXjGA4Jua3xgA\nAFy6u5U1X9Vj3Rwy9yKAK5JSMGXIZmUnAfDarqqUB6zTewDcZtkkdFbCg5+B+XlD3\nxgRYSPRYTtGufgySweZSp1VPzOyh8NRKjl99/jU7xc70prYV8UVJrKfY6OJon4axb\nQrLLmFao5iHqhlSd3OUt8ygKJVNqn5GjXJYijvUGA0yL66shVCfNLm/tskx2zwqOS\nZ40oS9qE7pTUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:06'),('probe_url:1:https://myfriendica.net/profile/influencepc','a:15:{s:4:\"name\";s:7:\"Vincent\";s:4:\"nick\";s:11:\"influencepc\";s:3:\"url\";s:43:\"https://myfriendica.net/profile/influencepc\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/fcecf605e42d8311\";s:4:\"poll\";s:45:\"https://myfriendica.net/dfrn_poll/influencepc\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:40:\"https://myfriendica.net/poco/influencepc\";s:5:\"photo\";s:75:\"https://myfriendica.net/photo/custom/300/55.jpg?rev=2012-04-26+12%3A47%3A48\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyjBkMg/LHNajEX7DYQRpk\nR2E2bfjKEvMgiOGOAu55vx8RLPdyvjwCUGJeY0CQpnbFRLP1pq9fUrFk/y6JP9znm\n9GM1LFpjlv/jJ/+K/86hQ9FAQN4hcwwZtmwDMjJ3Pbi7S2HSqwd8Y8bVAWDaHbafx\nSQA2YYepVFQ76S88D6xAt8DVIs8hSm7xDP0/vH+vcoe9IB41Yfri6Jr8pU2ISqOLi\nLKvkW1xGwkuq7n9Yatr6Uj4alQaUzCmTm8qXlMkQgDLW11GQHiajpBGxPywScpb05\no+eom5U3NdfdQAIQte3dKRrPRY5wke0Xf3YdDoczE+9KMP9tXDWnXPlHADyyPawSy\nuDeEjsTHJ5eXl0u/mDN3lk82GdbqpRWr7UrLfCGJOX+Vyy4cpCQRpeFx+ZJTPjFM/\nnRqT3muYQtk4j0sKMMO5MVK/ocdjITylNFPBahTyRFEiab+NhPCqBukdB1ICwjJ+5\nlrNHyufsrKvG/VDmhDp6R9OWxFUcVL8pX+z05PSq2dVUTVBkWEtMXgiEUPP6WlL4B\nusW60PDgFMcY4UAyoWqWR1gLrG2JaB7ANAUYXo7DRt/DH9ZMLASJZSrVjCeQSxx00\nJ5BLnO6kUSKQe/dVo3H5H295ghU9mczdo/pIfhZX9PHuV4PCOs4lGfQ/eSEacIYK+\n0JJ/zp7E7nfcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:10'),('probe_url:1:https://myfriendica.net/profile/jcsesecuneta','a:15:{s:4:\"name\";s:28:\"jcsesecuneta@myfriendica.net\";s:4:\"nick\";s:12:\"jcsesecuneta\";s:3:\"url\";s:44:\"https://myfriendica.net/profile/jcsesecuneta\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/3c3ecb1de262fdbd\";s:4:\"poll\";s:46:\"https://myfriendica.net/dfrn_poll/jcsesecuneta\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:41:\"https://myfriendica.net/poco/jcsesecuneta\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/281.jpg?rev=2013-09-06+11%3A51%3A59\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArjBYBTa8nODBemFKZzKnP\nR98axNEpN41+tEkCp7lSm9LbgLqdpta2SbXyV0XZD+1OFQbtQ04gn8/xM92T2CzK+\n3OqnGoMgVJ09vGabK+yfEETohuNnqNLlzPtZO8dxsTN6QTd/0+EGrYlRqy+UD/mQp\nBTJig33Z71rXD9tJm96BqlpfhRSVtwoUGWljCsyvHXk1yo7uSwy9us0YJiy0CnCVV\nHelwucvjj5KS5gAJqVK60JNv9evF1SeM+03mKdsJe11fp9/rliMCQuGHf0zP2Gzee\nQCBBsUHbhtOpTqAyfIP9AxhMVSNFKP77w5jRGrS4ZuKTLdw3lijTH/UvKq0tFeGjv\nZJYJZ4QQdPV1+swumrItOaYfVSFRYTkT8Dku0fwI6qSMrFQSaD+jj37YnKN5PnQB3\nMKUyCTVVWdQUyN0xoiyGFiPg6k4TCw/lsKZIrYrw9I9BYxVe544Wgtr4DGmay66xt\n6+5AIcjJMwXfeVcWqzQ8KxNw8oz+eK/4ocQxQIcMcnpoRPafPmlNbvVTAavQVY1zT\nNM5co/dO3HHKBIyucXZKCF/ZTfvCxd+kUPGnqX9UfUx2V+tfJeBtQ25Q3vq7gqdnh\nqMYej9bQXAG5Odpzcee/ZeKuu58Cht/GIIoJICelu1lqbNqo4GelLZNqKwQu/i2JZ\nUuqSf4OsZPGkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:12'),('probe_url:1:https://myfriendica.net/profile/linamaria','a:15:{s:4:\"name\";s:17:\"Lina María Largo\";s:4:\"nick\";s:9:\"linamaria\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/linamaria\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/c1235a2b13f6df0b\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/linamaria\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/linamaria\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/332.jpg?rev=2013-12-18+08%3A14%3A24\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAx9uvBC3ZLSpQgmHIjB82M\n4nD4OJxYNfJ2FCcwtGyu+E26uZRwzga441elbMxdH9L/65becw7+QThXoHENNBxFJ\nao+SfdPfJYTD+i/KoCyA0kIZA0w9D4VvN+W5Nt4yck75jYl1FGj+L5b83inzDwqyi\nhNl7yKB148hIZYqdNyh2PEvHcNevlEPoeJfVZMzDo6pG5HkGw+u3tXPHcBaebqpek\nrNLs1+eL+TtLrjFN2Wx3Yo1nnxgHfmB3mENsEMtNIdQDuauMnPkGiMtWujzdIFFKH\nforEfz6jFtBOUwAd31/CHSKLOd/uo96EOZ4HxOm/emheUqdLBTFrLv6ofe/QTx5NI\n9+wJ4VUrOjewh4hQIBysqBzZgeE4vm03JYFD1NPEzWSgDb5jaJgzZCyM2YDz2pUf8\nV7pZy4EjIvo8Ft4CpliOLjYdC8jWQGLlJlB4ws9Mr9ByIr+YJoljLoXpJIdCFTnec\nyEwekErkfHDgBV5iI/ltaNp2Z2hKEVaxV6X3LFBXzqZbmPICkH+jpxSgDtFXzs9c9\nnJKQ8wXKPwCrmTDd5hEFXp01S8Ajq4MmJD+kIaOTOd8FTN2xx56Pfug17WaVjW+mt\nD32Of0gJJGKaEvb+gJzYZWXKIW/Jrj8DCHPKnjM5Np1yOIDOhnL9fE25BKmaM25x5\n8+i3tNrvPE5ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:16'),('probe_url:1:https://myfriendica.net/profile/panko','a:15:{s:4:\"name\";s:5:\"Panko\";s:4:\"nick\";s:5:\"panko\";s:3:\"url\";s:37:\"https://myfriendica.net/profile/panko\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/9de3ca1214eff317\";s:4:\"poll\";s:39:\"https://myfriendica.net/dfrn_poll/panko\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://myfriendica.net/poco/panko\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/354.jpg?rev=2014-07-30+14%3A22%3A42\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqlNSvu1qWcKRlbbsM1etL\nfLN1fOs5vEDP8uDer9DfuJZAaW8jcB43w55368ArdpPRfuqIqfzjV2laytYdASvym\nDP8uOSHH7k2JcbqhLcxcFwkZOmbDQ+EnOMe+Hq5BH5Dn/GVteP/zTpuNvMzWoYJOD\n+Lg71Pt2fwL7r0HQvHKCufYoEsIU6YV+s5YayqulWtT6Dp8V349GP0PR1f4eu2taw\ne8E/3qZKuOSHQ6PFaaTTmGJKsQCF5OkFb0iJv4+fhFEoFYq/TBld0759InbdTclWh\n1e/RtPbSVL35PhY/Wy3yHDBhHkAgiDszW+LATWxEWWxTPcL2Agnw032IsFxuHHWMo\ng3ySdXbRs5q32rbGkPC5dl+ZflhluFqLkGLQxvjvF0dtV6Q5pBDkBZjv3w0mjLkA9\ndBR7qcfMjltfP4qaiUru6i/+U6K11alUD9eTZWPSnoZUAlvS4awGdQwaChI/wZd2d\nSQ/jbyrH20Xoy0a/3AauuZwnC00A1s8rWxlKh+Yd+H0AnEYvJfA+GRCiryGsjAuK0\nQKh8jAgEdrh3zN3SAyVJ2Z3RFM9NxsMzqS6krFfHS6ehyQA4rUjCBq6qRWQ+CKWN8\ngbJHg5EQi9GLZ7ovnLURONlOsgp5yIFgqLdswT/gkJITp4RlEB4OcQgUHzR1BE8YO\ngcxP8wAiywscCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:18'),('probe_url:1:https://myfriendica.net/profile/petra-l','a:15:{s:4:\"name\";s:8:\"Petra L.\";s:4:\"nick\";s:7:\"petra-l\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/petra-l\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/dd8deb588e52ce2e\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/petra-l\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/petra-l\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/349.jpg?rev=2014-04-05+13%3A41%3A25\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAw1ZbmUNI3+dwbMfBABNG2\n+L4LE6q+SZcvisa0CrDT2Ya2r98keJq7RYtL5vMilonKDSOnYo+NwmnkuKa41GlrB\nlm19UrmCECW8Jruk+cVVcJunx5wU9L1GaAzlYOV08SPBqvXSVYs9YNbGrvv3gRYHh\n75eERhm/tIKBA4W3smLR5EdoRhZOd3MBpcqE336e3r5Rdvy8J2FvkxUyDe9MRs+VL\nXFwnWCBJY6m6kWSbtNJEt/USvOusW1D995ApN3F5BrAprwlqjBNzjFJfM9172fOCK\n0OkJM4cM6we4qnvFbLHRrRIfd1E+Lv7JeegV1++TJQKsZ2Ng+DDMHkoMJ6h0bgCRO\nmXds6lX+3o9HPORumpYzYfHI/P3Oh6qOFd4JZCeJKk2TY3CEPNETHXf+0FuIpd6I0\n3VPmogrUvPo23ca5QbMpUkGuWhxAutr35HfC3/NmAGkxKO8NbJOM2OYa/oEH+qqCT\nTbZneVx9/VcgAYSSqXvcVG5kwVOIxZdp6YmSjsT9wTE8yRtSQIrAT3SzFtigh0+/M\ncaBQ9hNoN/zfexXhNct0tv65IKhRWsHbQJWKgOiz59KbXisbi6F8rE02tHMXRtjXo\naHJLbU+Lm/Snn0bEJNyx0t7usLltRNq//GaQwAOVM6rd3qT5M+0WRC8VYTrKpUEUg\n8I4L15h1rM8ECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:17'),('probe_url:1:https://myfriendica.net/profile/prevete','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/prevete\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/ffa2cc355cd48374\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/prevete\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/prevete\";s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsVXg3079xURAFnY6cPjy1\nOG9EkurCBLr1lLjyTkjKht6O+mfEGqr2Ov9sRNQn3YfSpmu5nmPbmuyppVnA8qmZ8\nTXw9wMXO9MDuyZX291EylevJ3HksazEXndP36CDxeNwuNxidAt5pnXJPzKDELnxk7\nOwL93RamlJqIURwqzZUFhrbjI0xUlIBMbVcHC+WnbbDzdYfByPeaQ53/UVli1eefh\nXUdSluNQYP+yN58NZ7KzcG5GXgtGThiRg7YNiF3nM+Wu30PuSTTEgG+vW/z7RBwrk\nNjDUYg8N36FlE0EoKEH5jlR59NBWDfOBlUQOa0G0R/NstEfUvFRHdvvNqlzqBANEJ\npUH2m6sYRPaM+PT9r2qgqxfGNdznJamz1bV1t1FTsiJQRoEDfSVeFuapMdo3kiYSz\n70O+GMorfh8QwdnXZuZ1q6x0tqM8mi5yTub8Vr4im1eggug+njqlUSg0x8Z5Gexgc\nuGc9uJjT56v6IllfiqZanfGH4Bzr58wACZdjCbGihuZgOZrhqjKaxPKLec5wYfkj3\n216Tc+//wLwrd7zbkJjbNsKTECwUyAIs88hieb0rg2HZX6CM8/6VJzZaFKKFBF1iy\nUJLihaaAcDoYrlwjwzyCl6O4q6jp1TKzyUlDNg6GDQrMGX217Y49HUOmJZfa+t+Pk\nSy+Xt0z75hv8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:31'),('probe_url:1:https://myfriendica.net/profile/protestation_','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:45:\"https://myfriendica.net/profile/protestation_\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/97790bd375d9652f\";s:4:\"poll\";s:47:\"https://myfriendica.net/dfrn_poll/protestation_\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:42:\"https://myfriendica.net/poco/protestation_\";s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:2;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwSQygPqEoLI2nDe6YlnSi\nA/c3VFDY7JSbGRwKjYhTd0t4fgu3er20w8nJo7+3asBWv7iaa7ob6rsADBE+Ji3ZV\ndMSlzngmkASkPiJMH9A/OfO+K8DB94QP4IxsJw+QbeSJKplFPiVandqlc1qITBYqj\nqgJhG+lIKTk4stU7k5DB4FCIlhFBRu9qHNrbNc3PmmQJ0E7gvU/nXMX2BReGGLEhK\nsCBnXKwHBaVaj9MSRdxw7htbgWvqnvRn7tdZ+0vZtL00Ju1ZloutLKQ1Qi92rGLt0\ng4JYZU70jrPwbxTSflzKDTXnnQ5ZjrZ5XJVUnKp7rQvM3No8uPsyN4AfTEjdEOqZM\n/OA+Pxa7WAaZOuKv9LR0AaH6CT6YVEcmcu+HIBShy4YE1//hL+m9GjqsMuC5DmV36\nLN7JxOtzvos1cFLaLZVa1cIOox6gFkVDThrNkPnCW4zN4yLtBhZ6dH1nrBbnxRwVW\nc6Y3sBhetykoS7JPCzxjmBEdEV3z9NWQ8QD/U5jAA7hd4ZToOZ76HEkmzjRmbkvoP\nFSDpuArYRDdnFxWiRQLCG2XtCvxkMjCag1Ig39t9735Coo+A7Vk6V4zM7rULWhvnb\nfLtI2xsJQUD6BA0ZWmj0yRWP8/MwGm0BIRm2TJ/YDnxzjwjxRbhjrw8+NTQoiVGtU\n1TPQhV2GBo6kCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:28'),('probe_url:1:https://myfriendica.net/profile/raudy93','a:15:{s:4:\"name\";s:12:\"Bastian Lang\";s:4:\"nick\";s:7:\"raudy93\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/raudy93\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/e0880e62815a2400\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/raudy93\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/raudy93\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/436.jpg?rev=2014-05-29+12%3A40%3A00\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApdDrpyR06QyHaiW2eLHqI\nseveAH8Va6ZRtosXD1yL+TJdXxU2t5+uW+G7TSxzzyGGBMGOFmmfE420VFecFw2hj\nCNgf+r2ChVpBRWe2ZtFHSWBFjGUoAMvopibiKY7vUsuIsBHAsfDMSyxRJ0FYR5hQ6\n4yldBDiFkdcJvmsw21ptMjKv/c7LhWAVvHVhTlwN25tVzxBgv3EW69YxXIEIuyYHJ\nrxMxhi2ETFOXicWKoomNLA/VKt5P9gS3cjuFAupq+SyObO7X7hujSRdaPQZbDoAY1\naM5wUmGrKnj3BcPRlC5u1Xsf2d+XUe8jmw1pebrwb63Xc6VNBRJ39oGpo4BkHSEHR\nLiRsLsjhzChdm2GwmbJyVI9zzuujJTrkqaV+NXs+mZldR6v0mFKoNxb6qG09vJAai\nyJ8oU6fOM/ZVT7uF7un6qFIwEtog7EAb+UVy+tHuq3/Btmu+YXbrBjsOlt7Q1uVD3\nDXvTAo7ZKFWMYSgb58pWGCOc17Zx6p4wnNEYwSwalDV7AqLfXG/mfAOQg+peHcUg+\nghUve7T+BnuQnoWekEUyUDJm5D97qNBZ9rZGMY7hveCTwvfDvLV1FUjap6lR7tZ+s\nsYecde5ENC5sCxpGw1t1hNPObhF6eOdMxTCRfRvqnKFYMqNjSBOIpkZtmZHWVylZC\nY5Uo5hb3lBccCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:25'),('probe_url:1:https://myfriendica.net/profile/rtgriffiti','a:15:{s:4:\"name\";s:11:\"RT Griffiti\";s:4:\"nick\";s:10:\"rtgriffiti\";s:3:\"url\";s:42:\"https://myfriendica.net/profile/rtgriffiti\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/0c3e89a21ec02b87\";s:4:\"poll\";s:44:\"https://myfriendica.net/dfrn_poll/rtgriffiti\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:39:\"https://myfriendica.net/poco/rtgriffiti\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/437.jpg?rev=2014-05-30+01%3A17%3A19\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwCBxA90kmqGwKdxMtItgI\n2QMTZwa5M3/dQ3ihykKtAltwuoh25hrR+bmcC9AM6UDJFOf9oGmNHqLStm9xqnOpP\n+djRrZVOZCf5ZofWjdjQmYEmtwuGSmtkeq9nGA5L8PmAl9HtqkINfy2KHnomsBrpY\ny0D9p1Sq/H8C3m6pf8J3dezAcd63uPNbX2/RmdfT0+8aybWVQWq/ALYFt1RAH6ZuD\nPZWdlvXOUNpZjqv7yUAw3pTcooM971l50lbTTscDQ9S8mPDcaLLkOe768m8lXbFby\nqDa3acWY+qUC6NE9n7oTS0E/Wg/BW635HWxDMH3ZwTSYR1adbF3te6jv63bkmEG1Z\nRne3B93GV28nyYJZeg9aWry93Pkm7VzmeLnffFlZ+3zF2ARFch6GXcwCPCtg2kBzG\n3IQy08x2fETRfvkV59dZEzvxL29SkeeMley9dWRe7X7M7h99ff0CGiIGidOP5VHrX\nYPC4CR0v8QDbgmFqOJ54qrLWvh4u4XgNQgYi/ZvwkmEs1CnYsEBfpWrTRz0doJzyC\nn33rpv7U9fnXRSWlVj/KmYStl1XRwgWwkoUQ98L8ImtJfp28d4eWT6VvewSgw2xVV\nhGddl/83fnkYZEMB/0Uiq5cZiXYfP3MseN4fhzJdNEojy51iFdHBZ8A19kP5f6imK\nbGagKMTpQaFkCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:29'),('probe_url:1:https://myfriendica.net/profile/sam01','a:15:{s:4:\"name\";s:5:\"Sam I\";s:4:\"nick\";s:5:\"sam01\";s:3:\"url\";s:37:\"https://myfriendica.net/profile/sam01\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/43d8823a711d3dc7\";s:4:\"poll\";s:39:\"https://myfriendica.net/dfrn_poll/sam01\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:34:\"https://myfriendica.net/poco/sam01\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/183.jpg?rev=2013-06-28+15%3A34%3A46\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEArLHYJeWqzhMm17HLzC2P8\nyOU3aZFyCqW0TIfWF8K7w4UxoCysSXRJ5TYQVmIe4eCd5WY4+/ZbkTxIWvb53SWrx\nQJNo/tf6gUnUC/buu1yruuxdkDt/3b7SP9tG40+haYW9TJr4shU1JtKCFsb9X7GqL\n0OBITSlsGlqqxAclsr6//eGSpv6X/VJ/oiQmk5l5YcHohsKRAEtDnInj+eyCRehIK\nnBNH/qI7pBeTP0Muqg6P6IpolHMIrocLMQ+tCShWeaNNjeaFom78bwl7nTQ6qZiBv\nJjHRWVurodX8fNVAcXOXeEuEfNHDqa5Ugs50Ovozz2k03GViuK8BMw7UYaZKVXKJh\nm29BacgLm/3Jj5ScNnW9JUBJykLce3zIJfNao0Z1P4kIBY7ZBFmYnMBQrE73LPJAv\nPw2e+3O9yj3ocQk7VGUUKYY7elf89yuJvFoXik4vS7thjq23vRWT8wWEtRZlMCGgc\nErK0I5BTvZR9gOFNNqIok5OrE9EbE4gbZmxP1KR+st1js1c+VN+Q/qZ1xKzw/ShVX\n+P7xa+M0U6MnvV02JsUK0twGAyktJEzqDlk8pKm2Y6jL8jCXOY63n6tnYnj47WD6y\nIMa110cQ/VHaB+KVqTDCUgVK73XIPOLh/lHJF9CueG1mi8F5aHG/DJ46l+F41cxH1\nVhmfy8MQ/LmUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:13'),('probe_url:1:https://myfriendica.net/profile/sebasped','a:15:{s:4:\"name\";s:14:\"Sebas Pedersen\";s:4:\"nick\";s:8:\"sebasped\";s:3:\"url\";s:40:\"https://myfriendica.net/profile/sebasped\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/0ce9f1805e01ff46\";s:4:\"poll\";s:42:\"https://myfriendica.net/dfrn_poll/sebasped\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://myfriendica.net/poco/sebasped\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/373.jpg?rev=2015-01-15+23%3A04%3A06\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyRWFGet7JazIoJW8nrkmU\nOfCgoXD9XiV1WJFDgTy9ow8xieYXK7Ium7jWX10PCkVzIdakrotqxfu+yF3+9yHaQ\nr0WmLcM2XjkA074H2vtvxptdSbhbIpLm0+3PDsz9DmcIi5gl+2f76/hz/EDcFct5P\nNlceX7uvcb/IGmJ8hoSpgKKLs++5PXAYUmgSyo6nysH8o2Bqr498yiU71cL7ffE90\nJa2c6tVHvcFRhMWZp2PZOq/A2ms062zKz/Y09bDTB2274sQWznpJ01Sa/SOD10vZK\nzti24VtuJBx/adVxwjw3NMCkHGbhEc9iXUMVprPzOlRwmjVEEoWP9+6dYYx9dPF2G\nKcU4yheFKHsK+B8EbxvSfqctIULZEIOvCaKMr4InCXlFryUTU3ntG0slWftUvjgTx\nWGeCcwiUmhyEB1O1D64Ubt+BZBueCoDexNog3bZ1oiLttuauJIqcyDvupp840Z0rX\nooG4ADQj4Vzd3vuEnPp2VkbMW6tU5fd+KGGT+uKFWPhhyYEu0Hc1D1LCbgyzV/JXZ\nCNoKoc5pM3S/2U9JO7uvp2D9CPyVWkyiz1wPTeaeg9ydsu0ajv/7v0L7H42ezAEus\nJrwsdqLgtxCfO54ZMUins3M2zMRxFQIFwT9sSBUBOmhHwVs9sinTQATxAHQ7S7oEl\n0vPdf83YRYZUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:21'),('probe_url:1:https://myfriendica.net/profile/shimriez','a:15:{s:4:\"name\";s:8:\"Shimriez\";s:4:\"nick\";s:8:\"shimriez\";s:3:\"url\";s:40:\"https://myfriendica.net/profile/shimriez\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/655aadab88638464\";s:4:\"poll\";s:42:\"https://myfriendica.net/dfrn_poll/shimriez\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://myfriendica.net/poco/shimriez\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/403.jpg?rev=2014-06-21+17%3A18%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp2HddutFQSE95ifBz7mKx\nQmwDTUW2y3TZh/m4ZKGidLgfmimJ2MWGREcZltCJxe48pGAudan0VQPNmtV1/CnV5\nz4YsZ0JNWXUJ+fENIaTc3RfEjZ13x1/kSuCURY8yo0s0sCNtLq3Ue4qtNGDPTq9RG\nptr8WUuwOe8ywNEOmHo79nGPpogUL3LaF+PVSPBgyQK4y7bv6/+21PtPJMqnwrzmz\nZUF8g4BcgfJTLEyxBqwO17n09PACcyONk8F4JjbOFzVRbTntM9M70M8P2AqHvcohq\naWaq6XTdwEwxsCFPpPcLfB+57/mW19muyUcfafmO5zO46NybC/gUrFR1QsnW8xVSX\nN9iUWyDO9ZOimUs7dqOsrztx+LoL92FwyrN62obBPrmdR+faYEXlvq2HkfhMuh5OV\nqMMTOnwKGL9BMGuLt8yv3llC4t9zviWX7pjj6nJURvS21wc1cDC3eJNCTt9yB5k4u\ncHPAyOzMQy9uP5ICe31aKCk+r6RzRjgn3/0GZN0ze8HFUNj0jq3GI/1P/+gZ4S+xc\nypdB4C70oKdvkJCRC+FuG3nKgGrMk8FEm/hEPJcdHVBhdzWqD1QfMRu5mvxBi5qNE\n1TVW/3oZlbepqI2KQD/JvaOsxNw8ITDRxZyxdp7ScIk25faFILYfGviKOAbhU5JLC\ndRlajR2pFqL0CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:23'),('probe_url:1:https://myfriendica.net/profile/sim6','a:15:{s:4:\"name\";s:22:\"Simó Albert i Beltran\";s:4:\"nick\";s:4:\"sim6\";s:3:\"url\";s:36:\"https://myfriendica.net/profile/sim6\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/5bf154d267d525ce\";s:4:\"poll\";s:38:\"https://myfriendica.net/dfrn_poll/sim6\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:33:\"https://myfriendica.net/poco/sim6\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/419.jpg?rev=2014-05-14+16%3A14%3A04\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA28T3RdxyBu+m2BvDxcNYE\nbxF6h4WWt8ghITizexyE80Rsr8yem2E3n7GdqtBBdkCFSqtV0WGtLx5mnFrrMygw+\n8vQU7rbGNmgDAG8Q3RQdq+gL8xRYvU482Ynh0YCBHVMHDIg1KhHN8p+zj/iITSLXj\nNEPUdFxqEL/k3yWP06MKZuiz4K1Du6fD8G5cCH6+kUj1bq7EqteZkk6zcgl1g2B0Q\niEC8pQUYTPRUf20RU6eiJvRUujQ3Ft1NQsSBO9b4OWQQKxGpANy0FwVeHyPM9I6bA\naeNto0x9MyvGFid4LUeTPJfjH4HFcwr1NKlWPArcJDvull+rWqo+fraFh6JaSuweu\nktUtglaEAAGGQAnEeFCg1IQT6FiNmVhJBY+KQw2IEef75Kq94qIVdIl6PjedAnpLN\nlyp6tbAUCfgIOqRCdmSF93VFOm7U2Nl3+QhxJ2q2Yb9cPXuNwmt56cBYwpm1KDSH7\n9bxeJdNHdHg0TI0SpkQXwbBpQ+KbmvnRuH3bwEezD1XMcC9x7vWDyDBX0ss4fyZnC\nDNahb7ldzmRx/wK/Zwh3sTw0yGox3xHKMoS/csoIz/CJuDZNKxv6kNtrkrBt4HG/A\nT3VmfaRANj2y5Bdoy+GYBdH1tLGjcrVW9Yq0HkoKcWVI2FceEzUxkazumy5Kw9me8\n9PmxEn27f9yECAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:26'),('probe_url:1:https://myfriendica.net/profile/sitesonix','a:15:{s:4:\"name\";s:23:\"Sitesonix Web Solutions\";s:4:\"nick\";s:9:\"sitesonix\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/sitesonix\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/46e18d45a3905b6d\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/sitesonix\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/sitesonix\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/445.jpg?rev=2014-06-13+17%3A25%3A54\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA5Xmoeam87MqJynSY+lUvw\n8BetNBICTFx7J4gnUdFXIZ/0KazJ0co7hrRK1IALUaEmEdJj0G3SeMrwwm4nQAv6M\nQPeqhuDCr/NgD9mIBNN3U0Tj6M4We60IxbJDLRTOLquA4mWkucH31sivDNLDfbqZ3\nu2Wsa99cpy685BhjvzmxCB//e2stifcia9ltIhpB3FtFM+vgyiFMnLknn4x/1KyDc\n5rETSibCQq0/nwoa7VskKtoO7Ht3E4Hef8qjMaEz6ImHHyojHk2oy6l4dnAFTSXpw\niUZAXwUfImovE5zwJkrqUGt8vsnBXq6J3CUVAmZokwdJQTC/DAP4XtLacEQ2kTvc0\n2vD5SYlL4MXcOesQTJTnv6D55t2UDLc8tnjHvEO7aruEkMw/SYlJLPLCqLQZ2+yi6\nKSxW7IdFqzYR2jd654u8oyzlERXaEWSnUZFW8c4YlK9SG2Ugj2hC4LQijnJx8Ml1a\ncMu3ECX+a0baZdzJvQG9svgegsHVG2bXGxzdGHY6jq6Sp1P84QNtfARRfkC27Fd5V\nRundrivY6SfPwmowQPkYJVVx/rIGDYLuS5P9MhsdOr6iq5kGgSiOOCPJPFuD+7XpB\n6PMyEd9Z8rRu1ESBe9aGb5U0HSCqn4MuP47WkxwMFOER1esdLQ50TpfKJRNGxCZXy\n7IZ1MuX0TZKcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:24'),('probe_url:1:https://myfriendica.net/profile/soloojos','a:15:{s:4:\"name\";s:5:\"Jorge\";s:4:\"nick\";s:8:\"soloojos\";s:3:\"url\";s:40:\"https://myfriendica.net/profile/soloojos\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/fa72f9bbb67ab10c\";s:4:\"poll\";s:42:\"https://myfriendica.net/dfrn_poll/soloojos\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:37:\"https://myfriendica.net/poco/soloojos\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/370.jpg?rev=2014-03-02+16%3A20%3A32\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAzO58j0c32QUtIyM+pdN5O\nJAcP06iUruYZkyM/9OqOKhBZQk+k7W3Dwzf0sbc4UdnwMsZ1qwxsF5RT7cDqRlG8A\nJJIvX2uwVByl3l81ITUO3Q5SU/Vc3lj0VVYZE/iYM15HqdM27ntCJNTpzoZTvVmtR\n2pej9xm80w5GYyGz96a/nO52Qj9fv7rvQ++hWgBFnl37zjqGUDgy8Gg9jP021Mm9a\nb1lL/bB+6U+CZhjc+VOxw8abwp6lxsblBDNCGHbacME68zvQfcptPmfb94z9W4s18\n7rxijur9/rabk5qIBU1GLKNB7Vb7qNGK9BRPC7bbzYRflc3UID4lZYQA1XZidDHpv\ncKjM2OmIWxE6twAPZac92BQrxpWX024CcBOt3qiO8BMepyEnEqt8CX2LdC/KpqLhr\n3/BmQlBfgJZsqrocDXSms+XvnxWf8MnRBZ2q99uBRQUn0ko3i4OI1XelZnRba4n/d\np3K42iDPZh8h3KqNXYJ0lI6li/dAI9MmhF/XAQqai4VPYwrPleZW1FRquHQL+oPjD\noLV/qLzSg0nqJoHHaTiTsFTocCayZ9u+Z1PXLhFsshH3Tp6DL5OQ2FqRdR0sDi11R\nA1Grg2bn/FPvCAzAUTifW2O86yE+Q/xWBzF41vuW3UudMCcsojuhxRFcY0MwoQP7O\nHb1d2OxNGQlMCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:19'),('probe_url:1:https://myfriendica.net/profile/stephen','a:15:{s:4:\"name\";s:13:\"Stephen Judge\";s:4:\"nick\";s:7:\"stephen\";s:3:\"url\";s:39:\"https://myfriendica.net/profile/stephen\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/5968afdfaa0a55f9\";s:4:\"poll\";s:41:\"https://myfriendica.net/dfrn_poll/stephen\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:36:\"https://myfriendica.net/poco/stephen\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/294.jpg?rev=2014-02-25+15%3A07%3A05\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwQzDw7KknZ7+9XRPdIe0R\nzx6a+fTv3/c1WH5hcMTHoPXlIgngXxzRJCb90uCmfz3CfUDehYAGSadRDZZs6ve0y\n2FfAylbVkgIiXIWm51WjJR6WTq39Cm2SCBVBziwp6hGKzlct3kIY6UYVBXJ7msyjr\nzX9M5qFZSa3oo3Or1FHJSvG7Z0fFZ209emdwSV2acDLa3mHIXUS0KEtqW6bfcTRwR\nzZOfNTo5qRqhhIHXhInhVuktqK5jCTqoWPBJqNOKCqt2sGpgeHhEyWUoAU2wGGRLV\nL14CSqsTC9Eu833H4gEmZglLCfBM9PFYyVIyzw8i13dErkjbxi6JUq6l6WAK36bTK\nSh9P5cjU8UY3G2BEVLtfE/K3qJwe8FpQ8SxkxRLAWjhg+W3GFV2+zym5kKiStg9Lc\n5rNZZuO0qTk3K7hPW7bkn4+jPcHkSB/fh3or5IsEUH4o2RYt7x+HpFwDW0/vksGEO\n4g5UoD2Ww1XZr2l7ShTnpC6yi57yRptnTWmiwbvEGoBNrC0TwLeLuoIk7HHkywCSL\napb7sD73ALcu4V+WIM456smPQ8/SnjxafjoQBwBXaaNwTF84wkGz2tswzkoyXzBNz\nOsEE1PN4/zrNutKvI6aolVoKaj/XQ7Zr4MI86fN0Anulm10rzNRdXw/T+phauQ1fP\nuDBTr1RlqtiUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:14'),('probe_url:1:https://myfriendica.net/profile/the_sos_card_project','a:15:{s:4:\"name\";s:20:\"The SOS Card Project\";s:4:\"nick\";s:20:\"the_sos_card_project\";s:3:\"url\";s:52:\"https://myfriendica.net/profile/the_sos_card_project\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/de2b54c34fc13794\";s:4:\"poll\";s:54:\"https://myfriendica.net/dfrn_poll/the_sos_card_project\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:49:\"https://myfriendica.net/poco/the_sos_card_project\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/524.jpg?rev=2014-12-26+19%3A54%3A41\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsVQ9NQ6q1nnDmXHovH/Vj\noZgpKnL44AmnP6QvHNCx2Q/Hl6VNNBauilPvNgpC1FmW33b84YCMfziNy4gBlC+Uk\nsnFppDtqOadtdZt6/RJtBgta5hzZdnLW0Mck2sC4nR1KtikkW5jDkdqf/o6bdosZY\nj8XmPRqPXG6eKM/3hiJGRXMKucdzOwKodPIwmvF9WxB/wrvF88rOvNs0SaXhROgNO\nvD5WYF48G1OR8vleuUpx6pZ2rLydRwHnxNkzAUKCX+y6gB9AYVS51Rp7vFSEXaKyz\n2CFzfJBHxxLfNMLjvRKLsZt+R6KblnqovqHaLinnBwIzbpmmfjlQ8M/H5s0yGgJz4\nCII3gVIPMwtC9H6O56/t+R7aLb6h+V1ki3fXuBXK+OOo47FBwvYgUARPw6PHS4Jfr\nkygHpgBbCqMNGihG+bG9HjsgSys4QQg+tGl0A7Bp0mJ+Q1nNGRvMYY8SYDV4Q0Fd+\nL8wWhrcIW5nHR6JTnJ1Ovvy8273dV+cbmsnBLpLoXFv1cVBjaRCt8iFB3PleFcd1R\nzTI5YTkw/9zqMusufJFZO1YStQwzdxRU2Wak4rCSshJHJJGGkp1j7HSqIWhO0Mol6\nFarApxX8dmBEPuUrsCq19wsT9eGinrN0mgNf1mxX3Jv9ya29BhxGfnl7+Wc/X5Tvn\noYEj0D2MR6Z8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:34'),('probe_url:1:https://myfriendica.net/profile/tonyphuah','a:15:{s:4:\"name\";s:20:\"潘隆å\90‰ Tony Phuah\";s:4:\"nick\";s:9:\"tonyphuah\";s:3:\"url\";s:41:\"https://myfriendica.net/profile/tonyphuah\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/5936952ed8eaebca\";s:4:\"poll\";s:43:\"https://myfriendica.net/dfrn_poll/tonyphuah\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:38:\"https://myfriendica.net/poco/tonyphuah\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/304.jpg?rev=2013-11-02+00%3A37%3A59\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvlN4eZjapDkcaZ1ykRCFB\n7T0gTZ0b+Ff8WlCG6q7yIdsc99Zb+fXi/Ire8kGyEfPv4Ff2Bv7ZOj5tL8srcZbBn\n90IJa/xH7kq6HN1HqGMwzptpHvLSYqjFm8JIyLn3lOUSS70g2ClcQ2u+RX1izaNaW\n7Ne6UuszlCAP3N649iSxjw4DViKAXkSNIIGuXy4z43+SU6ggGeFYIMgX1mTkE0gzZ\noxOU90CB+zNQgXIYD8XgspDB9f2W8PcpZMrzE0dMNwf62BrKHCPFcaf0uyLNWUHme\nzHvTJbaZAjJaVbd6DE06TZcMfRarFb25AabpxkmyCvGh9s/Lw/15hCykJfd0qH6NK\n6Afcel4n2OVtLp7gf6JtmTDSi+eFsvJSlXgnI/5Y9q5N2B+2C1qRpKLuiq9bj8GsT\nfvJnviiuwbCCOiazJa2WjoC5zpz4Zc9r2xPm2BcVYNBOxJUnFxBS4fMfEp51hwGdg\nbDRieEAJHb4bwN3jY+Ly5pOZZ5aBrNd0PgYZKh7c1OJOtQl4XNCR2X0veoGuVcibp\nx7uTrrbRPjlsOtD++EvimHu9YHda3CrLZVRdB1Y1qWWkWcl2SzALMmmC/MUlUdL0r\n7q5OxktMOUnqa+RKvfGjFQenHr+jZJrMeAQK9EKlkhB6H4f5zqKUlGVMDKLJHSneR\nfeoUCZory418CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:15'),('probe_url:1:https://myfriendica.net/profile/zlaxyi','a:15:{s:4:\"name\";s:9:\"ivan zlax\";s:4:\"nick\";s:6:\"zlaxyi\";s:3:\"url\";s:38:\"https://myfriendica.net/profile/zlaxyi\";s:4:\"addr\";N;s:5:\"batch\";s:38:\"https://myfriendica.net/receive/public\";s:6:\"notify\";s:54:\"https://myfriendica.net/receive/users/997b994a938e7317\";s:4:\"poll\";s:40:\"https://myfriendica.net/dfrn_poll/zlaxyi\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:35:\"https://myfriendica.net/poco/zlaxyi\";s:5:\"photo\";s:76:\"https://myfriendica.net/photo/custom/300/376.jpg?rev=2014-03-09+09%3A56%3A13\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA+G9lcuuPlVM8g5oJVgARE\n8G7mXo82BLHMCaZLhUX5Qwdzesr//Bu+pbOqy8JAeaSIV52VJZL494Q65KA5YngSo\nVLl3qLG69QmXLC+aa70kPut4VP5Efu/IiK7uaeEtgHrC5E3Lg2bmb+3Ej+ce4YqLk\nyFc1VRvylU35bI3uiw5j1w24Spf4tQgY4MsueLS3mrr3pYsKnB7qNu9Tlzht8za+6\nGDEG0kMZ27ur3UjXdAPLgx9DsxqlWoBVKi00b7osu0EhjeXi+nDNR9J61F3jJn2fe\nRxV2Acogoi4B7V5e9dk7LSZvOgSuK2/FFB1C1qNpPVKmhjrWhyZEjjb/V/b4e9FKS\nYCeEKb9qqZe/smqUmRiedq0z2b0kJRqJrbsVhx0aN5NUFsy/MeMctG4Cw7/yqxeJU\ni/+8SUG22mF8h4db99fNjUr3+P9w1imBrDHGMlsbreXg8Xr2kwMr56pzanMw7pA/o\nHZT3qoAaiDUC3mqMfM64MsKzxTQ9m9kStkbxAcTI1fKtoYRetS72y9tTPp34m1mxm\nWsJ7UnBq9WF24VzRPX6G9PI7iA/atmNGo/xUiR8iD1GZiLSNn3TCXhFHaaCtdqlKd\nqkxMa/+5tMuJrSLvMMUhTWhyuxHlUFHZP5aMM7BEe9Y6RNwf3xiXoz3wdTfiyjBON\nxpkyzuROUDD8CAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:33:22'),('probe_url:1:https://oradon.pegasus.uberspace.de/profile/oradon','a:15:{s:4:\"name\";s:6:\"Oradon\";s:4:\"nick\";s:6:\"oradon\";s:3:\"url\";s:50:\"https://oradon.pegasus.uberspace.de/profile/oradon\";s:4:\"addr\";N;s:5:\"batch\";s:50:\"https://oradon.pegasus.uberspace.de/receive/public\";s:6:\"notify\";s:66:\"https://oradon.pegasus.uberspace.de/receive/users/0b4d9b4c48604b7e\";s:4:\"poll\";s:52:\"https://oradon.pegasus.uberspace.de/dfrn_poll/oradon\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:47:\"https://oradon.pegasus.uberspace.de/poco/oradon\";s:5:\"photo\";s:58:\"https://oradon.pegasus.uberspace.de/photo/custom/300/1.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsM4vwa4jcajmSUZFXXWt1\nB7JrgTqEIqQ66g08EOjLxKlEpmZap1W4dXlnpP37wnVQ5F1n4YEY1c7E2/ZbpDVhP\n3LUIVv6BFYxLrAnTsoXG5726EL5utY6wxRZIOhJHY1KJJMYBAw5O8bE3OCeWVW6Qh\nltZ5ezvdi7KZfQVqbh2KI5si+IbqZqydjZPMCfhIL2bN0ys79h5q8yFr/LU3k7BUw\n5c2CprTQppnKi4rSH+J8F4Vv2Bxlwh4j+3IMM153Pvx4I1jRLl8tBvAkPSjP/QRhH\nYPAyZO1nyPvv6cVLqa8fnnOenJSFDF7qZm9FHu12A3X6QZGilqsTd52Plheqa2a+/\nrYjnapqNFNGuK4UbZc1/IfWl5RLC861T5IsD48VftBq9ZvNQzOip/6Bvt69LbEZw5\ngkLBF4mY/HedL9TGioaaRlDgz+3T/Wx5+Q/3dNwr6sVHJz6F/NpNQI0AckKqmcNxk\nYIKfiqTohwQgOnfjvPjETft14rGh6J0YfQi8R+H1LeupLgcoaijOVV0YLrizOVzdE\nmfInqFcPOMVdpeqyqpYrJEeo/KF48RWD6X9CWLGHQABdpmj0S/aei8/nnRGauf16W\nkqKtnEDVn8fWg37eyLVENctlHvHGsDmvR3m0MFEeMhoH9hp2emsHhUtcfwxr1PL/Q\ndeRcxZkKu5KUCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:41'),('probe_url:1:https://oradon.pegasus.uberspace.de/profile/stuttgart','a:15:{s:4:\"name\";s:9:\"Stuttgart\";s:4:\"nick\";s:9:\"stuttgart\";s:3:\"url\";s:53:\"https://oradon.pegasus.uberspace.de/profile/stuttgart\";s:4:\"addr\";N;s:5:\"batch\";s:50:\"https://oradon.pegasus.uberspace.de/receive/public\";s:6:\"notify\";s:66:\"https://oradon.pegasus.uberspace.de/receive/users/1ac52ca5766a8779\";s:4:\"poll\";s:55:\"https://oradon.pegasus.uberspace.de/dfrn_poll/stuttgart\";s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";s:50:\"https://oradon.pegasus.uberspace.de/poco/stuttgart\";s:5:\"photo\";s:59:\"https://oradon.pegasus.uberspace.de/photo/custom/300/12.jpg\";s:8:\"priority\";i:0;s:7:\"network\";s:4:\"dspr\";s:5:\"alias\";N;s:6:\"pubkey\";s:800:\"-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxzWMuVFgMiptw6tUtu5Hq\nhiKnpgrzGC2hgkL06WbkHGaPwbwm3h7NmLTe59mq7c1mELzU6+w1nm18q1zRHvBK+\nSYiUOMXqgKsHfF1Wgor46FVWqAasdAgtBOusMNdj/K4gLQfVehm94abyf+p2TLeyW\nsdxbOlhs14O1sO3O+JydfYInsf019X9WvrUrGD/PQciDNzCFAcDeRJvswt4TvHrFq\ncMQqgCePrfTb3+q8zRN034xSkOnKihkkn+NqgIooU2fkhRiZo7iyR9omO1YPSh+is\nF72+AUWcrkbtNXEdh44jYw9sctuspfEgLeBHioRPQZqOaDNbdqAg3hClDMQGL2eQ7\nkW8d67pRmxZZp5TVgV2EKUY0LxWOfoNFDOactTqQ+k7dofOs6PhChU696NeQYzD5Q\nJDgtYH9NNtwFoc+L4mVZNnGl5yKhVq3+8mHqCeyUUv9huGEVUBu2JJSM3cw2MJR/N\nscr1XtymzMNyJswLfVuszuERCvviPJpuuYjbLy/OfSadfj2WOo2Hgv3Wj0frMXbeY\nNoAJCc7qzpIlDegx8sVnxQ4s3P7IqTJGnbxmlX7iT8OFxydb35cbtodQ0fN0pHUAI\nSrDTkk/IBdSdAkI2ajjZCOvag9TEJYQ9lO+huOHyQRDh2gZ/3e1tLFyvnkfyHbPva\n5mS5H9bu27EcCAwEAAQ==\n-----END PUBLIC KEY-----\n\";}','2015-02-02 11:34:42'),('probe_url:1:iulian@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:34:\"iulian@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:11'),('probe_url:1:joecskues@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:37:\"joecskues@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:13'),('probe_url:1:survivalism@friendika.openmindspace.org','a:15:{s:4:\"name\";s:0:\"\";s:4:\"nick\";s:0:\"\";s:3:\"url\";s:39:\"survivalism@friendika.openmindspace.org\";s:4:\"addr\";N;s:5:\"batch\";N;s:6:\"notify\";N;s:4:\"poll\";N;s:7:\"request\";N;s:7:\"confirm\";N;s:4:\"poco\";N;s:5:\"photo\";s:42:\"http://192.168.22.10/images/person-175.jpg\";s:8:\"priority\";i:0;s:7:\"network\";N;s:5:\"alias\";N;s:6:\"pubkey\";N;}','2015-02-02 11:30:28');
+/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `challenge`
+--
+
+DROP TABLE IF EXISTS `challenge`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `challenge` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `challenge` varchar(255) NOT NULL DEFAULT '',
+  `dfrn-id` varchar(255) NOT NULL DEFAULT '',
+  `expire` int(11) NOT NULL DEFAULT '0',
+  `type` varchar(255) NOT NULL DEFAULT '',
+  `last_update` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `challenge`
+--
+
+LOCK TABLES `challenge` WRITE;
+/*!40000 ALTER TABLE `challenge` DISABLE KEYS */;
+/*!40000 ALTER TABLE `challenge` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `clients`
+--
+
+DROP TABLE IF EXISTS `clients`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `clients` (
+  `client_id` varchar(20) NOT NULL,
+  `pw` varchar(20) NOT NULL DEFAULT '',
+  `redirect_uri` varchar(200) NOT NULL DEFAULT '',
+  `name` text,
+  `icon` text,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`client_id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `clients`
+--
+
+LOCK TABLES `clients` WRITE;
+/*!40000 ALTER TABLE `clients` DISABLE KEYS */;
+/*!40000 ALTER TABLE `clients` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `config`
+--
+
+DROP TABLE IF EXISTS `config`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `config` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `cat` varchar(255) NOT NULL DEFAULT '',
+  `k` varchar(255) NOT NULL DEFAULT '',
+  `v` text NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `cat_k` (`cat`(30),`k`(30))
+) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `config`
+--
+
+LOCK TABLES `config` WRITE;
+/*!40000 ALTER TABLE `config` DISABLE KEYS */;
+INSERT INTO `config` VALUES (1,'system','url','http://192.168.22.10'),(2,'system','build','1178'),(3,'system','temppath','/tmp'),(4,'system','itemcache','/tmp/itemcache'),(5,'system','lockpath','/tmp/lock'),(6,'system','ostatus_last_poll','1422903602'),(7,'system','last_expire_day','2'),(8,'system','cache_last_cleared','1422901802'),(9,'system','site_prvkey','-----BEGIN PRIVATE KEY-----\nMIICeQIBADANBgkqhkiG9w0BAQEFAASCAmMwggJfAgEAAoGBAL0EwaczRvO+Cgts\nHUCJde+q53ynJmuc8bHYhBRJ5hYQA/20Gnf6LP5KFXgezl1x8AmcGe0UYUT/0jjW\naL6m20aEAEXXdCk33BubHkU+N6drb0fDa5mO4TQ5dwiL+9njvwoepAe8vzfV6bL7\nMNiLTMRyOZZQ8amT2z9/IP1b69BbAgMBAAECgYEAti1obDtKzk/CpKGuS+5w4e9J\nr2X27M9WUAALxPY4sdj7z8GPpUVVqj1DFgQzB/Nx1AFFJ7B106fxOODGEcMGIPe6\nfcP36DzgW83htO73olosOq1qhKOiElqMbHHUQ7hyNxjKZPgAAN9TfRGhjGevGl8r\nfc5qDsLGu+d8o7j5ArkCQQDd4HEkBr0N5DiGR0J4eNVbnq/meHTDRCfUS4wjmMh1\nP7RD3R7hkiP92AIySVOnSWTWiniZ8mdfNyKEwtWMvK3VAkEA2hamKv4hMdczrhTH\nBa5ovpa3/uh1yqAwf/CldVVDAvuhgGRLw9kLsT23IpmjjLyIcqhGYLMh+UjgSQcj\nrlYtbwJBAKAS902YlvjYuHcYHjqwYq3RFPLf4M2n9FxTjO15otYEedekRk1TlCfl\nmeARywqcBuZJzKy0mCO3sW266zq4PWkCQQC8iB3oRr7Nhlt/3yhaKfcU49h1/eFu\nZGLpB1ESCL4ggwWPp6SzzxtDgrWhrK3tSUKv0/bbO6BgD3cMyqY23PrzAkEAtdlU\npnK0A8CRKYgSl5hq6YRVdrTc37/2up0nVP7Mm/zTsPQaEpeNh8JXPk6nO/s9Zgyt\nTSuUPQy0zj/RY8u8vw==\n-----END PRIVATE KEY-----\n'),(10,'system','site_pubkey','-----BEGIN PUBLIC KEY-----\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC9BMGnM0bzvgoLbB1AiXXvqud8\npyZrnPGx2IQUSeYWEAP9tBp3+iz+ShV4Hs5dcfAJnBntFGFE/9I41mi+pttGhABF\n13QpN9wbmx5FPjena29Hw2uZjuE0OXcIi/vZ478KHqQHvL831emy+zDYi0zEcjmW\nUPGpk9s/fyD9W+vQWwIDAQAB\n-----END PUBLIC KEY-----\n');
+/*!40000 ALTER TABLE `config` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `contact`
+--
+
+DROP TABLE IF EXISTS `contact`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `contact` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `self` tinyint(1) NOT NULL DEFAULT '0',
+  `remote_self` tinyint(1) NOT NULL DEFAULT '0',
+  `rel` tinyint(1) NOT NULL DEFAULT '0',
+  `duplex` tinyint(1) NOT NULL DEFAULT '0',
+  `network` varchar(255) NOT NULL DEFAULT '',
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `nick` varchar(255) NOT NULL DEFAULT '',
+  `location` varchar(255) NOT NULL DEFAULT '',
+  `about` text NOT NULL,
+  `keywords` text NOT NULL,
+  `gender` varchar(32) NOT NULL DEFAULT '',
+  `attag` varchar(255) NOT NULL DEFAULT '',
+  `photo` text NOT NULL,
+  `thumb` text NOT NULL,
+  `micro` text NOT NULL,
+  `site-pubkey` text NOT NULL,
+  `issued-id` varchar(255) NOT NULL DEFAULT '',
+  `dfrn-id` varchar(255) NOT NULL DEFAULT '',
+  `url` varchar(255) NOT NULL DEFAULT '',
+  `nurl` varchar(255) NOT NULL DEFAULT '',
+  `addr` varchar(255) NOT NULL DEFAULT '',
+  `alias` varchar(255) NOT NULL DEFAULT '',
+  `pubkey` text NOT NULL,
+  `prvkey` text NOT NULL,
+  `batch` varchar(255) NOT NULL DEFAULT '',
+  `request` text NOT NULL,
+  `notify` text NOT NULL,
+  `poll` text NOT NULL,
+  `confirm` text NOT NULL,
+  `poco` text NOT NULL,
+  `aes_allow` tinyint(1) NOT NULL DEFAULT '0',
+  `ret-aes` tinyint(1) NOT NULL DEFAULT '0',
+  `usehub` tinyint(1) NOT NULL DEFAULT '0',
+  `subhub` tinyint(1) NOT NULL DEFAULT '0',
+  `hub-verify` varchar(255) NOT NULL DEFAULT '',
+  `last-update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `success_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `name-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `term-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `priority` tinyint(3) NOT NULL DEFAULT '0',
+  `blocked` tinyint(1) NOT NULL DEFAULT '1',
+  `readonly` tinyint(1) NOT NULL DEFAULT '0',
+  `writable` tinyint(1) NOT NULL DEFAULT '0',
+  `forum` tinyint(1) NOT NULL DEFAULT '0',
+  `prv` tinyint(1) NOT NULL DEFAULT '0',
+  `hidden` tinyint(1) NOT NULL DEFAULT '0',
+  `archive` tinyint(1) NOT NULL DEFAULT '0',
+  `pending` tinyint(1) NOT NULL DEFAULT '1',
+  `rating` tinyint(1) NOT NULL DEFAULT '0',
+  `reason` text NOT NULL,
+  `closeness` tinyint(2) NOT NULL DEFAULT '99',
+  `info` mediumtext NOT NULL,
+  `profile-id` int(11) NOT NULL DEFAULT '0',
+  `bdyear` varchar(4) NOT NULL DEFAULT '',
+  `bd` date NOT NULL DEFAULT '0000-00-00',
+  `notify_new_posts` tinyint(1) NOT NULL DEFAULT '0',
+  `fetch_further_information` tinyint(1) NOT NULL DEFAULT '0',
+  `ffi_keyword_blacklist` mediumtext NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`)
+) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `contact`
+--
+
+LOCK TABLES `contact` WRITE;
+/*!40000 ALTER TABLE `contact` DISABLE KEYS */;
+INSERT INTO `contact` VALUES (1,1,'2015-02-02 11:24:17',1,0,0,0,'','admin','admin','','','','','','http://192.168.22.10/photo/profile/1.jpg','http://192.168.22.10/photo/avatar/1.jpg','http://192.168.22.10/photo/micro/1.jpg','','','','http://192.168.22.10/profile/admin','http://192.168.22.10/profile/admin','','','','','','http://192.168.22.10/dfrn_request/admin','http://192.168.22.10/dfrn_notify/admin','http://192.168.22.10/dfrn_poll/admin','http://192.168.22.10/dfrn_confirm/admin','http://192.168.22.10/poco/admin',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 11:24:17','2015-02-02 11:24:17','2015-02-02 11:24:17','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(2,2,'2015-02-02 12:02:11',1,0,0,0,'','friendica1','friendica1','','','','','','http://192.168.22.10/photo/profile/2.jpg','http://192.168.22.10/photo/avatar/2.jpg','http://192.168.22.10/photo/micro/2.jpg','','','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:02:11','2015-02-02 12:02:11','2015-02-02 12:02:11','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(3,3,'2015-02-02 12:02:40',1,0,0,0,'','friendica2','friendica2','','','','','','http://192.168.22.10/photo/profile/3.jpg','http://192.168.22.10/photo/avatar/3.jpg','http://192.168.22.10/photo/micro/3.jpg','','','','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','','','','','','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:02:40','2015-02-02 12:02:40','2015-02-02 12:02:40','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(4,4,'2015-02-02 12:03:07',1,0,0,0,'','friendica3','friendica3','','','','','','http://192.168.22.10/photo/profile/4.jpg','http://192.168.22.10/photo/avatar/4.jpg','http://192.168.22.10/photo/micro/4.jpg','','','','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','','','','','','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:03:07','2015-02-02 12:03:07','2015-02-02 12:03:07','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(5,5,'2015-02-02 12:04:06',1,0,0,0,'','friendica5','friendica5','','','','','','http://192.168.22.10/photo/profile/5.jpg','http://192.168.22.10/photo/avatar/5.jpg','http://192.168.22.10/photo/micro/5.jpg','','','','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','','','','','','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:04:06','2015-02-02 12:04:06','2015-02-02 12:04:06','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(6,6,'2015-02-02 12:04:29',1,0,0,0,'','friendica4','friendica4','','','','','','http://192.168.22.10/photo/profile/6.jpg','http://192.168.22.10/photo/avatar/6.jpg','http://192.168.22.10/photo/micro/6.jpg','','','','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','','','','','','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',0,0,0,0,'','0000-00-00 00:00:00','0000-00-00 00:00:00','2015-02-02 12:04:29','2015-02-02 12:04:29','2015-02-02 12:04:29','0000-00-00 00:00:00',0,0,0,0,0,0,0,0,0,0,'',0,'',0,'','0000-00-00',0,0,''),(7,4,'2015-02-02 18:41:17',0,0,3,1,'dfrn','friendica2','friendica2','','','','','','http://192.168.22.10/photo/343e3e9f0f5a36ea763c101490db9ca6-4.jpg','http://192.168.22.10/photo/343e3e9f0f5a36ea763c101490db9ca6-5.jpg','http://192.168.22.10/photo/343e3e9f0f5a36ea763c101490db9ca6-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4QpA4flE9v17fh+yrMpR\nU4iKSxLOF/8ROTotrdQsk8HcHkPS7E60QUaRK45gDc9O+7FU1+90V+oo0BqdkJFL\nbFtTogP5fdNSD3ApHz7s03oBX9JenU/8JhxaH1VwEs3lLDlFrywngiYcEDZIeLGZ\nIFK1GWP79+ZwJ9WWoBhzCD4hg4excOWPwwQMjCLYAzI5INEPTw+R3CKD6EsnVLu0\nS+u3zBBsL/A+bgDDfgZoD6igJQlvenK5jStgfbiuVp1mqdXKJ8D+rYz5FQ72Yn3r\nn6AvrXcPQMbLSaUK5m1Ug7beasuhRJ5Z7TVtJ/RLNgA3mOX2A2Vy1i38VYmcTaG5\nom8AYeI/nSvMzJt7FYXOBdxKnSW0UhkXsjBQavefz7sp2Lhcw5U+7eaPi2fIkYio\nVHKU2r8uiJPFfUMAbHA2+rScBjn2lYZH0nfMKrZTzva7y6d19EOsO2aP5e4XNjU8\n0tX/C1iy6LPMCf7xG844iROXi7NPJJoTgx/Sl6+o0oqBl9J5wJDK5U33rUSqYI/p\nsPEfaStqA5CgBAvAsq0N+NQQndJzGfuYaIdfleyUSLIchHhEICE4SN62RHZ6VTlg\nIVCva4xdBrGlkGV/IgE228FwgX4GWELclfUH/KwcGHChlY8dTtVZHbTCuizvPLvl\nXuZQ9ROdQiwkYwGJA/bhM3kCAwEAAQ==\n-----END PUBLIC KEY-----\n','af2c1bff1518afaf2df6d3600a7f2f036cc758f0044c4c3c7649cf53edcb4faa','','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','','','','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQCp8Dy/Kp04TBGT\n4n0FpcvC2VuOXQb62qzikK7x7PXny/ObmM0L/Ew5tw71qsOnZECDy6tcow7NAMxQ\nbrALF/xJexHxVPBTj4RYxLIPGCzxFhTWYhzWm+R4pYOsvfqJJ7X6Re9Qc6NXb7U9\nAnrHYjJgHAA9POPDE5JOE+6Z9P0zzCpLIJi+pjm49CKu7VXLwQR25lKmjyXq6EDj\nYIk/WkzhBsiknaA9Rg7IDM0ssp820i8SRr3GQLyMfyTNPCIqB3lejaDZNpyo9AEI\nSGuc8O2ei9LJ/cg6aWR1D4hZxMg4LzZneggrh9jdZhyED+ZPhWtpp179T8KhxMqP\ng5Z+EZr2RIHwBiSbcuzGZQ1QgQb57/gJTsKlKWGHptdg1H/KxHGlexylpIF5X5pQ\nPLxBcmE3VtxJEIUP9Sf1/11DBrCl6ZQ1xhBiD31MGqz3pJiR5k2gQBalqPlVODPY\nBlaOTPS5duCbUTn+DqR+8igAJTsw/dIa1xOoRjtMB5nNyrijIIHZigF/3DtnnMEo\n1iNJFUgRr+R6B1sly8W2qFjgVln4ybJdf8HV8UWGNR7hZozPG6lU15CebAeH7ZEV\n1FURc0T1yHYJDWIXauonr2G8q+JkCx59tMSuzb4JwOjfEXgUWApSTay1KNXIc1/z\nJYv4Taac6VAAAf4MDvDbyRN5P76j7QIDAQABAoICAA6miXYppFhAJpvLQOAFxSVN\nO9lwJ7PkulbmBk8RELolGSFm8PaBj8jCAWYojKmXuQAjxOg9nn8J/JNKl569OKDV\nHVzi570seEp22qr2eJloP++jkbzmv7GvA0UXM8wzQjsLYHBdJ83X8ZYK6q7ZxmIG\nx/Z/k1s0Cr70dPOM7W9TwKmta72z8vIBCiRujaD9SPc/MAzv9mLkFwQDRJHTpSEZ\nRp76f+AIdCnHAMFDvPoq8KfwtVesKRUruO6AqqlY75u5Ng7D6ImgT555L93d3351\nq3yChoqSn3iAGE806dX+LACLwryN/6JGtVqlTEO6yuHW7heEktEDeDsbKxQ/TE6e\n7T3PZDqb54COe/YEpeiaA+t6CDfsWIOqi7YZen2PEqr1rYVTSt9RR9ZV+yLaDyfJ\n9Wm2j8Uk6x7KJ/AS/gakiVTJu2BOWfFySz+R8CO61XL6ZqUhOeRmYivv/sJj7eAu\nurjhQt9L8rWOt619PqlI1GxIWtKTgBQNuUN1vTVKb8QF9A8Yo34OkrXgwXCx9OyO\nPZl0vhvpHbEAX7qE4v3GDNOMJ7ACJWhJ1z7UHpt+q6Q6TgqwYoQqVeFmrqVYQgwY\nnDLNJyWZwcy6Hn13DHiC3yvslKXvP/McmAg+Hfn5Bq5bFq4auDYbJr/MDQLpTqhi\n8sWGkdtFJ4sCTf7wZn05AoIBAQDURDfn5JI7E4gWUfwtucSAsVEtDbO5yKFuVR2x\nKHC2XJgooNeWoIY1AsqfMAY2pkMUaQZ79RkV6zJLq3UCn9aAXzFn/7ce7qPzZdrS\n73Ku3NNlIyd/0icQ8kSvNf4OyoZjl6ByeaweE0y2PboZJysubD3cnVuNDVCAwMq2\nOUsgTb94i4Am/6gK8IoZf/OlLXmYJgcHKGsc63upBzNSnJRB+pRaKtUBfOEV+zNv\n1z8YB8d3P5GVfAu5kKOm9prwqkEq5FIUkoUrftHukxTGPaaLRcisJM+9JroshneX\nTUS2fsJErdwXJl74u1qvxBCQlHau5h/GMeRTDeXDl8v+6q83AoIBAQDM83fuT4gr\nhPJHRwq2/IAy/ZzESr02qxz/Wy0QSM4/uz8lsiGRijML0c7A6c21+cKj5v76tsNH\nQavPqbqr+p/90v9Vz7EdOKsK4eWT9kEQa7vqjgUwiZwnI79IgYJBmKjabPk9XoQy\nRBn5WC+IISN3PQi2W1fyDxn73k4RS6TcuTN0UrNIvDcX/NJqBiJD5horZr5KQQR7\nfT/jSNhkuY6HyAZccwU0C/ShBKhIkG0RWo53Ul1J8IA+DvUBmQB7kESrsUbnr6Ob\nEA8qDUrxPudlOAC2UOsfL6A00dQIVtkZxH/qUbXvmRUM9GNpVFJiG8TUgTv4Z5Mp\nrjaMpE79tG/7AoIBAEckWgxpii0snabFcZytr1NmmotcFUmGGbzN4Da5FBW6sPCk\n/7ynLnPj7J8vzFVSohbcIGU5P2AeROwhmgT4Jz89KGTvyqMeXmq8T3v07t32ew9h\nmeJ4P8mpOSX0FaNFc4c7kXXsm6g01bgath2qCAn2E0G2p7F9reaJNyedyjUYebzg\nHGJ1uw93kQF85d8Nf7xjumVGwaeesQJ0vFnKytHWNxSFWIC4JwRj/dhVLvtR2CN6\ndcPBIHjgJklWS5WvqknC3lOwy9tJFPk96G+MyB3TlK9FYy7FJQ65PqnCJu53S4sT\nLjnADYKV4I4aS2b5q1FxJWMa46iGduR4ItHcPD8CggEBAJpsiF0Dh/Jihbq3CJe/\nwUiqVsiAF/ltDLhLFrVCZkUW7QmWIjzrCHNLbqFkiR8oRUQB9PUraA/0p2Qc2w5i\nFNLHfKRHjYga/qWAd974mSWqRzkAMWDVDtde0+3pxx9tyyxpF5Lp+Gl3bqq1i3ri\nnTpmvn3IbYdxYX6pjeDyQhIdaWuoNHYFeu2UDWbdoEvQwL8a9x4zxxDU2qKCbKnY\nNlCQolpeP/lrWLNKMxIZ4FRHCzlU0f24PKiF1I2Tnw17MoK7XFWNvZREkWh6A5Gq\nd+eIPuEgL0icNfYWc9Ckv4fuywLe9lrF2VqdeZoPctOBYNlNVsZgJD4vieKGmw4G\nOqkCggEBALkyBL734pf4dlyKmZeTGvv3Y8f45QmJSivGIksuTBDSF5MSLOL5hQwX\nnTnbi48X2fmFxfuPxkO4fhAjioVG0HXwr9+6CTYQmi6MK6lfFEKAh6JNO45GBRuO\nCWbsFUIrIcPULYkArtyeVz7bWs0yWUpzguddO1ekso3bZlk3fPp5Kt5b1wJAkz56\nPsYvAp9oLG0Pc1wPDJVBocsDtDVnZCxxz/rViuajut84llz5/9l0iGzB4bJrA2uG\nVX0A1gkaHRb3VdpF4856/pJAoH2ljh1U+5iquHBuvvK4vMxFeN+1fVm9c/Ksb2OU\ndLrR3o8mxnuDuIMDIUjpEZaR+FYKCSQ=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',0,0,0,0,'','2015-02-02 18:50:08','2015-02-02 18:50:08','2015-02-02 18:50:08','2015-02-02 18:41:48','2015-02-02 18:41:48','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(8,3,'2015-02-02 18:41:21',0,0,3,1,'dfrn','friendica3','friendica3','','','','','','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-4.jpg','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-5.jpg','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAliSi9id9Ll1dpzXC/lL6\n2/5FYxdn0XYb5I2JeXBNopwbXOLDsnnzXlV2NN8riZaYRQcIbS00OuAvyYj/IG3i\nDykD2zPjVnLEWADtj1YhLSgKcfQgv6Cj/7CPdb1Rg3icbvWdVY9wabcblVa9k+qr\ngK273C47lCQzXgvMtPst1DOzxtVCGmPJJHKjXZ8hDvf/IS0pVGa0zIv9kdofqQV9\nD5u5LuNzRuEGnrpAzpfzMueDppBrrrr37sKrZfCvyYHZ/ouFgZ3bY9NNVnjuFItP\nrcDlJPL8NhGmmzuYtI03MLor+1yVdBKLIJ3G2Bxzn5tynjSX9XZzOQgC3+YVH4TU\n7WDUHjTWJ9mliD2M1WXCp2Lwc/pV1Prnvv057pAqdiMhnddzucV9nLk9X9fR8xyy\nC7PRwx0hkB427EtAYaOTr3RtInP6+cm+3M7wd6ZKTqWAU+Pi20RNrQRsqfHJ7+hx\n+i5rIG6/knB/C+MAAutEH25oY8kJYtJzXid2OBSE462DTuYaee9aGHUDNy+HQau8\nBhJ4/Wsc7Nf/7GRZ38SVT/HQShl47B1AG5AyomyWgwn9J2KJ8kMuScPmBv5u7Mwq\nSjLk5pLkwyUtZwUu8UtsFKw9HLcRksGSze5s2cbw3rf/6jgKycT72Bfm1fjRnv6s\nXt1GdSzfG9zVHuEwRDgTX3UCAwEAAQ==\n-----END PUBLIC KEY-----\n','','af2c1bff1518afaf2df6d3600a7f2f036cc758f0044c4c3c7649cf53edcb4faa','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAqfA8vyqdOEwRk+J9BaXL\nwtlbjl0G+tqs4pCu8ez158vzm5jNC/xMObcO9arDp2RAg8urXKMOzQDMUG6wCxf8\nSXsR8VTwU4+EWMSyDxgs8RYU1mIc1pvkeKWDrL36iSe1+kXvUHOjV2+1PQJ6x2Iy\nYBwAPTzjwxOSThPumfT9M8wqSyCYvqY5uPQiru1Vy8EEduZSpo8l6uhA42CJP1pM\n4QbIpJ2gPUYOyAzNLLKfNtIvEka9xkC8jH8kzTwiKgd5Xo2g2TacqPQBCEhrnPDt\nnovSyf3IOmlkdQ+IWcTIOC82Z3oIK4fY3WYchA/mT4Vraade/U/CocTKj4OWfhGa\n9kSB8AYkm3LsxmUNUIEG+e/4CU7CpSlhh6bXYNR/ysRxpXscpaSBeV+aUDy8QXJh\nN1bcSRCFD/Un9f9dQwawpemUNcYQYg99TBqs96SYkeZNoEAWpaj5VTgz2AZWjkz0\nuXbgm1E5/g6kfvIoACU7MP3SGtcTqEY7TAeZzcq4oyCB2YoBf9w7Z5zBKNYjSRVI\nEa/kegdbJcvFtqhY4FZZ+MmyXX/B1fFFhjUe4WaMzxupVNeQnmwHh+2RFdRVEXNE\n9ch2CQ1iF2rqJ69hvKviZAsefbTErs2+CcDo3xF4FFgKUk2stSjVyHNf8yWL+E2m\nnOlQAAH+DA7w28kTeT++o+0CAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',1,0,0,0,'','2015-02-02 18:50:03','2015-02-02 18:50:03','2015-02-02 18:50:03','2015-02-02 18:41:48','2015-02-02 18:41:48','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(9,6,'2015-02-02 18:44:07',0,0,3,1,'dfrn','friendica5','friendica5','','','','','','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-4.jpg','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-5.jpg','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyvuTsaZaTgPDm69uxixR\n8qd0ylkeA/IY3KDsI4vjrLuF7WLmU07lzQXmilQJ+MlipIju+wFXx3a8ksavEYpP\n9ZU9YrpXe7zneHRLTxgMDH9IMbSCIUAkEsozpzF02Ft0+G36tzIET2oTuU6uLtx6\nI5ifmF/qFC+4avAoABQg8qfOPpuaP3AJ6FppqEifUsb0lTWqP4zg7PQXC36oKIJ0\nUDuQniVy8lTxVfkhoi/aHZw0khVXe6tDK7C0ALg5U7jLTDNdJ1R0v5iC41QK4CEt\n5x4x008mdk6xLKGZiou1UuEPv/+WSQU1Q21JFzNVGBASkRu7dUVH6k+59VQr3ONI\n5bdbAZviVY3ezFNtBeWWfDk06BWoZwX67eGG/dVsCPnEkuP9CpemcwwGZbYCIqf0\n++5h0CU41CjNShHdBD+Q+ZQmT3I4sAlPZ7x90nA9KfuKM9QyTPQ9EmK2bxq7TKvV\nzLqHptL5mC/VH4FbO1eKf7p/f7XxOaeXGANUaRSPwLSO7lk8lkl/wj7sNJYGYygC\nMLTqH8GTizpyPkSDv5xO6bYn/g3BYFuUM5x1MZVS8MdG2a3L8UzRiXUsm/AjnfSV\nImN2+8bHJI0wy9zRxfEaG8pvbupb7UU5zWr3WRkSVr84Bq1SJNxLfWZj3GHLaesr\nu3exEdYGfxLuG1zHIROVwlcCAwEAAQ==\n-----END PUBLIC KEY-----\n','','1457f73164eefae32c107b310f3720c83bb5c7f9df88de0114714f4c77055337','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4HA9qXSYftx7tS6kTVvs\nBhVx7hPK57GIpUU6azuFGqmrAqEEsBh2+oLTDzYGvq7UW5NAbL6QdvoFkJC4tTJK\nwfMO7noAhBzzrLpGjJn6W1v7OaGX1VAQM32+dqgUP7aJF91DKx8nCcAqo8yPp4gr\nUe1Ev5Yrsa9so6XRXEI0n7PHTgRir8HIAHC4sDl1THuUdahD0q5hy+7ymyUHHEsF\nJJIC4zCuFNGdk2wqDdG534FAU5CKOL/OZW1n9vbumU8zwk3hdt5rmzxyxx6ji9KU\nJiSLSErGLo0xQklT2N+DND61SgSqKk2JDmnD6NtCb9u9Q06E+jpT4mKrTrxURqa0\nQ0So/7ZbJJWb2y7Yd7KTN8pvVzC3Set9+YXH8EVypVsAW/Io6KoUiFEuJhp1291R\nVXjt4opm3unxNVCYnl/Ui/p0mw9QjuaEx9/7Iu/RUKjXFWzqmzpXEinfVk6rscC5\nTJn7BAZFkhZD85YSmSuPkDbtiAS99uIyO2jaD1G29lkVzdG74KW54r2Np6rIOgqK\n4Gsr8H7LM/R03jBMPCjHtWT0bOyT6ySzqdq9YHsW/9Fr5uBL5EeOuL/xKuRNaaQs\nIflXwfcb35ouz5PDeP3T8m1tBhwWN2kiWVCiQuRQINhG1vFHU28Yof3XAQ3iWiV+\nfPp/WfEiQ/HnkJdmlwq82eECAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',0,1,0,0,'','2015-02-02 18:50:05','2015-02-02 18:50:05','2015-02-02 18:50:05','2015-02-02 18:45:30','2015-02-02 18:45:30','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(10,5,'2015-02-02 18:45:10',0,0,3,1,'dfrn','friendica4','friendica4','','','','','','http://192.168.22.10/photo/d04134664ffd0d558b08ee01f6859f3a-4.jpg','http://192.168.22.10/photo/d04134664ffd0d558b08ee01f6859f3a-5.jpg','http://192.168.22.10/photo/d04134664ffd0d558b08ee01f6859f3a-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3nCYawg+HTyQgV7a7Osg\nCXeACOitKLhcb2WDTN/lLOMO7n1lSm3Kdv1dbOc0/lkAPeB2XsLF/aDfoUPWWg4Q\n/oRPrXFIi2dK/cIQVvgOhebQheztAYPJyaYYMWVK7bLbPuKVTyzALqkWD8Zjjtit\n4Uvm3kjmcofKr+/Lw+VFaEBMESQDbP5eTDtQeDGGjluWQMj1/D+V/Tcm+SMrAVIv\njyklQEhBJlYGJ+LsfXv4XXbeH73dkIXkQW5JgWQyPCloJ+PxmmjjEDozsdgmFQXq\n6T9HFVHvW2O2lmDoaTrbIGrULWBpslKZJJrV+LgtkzhP4uuKfJPD2DpMJ4+ixtBE\nzM/o+EuYDTz0P3dTvwruq1t8gUYcQOVUzEp1LM0qYDMVY86XneW1W5xghztl5zqy\nGBMBvjVIFvMVL1cVeXze4zpwwKln2cArepToSpN7lmy9EgBd9mZrVLWosZShB9R0\n05kBc2Tfv7FlixwZ1P8rwJn9sEEs9oa6TnRLL+7L8eqapg6vUI1G7e0HWWEjdHsR\nrYVHYW+ogtOYjrQ1Tfh1W2PtNaez5fGYVBDjC+1vy0scJmqrgy00z7MHBT2WTOAL\noHbdedhpa3UZ0FrsCto+vqil8BcF5aBhi2Hi5YdKtbY3EBsaabcSO2joc7rlmee4\nxdKfDRYXCPysFPhZNgIW708CAwEAAQ==\n-----END PUBLIC KEY-----\n','1457f73164eefae32c107b310f3720c83bb5c7f9df88de0114714f4c77055337','','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','','','','-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDgcD2pdJh+3Hu1\nLqRNW+wGFXHuE8rnsYilRTprO4UaqasCoQSwGHb6gtMPNga+rtRbk0BsvpB2+gWQ\nkLi1MkrB8w7uegCEHPOsukaMmfpbW/s5oZfVUBAzfb52qBQ/tokX3UMrHycJwCqj\nzI+niCtR7US/liuxr2yjpdFcQjSfs8dOBGKvwcgAcLiwOXVMe5R1qEPSrmHL7vKb\nJQccSwUkkgLjMK4U0Z2TbCoN0bnfgUBTkIo4v85lbWf29u6ZTzPCTeF23mubPHLH\nHqOL0pQmJItISsYujTFCSVPY34M0PrVKBKoqTYkOacPo20Jv271DToT6OlPiYqtO\nvFRGprRDRKj/tlsklZvbLth3spM3ym9XMLdJ6335hcfwRXKlWwBb8ijoqhSIUS4m\nGnXb3VFVeO3iimbe6fE1UJieX9SL+nSbD1CO5oTH3/si79FQqNcVbOqbOlcSKd9W\nTquxwLlMmfsEBkWSFkPzlhKZK4+QNu2IBL324jI7aNoPUbb2WRXN0bvgpbnivY2n\nqsg6Corgayvwfssz9HTeMEw8KMe1ZPRs7JPrJLOp2r1gexb/0Wvm4EvkR464v/Eq\n5E1ppCwh+VfB9xvfmi7Pk8N4/dPybW0GHBY3aSJZUKJC5FAg2EbW8UdTbxih/dcB\nDeJaJX58+n9Z8SJD8eeQl2aXCrzZ4QIDAQABAoICAQCwFwAaIvO+nQimV8jrNRLS\nlyLDU14gOMdoPA+gsJs3FyWoM2M1Moyu8dPcnFvgYdUVYEvsxfscjf+ttA5ng+Tp\nlOUDME+VWA3LWH8fs3OdGGbcia9R2rZLX/3+pNL2RiX7xkr72z5KxS3vRAD1xb2P\nUuRcmNsBVwyavO+tPfiB0JCv4nr3QMfFqKsPAJXKgy8wvOsxskXitkA8f2m7xhRr\n4+9GBxyeEvRaBURdgU4fUQ6CQeZgrgSmyZcHSihbuqt2aJpcJBgzPNMk7SIOAxLf\ndk6dUqV5QqgCRPv3LS6I4CZmw5ArDphY6Zye5uCSWMp+s21b0kWcWiPj65kHsaW9\npU/ffgJGr3YQBBJ+bca6XGuABvm4edolk4OS08CKa/Jh3YLO95Pvvn0Uj15alq2D\n7itEUv8LF6r9EA0KyulEAPYyTeiDEXcis0vxo4aimmq3SbhxxwngMIWvDmTrI5C1\nnjYsRw/4D6GWta32dLpYr5MgGMlJmw8gVa8yauDANnOoM5Qn3rKNT/meuxE1EwZU\nz7q8mfdiO6SMec9Q+X/irbJ4l+IRKW5qgqUOVFKRs5DuJI8FbpQioHs/fEDtmTUP\nvIMBXncX74vhoTUX+gZpuGMFWqCMmE11YR6wA4DnmLUCf8VSHez9noBmEiTDT8eu\nIBVR/p9qsc9JkYNo2FG9nQKCAQEA789ecTua3S5BXSA0w4bjnvLAMVG4PejLNuE6\nqRosRFx3+SgnH7/WMMLfwTRgUkWQA+ehMgr43pfI28ECuWqlqfsNJK3IRC33i777\nMefCQ3CXNpTWjLnVvv4hMjqLCKfjxzSlCt0a4gYsZRdMtqzn6XhgD/mCCV8xBq5s\nevMZGnmxeAuGSpfHcj0NzIz388r3t9T7mDP2x2SQ2NS68kbdWiddkbayUWRnvlhO\n8gxjECCqzmMnjeDH4I0H61KCBKxwTdR31u4upBktRE2zf6gLyjUMwcYVGmSt2a2o\nRgiR7lqSLweND6Wa02IvhpvlwPoWLUQu7ZXUi9AT+bhjw6yOIwKCAQEA75c0fvEp\nsUZlau1JgmHWXLyZS6HGNylBYNqKLgupIq9F1GLedGpByPgOsIINNwPP9CyxgQxQ\nRsE7Idd6tg+7FAHo6CW8YhKvMtbwQb8/HrOABv0noevDk89uPIKMlfwLgL3noFx8\ne8WpAQ2juEm+kpzfclu48u3WxnGi28SSHWrc9dbUxKPL/aMvLQ9CuZiXzSBrE6Xr\nkKJFrDSVAleUW9k9zfLW22MdFYBfMPa1FJCGVHLdzknZF1zErvHYIjTYLrAkrvmy\nV5flXjz7wpjL4g0ajCzb2YWi1CbJ5SWVRL3OaT2hL4ijSR122TxH6QKxHXDZGDQD\nBCkk9PZVwGG+KwKCAQEAraUrjrSJU8UtoWAztK1U3wCJ+GxjC7kohOmcD1ybVzjZ\nyrmvcsb3MsG5Qe5KHOiv+pPb3h+hy5R+5dkhvt8hbC8Uek236N6cFD3LKHzX5vt9\nExG9NZNO2gisQvGvQSpIvjM5mt81mxq7RMwVSWV0XFNEw+x4o46hMmRUusaSk+Aw\niGtX52V2Dxt0hXxCAu8iZqO7Np/R/tmsJMYNRGfZ2nEMyPlQr60Tjfnl2FDt3ny5\nEc8skgiE0u1sIZLSAM5YV5MU37YCYeK1K3NUGYi2WMoHHbzwBPeIB0o+wc9s0/oT\nRiiilQTmUlATd9YlDJJKQqbPkEvg5whZnoZM/yBQnwKCAQBFZt9mBiW1nFa0apfo\nlL6rjlY5elsYj3LIw4VTYT1VNsBbjWgzALSdqn1W09VQImKSsH+aih6W4FJosypw\noo3mdccpuAShxBfL+kcORH/cPNLRM3PPi6PTpTqhfI+Mwr3yRRBbe27zy4XxMCpE\nr9fsUFTJo5gnho24XiJ21rIco1/uNpTbgTcN+b8opksFyBXw7XsW7fEWrGrSP0kK\nrKPlF0C376gdVNCP8eehH1XE5ziCLePiZbHk+pJeut+IyRX2MD/wD5SBmxZt/exP\nqkMk7/bItBXbJMLOAY5qOkDK8NBh2+BdDI+AFnDe7H9IF+eGR7IbOLXG9sQl0VV1\nrNqRAoIBAQDcaPs8IbbP5SdAGRUMotS94XRdnJOTuJ6jev1zS1yvp/8ptMdkByoy\nqXw4UKUXpQOUDr82B/MPWSRAS5xjXogfbYIeBLm6CpYtjV+XhGJcGbBg/wVUMKvz\nFreSCIEICWi7OiGQG9j7E1hLWpMI59LBFHgLBX6KvNAiuQbTeEHus243FXFlD9Sl\ne+k4tw1/CNgPozRfrLJF+uxUH0P9kYXFXFxXff2PK7VLr3/2Je7uV1ckPLlAJCFI\nnEQpdPjPmRhmohiHv5NHlqLVNX8I0XincM1XPdD/qiIqP+asrc9CF4z/Od9F0XSP\nuAn81wfguN+AIeC3BnIO1RLZnpAEwUWW\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',0,0,0,0,'','2015-02-02 18:50:11','2015-02-02 18:50:11','2015-02-02 18:50:11','2015-02-02 18:45:30','2015-02-02 18:45:30','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(11,3,'2015-02-02 18:49:20',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/389cca68d9a2e64538a81680925703b8-4.jpg','http://192.168.22.10/photo/389cca68d9a2e64538a81680925703b8-5.jpg','http://192.168.22.10/photo/389cca68d9a2e64538a81680925703b8-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','4968c78f8a9df6fc4e43949748a0e94567dc0f83166cf83cd8e0f98f406e1b3f','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQCjZo+s91a7V4+A\nBcZd/axeCE1p9HDhxwEwDWGoAePFzaksP4MyreLJWgf51LwAzYaEoeyYv+iyUEMt\nfkn/9VLWuA4qRG8yKQVqh28OdDPUdwsvIo7TmFgkVBL3yOuPts0EeJddle+CBOCO\nViXl5LgVf2pPY5ELIPmOUOQdk6IX6aixV42gt4L8V+hQVCS+b4S+LmGBTxr8e8XD\nTYEY1kQQpUtXU9G1A0kdr4bxGuA0WNY3pplbOwV1/F1YYpwtANslhuV6FTKgEjCd\noQhRaKFH0lp0HMu7s48R7UgPjVkP1c5MOAXqJo3biqMyFctAx78jaHij0VONr2qL\nayYTPfY0fypBb5uKfYquvcRQO6v/oaiZ4jP0hLszekBo4sPqtDduMWwlzEmEDqNT\nMctn0ADpgnvmPT69OSSyFE6d2dxcPbP77v5hjF3UJ6inzqzuxE2NxYK5UfhUwL3Y\nBynrZISwN+THekkABx9/tqwLCd2z68ocoaJi/tc2oQKSGwNgk/pa7Gg9zkgMdhQK\nAzYcn+cNpODx6LOKi7ILhiNEISHU6CnobbUpwNZrESL0fhSwxqTMV6s9zCQxdtVX\nhhrzhh9MCz0fRi8wYvU3ZIbEsP36iXAyqUhRHm3LZoH6VL/qHLZIlZGKEK48cbLo\npqiPzsGMazBECJvRg3mWC7mfzEQqAQIDAQABAoICAGFrR2PHP0WIiby5NLBbCoYx\niv4Nx7NEc5fTkpKZNdR7rk38O9teQqTrcW/o/oG4B2hSJf5YBIMzSSn5bmMVP2NW\n7tMSY/1S6bC+uF60tyYIJ3ndr6vF218lZP2oI5FWWls9Dnm0Z8xr3fnesM+kkn/2\nrEpSwWoSKddIsQhVOcHqBDJfUcgtQQHz40TpNdL4J/s/KdDvedZocNrk/X/yVzhZ\nZFbXWWMDZ3c0bE6ZSGzNPkKFqE71HGdgo8KLYDOQnBd+mpgzxTAcSDHijVQD/owU\nhOtPM8Rf5H+6qUjka+H+BfX5PMWCYPcwa+Xzim+/51xT8AEzTw5dNDeVFWlJetyT\nul/OUTUZL9oFdFlxaMvLZkhcKeVEvms6/QvUiouIe3g6l+yfqbqAnGSQLtil07Kv\nfNBmX3/PR3d0/NjClr9afWrLUXUSgcWXF70JwkUk3pes8WNg5v1/rk2i6Cqj7ns8\nv1Vlq9FThQcNbCNK/Qh44ytJeox7+7HzNWqYeRjYm7pUTm5aIrSUR7avETUDwSPg\nmd+IfL0m0gp3tFycY/gDNmE7BLoXZuPl0/vm48BVOuVszJ7dV/YQ1gP+HKtzPntI\n7CFXl2zxr9gLOoFC687eMVUagTQjvq/M1LLOlkr8RNqPKS/a7F7mwW+X0l0T5RER\nir5g5xsSqkJbVrPSvP7VAoIBAQDQxgkdBMDqK0PtxsBsFhSD1K8ueTXk99OzRTxj\nCU8fSGJr/lKbsG5jRHBmlj1HViRoD2JXnTfzwtIkbiZMjRJG4cjj0d8UDb4dUwZ6\ndU08Mb2Y8p7oKl+Dv6lI5GylP6vy2N7bcvHLgxWteeByhOIp9mNHKD4c5Cg3iOLD\n3HuUOEGY9DBqcpj94QYsQUdpLTp1cAq5Np6B4ZC1lGFfyzAr32NN+sQpXVHt/RsE\nMqKKu6R1U1rWpXCCGlJWkLdC9QI/raJKfQXGvixYLMngmb5nuyfp46rUmaur/Ogn\nq8KA4eNQdDa1UP1YKEzkbXCebcxtiJK+9kGeUCalUZx6d0lLAoIBAQDIXQDAfvta\nnU32dDJTA5GT6upTYF9NwYAe+89/kAvoBIL+nnbiOPsvReBb+XQsD6UucxgQy4yo\nCcEWhi2Bvg4ACoEIK+XULwm5SurFlptpTbpivVkbHv66O4uHbWRoegHAlz7lISIV\nLPNYrn71WcDVkfFDOBu7llXJ0wOUAeaX1ESAnDRHKZ4q/z4bSvMfiAbeL89Ghb/t\nfVC74Ac5cWYIgY10jGpSPxYUVb0Z1dka9BmBPqhaXk5ss2Nz5cR4F2VWIRF+29bU\nw+ws7iBwPiuK2zliesH/F8mqs02bH207PlcGtBH5scrlQWwPRItF1E91glJEyDcF\nXldTHFns5zZjAoIBAQCbEi3cvxYoGaDoMdPltPTiAw1oIKJWg3pc01WKXnTF0LdC\nbfKgMAmedExk9r1nimWaYarzVxUjW5dJdgO+op5rxfO4vL/NHnQTRgMu3IhU6MFi\npPxBiI/PxYIRYZINoGCxDkNij1toheKJK1j61xdCgf+17/9K6HGy5ltBjjjAnJSk\n7uQzfRGEqisynf5T8kNUzbc5YYeVA53AMgmt5LfQLqqNVnF0JBviATmbAZ1YHQ6I\nEzUK8HHEQZbdM7rb4i8ca3V7jKfIuqMnj4UX7jrOw+ZexTuzlL0+D6nFJcBgiOiW\nbuvf+9tiKvUKSvv2wamxxlrxuup8lB5Qd3EaShZHAoIBAQDBG8HpxXkEMLA/ZGZM\nVBgu9C68BRpVmrWdJx0p2O9gw1hthtUV281cFoDSpG4vOTT+u7bqGQSLwDr1NoUN\nkttzdqw97/Emu98nUulLXoiSyXNmTxBeb1UasOEduXUYrN6bfCoGNBThS92OD0AV\nwFd2f56EJsOz3IT6bAH62Iois1cCjYplO9tRnYeCTo5cSYI1Cuc/FRGSF0GEkbrk\nxkKM2DA5sEuY0Wy6VJhZGh6RN8qNIpKn5lS3t32W6lCdXg8xH9X46nD3x40NEMT6\n6TCWOAvqul3XOloHx6B4baWdf8vojgz1F0JyCsfXPzzsJGAg5WXdHQrKhc6sL5sM\nFRv5AoIBACzRCOFP9Yys7eBDF9E7vHOllH3yfKFZl23kywn8VqWBApd8azn3ThFr\niKvpQI4LjR0s62al/oLYRQeAQYX9zQBJQntQp7oIRMRCn4IqPNTuwWJ3A/RLlBGX\nsShEJhIEBQRMb/ZqOQ4Hgu1/k5AhYmdbT7YMNGXKscqRRWUqT7MDRsDCQhx2ue8v\nVSB49HqYqGBpTPWix27sO/VzcAvEjXEAJi5jOvLbkkHlRJqu3tZ/+szkoWx1YFwi\nHHJ6L6Urou7sxdnXULT+iMW+/oEob8ZezbDRLWjiln95rhwUnu17B7paZmIVe6Cy\n/FhZIOns6kkCi8CcaS3V3qLfXQrQSfI=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:09','2015-02-02 19:00:09','2015-02-02 19:00:14','2015-02-02 18:51:35','2015-02-02 18:51:35','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(12,2,'2015-02-02 18:49:41',0,0,3,1,'dfrn','friendica2','friendica2','','','','','','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-4.jpg','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-5.jpg','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4QpA4flE9v17fh+yrMpR\nU4iKSxLOF/8ROTotrdQsk8HcHkPS7E60QUaRK45gDc9O+7FU1+90V+oo0BqdkJFL\nbFtTogP5fdNSD3ApHz7s03oBX9JenU/8JhxaH1VwEs3lLDlFrywngiYcEDZIeLGZ\nIFK1GWP79+ZwJ9WWoBhzCD4hg4excOWPwwQMjCLYAzI5INEPTw+R3CKD6EsnVLu0\nS+u3zBBsL/A+bgDDfgZoD6igJQlvenK5jStgfbiuVp1mqdXKJ8D+rYz5FQ72Yn3r\nn6AvrXcPQMbLSaUK5m1Ug7beasuhRJ5Z7TVtJ/RLNgA3mOX2A2Vy1i38VYmcTaG5\nom8AYeI/nSvMzJt7FYXOBdxKnSW0UhkXsjBQavefz7sp2Lhcw5U+7eaPi2fIkYio\nVHKU2r8uiJPFfUMAbHA2+rScBjn2lYZH0nfMKrZTzva7y6d19EOsO2aP5e4XNjU8\n0tX/C1iy6LPMCf7xG844iROXi7NPJJoTgx/Sl6+o0oqBl9J5wJDK5U33rUSqYI/p\nsPEfaStqA5CgBAvAsq0N+NQQndJzGfuYaIdfleyUSLIchHhEICE4SN62RHZ6VTlg\nIVCva4xdBrGlkGV/IgE228FwgX4GWELclfUH/KwcGHChlY8dTtVZHbTCuizvPLvl\nXuZQ9ROdQiwkYwGJA/bhM3kCAwEAAQ==\n-----END PUBLIC KEY-----\n','','4968c78f8a9df6fc4e43949748a0e94567dc0f83166cf83cd8e0f98f406e1b3f','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAo2aPrPdWu1ePgAXGXf2s\nXghNafRw4ccBMA1hqAHjxc2pLD+DMq3iyVoH+dS8AM2GhKHsmL/oslBDLX5J//VS\n1rgOKkRvMikFaodvDnQz1HcLLyKO05hYJFQS98jrj7bNBHiXXZXvggTgjlYl5eS4\nFX9qT2ORCyD5jlDkHZOiF+mosVeNoLeC/FfoUFQkvm+Evi5hgU8a/HvFw02BGNZE\nEKVLV1PRtQNJHa+G8RrgNFjWN6aZWzsFdfxdWGKcLQDbJYblehUyoBIwnaEIUWih\nR9JadBzLu7OPEe1ID41ZD9XOTDgF6iaN24qjMhXLQMe/I2h4o9FTja9qi2smEz32\nNH8qQW+bin2Krr3EUDur/6GomeIz9IS7M3pAaOLD6rQ3bjFsJcxJhA6jUzHLZ9AA\n6YJ75j0+vTkkshROndncXD2z++7+YYxd1Ceop86s7sRNjcWCuVH4VMC92Acp62SE\nsDfkx3pJAAcff7asCwnds+vKHKGiYv7XNqECkhsDYJP6WuxoPc5IDHYUCgM2HJ/n\nDaTg8eiziouyC4YjRCEh1Ogp6G21KcDWaxEi9H4UsMakzFerPcwkMXbVV4Ya84Yf\nTAs9H0YvMGL1N2SGxLD9+olwMqlIUR5ty2aB+lS/6hy2SJWRihCuPHGy6Kaoj87B\njGswRAib0YN5lgu5n8xEKgECAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica2','http://192.168.22.10/dfrn_notify/friendica2','http://192.168.22.10/dfrn_poll/friendica2','http://192.168.22.10/dfrn_confirm/friendica2','http://192.168.22.10/poco/friendica2',1,0,0,0,'','2015-02-02 19:00:21','2015-02-02 19:00:21','2015-02-02 19:00:21','2015-02-02 18:51:34','2015-02-02 18:51:34','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(13,4,'2015-02-02 18:50:05',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/ba266e976726cba185c218750c545814-4.jpg','http://192.168.22.10/photo/ba266e976726cba185c218750c545814-5.jpg','http://192.168.22.10/photo/ba266e976726cba185c218750c545814-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','1993beda190780abf81b6585d66643d9c14726c3fc5876604985b687f74877f5','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQClyqb0yY9wQ4jm\nPo9836jQWx2FxXtGZ/hPVNSG9/ig+PGdwL+kQy/95yz80A2J+Bu5zd9ePe9Xt2fL\nEw8qX1pVqxMb1WL6L6rmRIy7JGEcRbmggoN/sp+1bCstxVWKTgJYcYv6rgL7aeEP\n3RRt1LcwpqLD9oeIpkHMJ/LnCksCJTgxGwsbJcsRGFd4smgVjL+kcAfiWQjajkim\nU6FbB6K3KrxeNcM//i6vRX0fx7B1PLuEroMfE6VfX/2TW0Gcn4P6VTCJeCMDU+iq\nD4ae880zykRKZyKeFnlG4oe7yYI/n3YD6PglfNgmfH4HoK5oYK6YhZHLWUOg+pQl\nbIf69b60U5f7tnlhtz3mkF0w7HO1TS/6W0BAQABXohv/96RMeZOV1rvHR1fNiDSg\nSWjDbHDeTbaSPyR9czOg+DysfIZc4xVK8Bt10MWz/3Telij95UZS5Lw7YYHlCVVC\n8Q1aeeNM9fm0w8mFcQ0FTYBAkWxP9E9cUbKkGS17lma1uq0sePLTCvzHtrM0zScA\nmneY5ZYAHfhsXmTVuK4tKuDP4d6sfH7zTDm39zSJnI9DNTzK+D8CCPEULqJdeHKa\nuWcL3lO/mtmlL/RwaLIGuvd2OG1+6iGQ8pvxtt792FkzmHWP5HgaQ3+ikYUcTda4\nk4DPhzz9STz+dXYPzgRid0PJ+wQAUQIDAQABAoICAD/VO90J8glGZ2JG+hYZQzUd\nr8s+ks0z4L4iqkVhGkBYOScE/IRxPfwjUwXv0RarCXnLk1IExK9gNT1SFEe7ONu9\nJ3lS+m3bhpBsGkc/pYguLF9pgNnc23MNt75CuUGr8Wk+JqgY8Zr9VCM4etIi0XmQ\n3yBWPi7V3IWPaA2ev+yOigkWIXuNXJczaRJWlo6dh3f3joGOyELl/4DSuFCFKxgd\nAzO+vXNZGX5wYdGnoAAzpvtZ+bAwbz6+hbKDs0prfHQY8rwrHkf8uZsoqStwMTTc\njtiaxxBZFM6/D4W0+0olylmNDGXaoJqI2jlzm1MiznZ5Dv5dWxWTBRE3rU9p6MeE\nlIWRrZpFe/BavvRPAr3XTVHTc7JgRYCgiUA1Q/yQ27BMTzeW8gudXDWQE9/IyI1+\ncqo8Fdiz+OgNvB1q2ohS9YrDU3LQrdTbdu9ryVCgJM3Gn0qmLxtOWyTVC6KL6dS3\nGzFPT2e1V0G+TzHG+40eMy/UWZPSiksxhUMhSfqK/CVZ7oEnG90DzcKsCvgMAxch\ni12a9aCWiJEaMX2xzcblx1DFA++IY/U8uV701ANtZJZM11VPqpQEtH5nkhFNhu9J\nG6L/Z/sZ6yPXi5e6QB3oE7Yjw/5iVN+sofdi8yn2d/dVBESmd9Z3DEYdSpEz0tem\niGFywmhRi/3ZZeIHP6ABAoIBAQDWvenT4DTrl1YTzmX9Di/3vS9mppvQWDlx6Vuo\n/jKzM+1TkTiEdveUt6Gvs3XcPHxq2xpNp/SCtu4QEktR33vnbtIgbCLhz7zrcR28\njiB7npYDS5UcXTqk3iDVS/NadZVReElXAVRrKpcE3USwbzPPHu02vq9sBx3L10K0\nrJGgJngUoed222oVmV9P+b2DN2gEHyKTX0WCjxwOcKJMT+ffYpbu2//lzfdSONAw\nfdea7XUxDhHYWm+8rsvpdQWSGX2YBwZqfa9jpjOFVrIoR0NYU/yNrgw1q7kovGMG\nW/hsTUwFyKtz36nNs1O4VTWr0YNIEBK+Q5tUkZVi3ErGQCIBAoIBAQDFpR6I1GeT\nzD8IL7gdnmM21oVuWa/rzsiCdVSW14K9wfIbgUgtgB0RCzGhDJC6yBjjwjWnzzZY\n4KbJZyEB0719P+JOEIQRCGTb6ZbhkmEOK12ZtggMDBFsxRlccr/UN3FoBPN6+nZE\nqjQyALd/LFNo98Lhg/VddMsZo7QCc0pqBffHmJmZtgv/BSDfN6OyM97HIMBRqNlE\nYmAbH5gMKc23++EyFq9pHPrsb3igf8MhA44bbb8dAtTLB1CFaYTYk8XkJ2JinfYC\nqNk4AfylVFzIpJ7Mc7k6BwDwkT0Tu52FEqvwgw3vgo7Jhd0vfgmyT15vhFq5w+4B\n1Jv7YNEefT5RAoIBAAbA0DKukVt7VeSnkAOGR7HlzDDROoMx0xSm/w/wdo22K1d+\ncKWRzDVsFPSeky1K5arCmzAoAQN/VztAKAg6G/5qOMd2Px6U1t8cno/IdHMOyK7v\n2I+cyvRWW/f5PHzyx7BZNQ08aHg6TaeEgd1+kcWItnMLSh7+lkxLx7hA2Q+NRid3\n8/yD5/En8pxkQTZ4Lpg6lm7GBzyU3ZACsMfvl14qDo8Schi7AnUefkWYH4iqwQ26\n4IrKRUtMv/LmkDdI/+8hAW2l6DcdCe++iznDC/YiJgYanB2v+dGzIvYXPFfDkol4\nBxRMy11Br3dTjq2JmDRS9RPwsljVfzotrVhQugECggEAbdybvXk73ebhfp5v3F7n\nTVsvLijCZfQ6dnHbxEElFm+RMYLKaShWf9vWCWxfosOJOkkA5DeFQSAW9crSiR52\nrQFuvO/nSUR+M9ODH/3q3yJx0/hgProSkYB52W6bfM4YxrZB1TEVvpNRkh3d4d30\nu1tFQ2/DWuCJ6MWbUOVfDtIkahlEADI2NtpV7F4UKwE0K0HkRT/zDVUVkN4d+Vzf\nUg67nckIVgha3kQULDr4bwh33H1Dh0/EktqNAqulwXFaxbiyspiVX+MVY1GPayMa\ntBj1gDYvVrb/6bkB108pfwfi9T0T6PeMgS5cxYJsx2Xg22IZwDrNuMzCq5ekhise\nEQKCAQB4AUuBYKS4cAA7t5PSZG3TWrej9+8QMygzDDSpxQt/nyBM3Gzy58YOIczS\nQhgUGhwSA9HF2ghdJ5pyHpuT0OVWNtCpZr7NGlq28dYjC6vbr36b79xrW+poPFv7\nfOSSLHOxW/rqvWxconkMYfUDgSay333r+t3KNPzNwPRjawZBL91I2Dnjy2XgogT+\nXV9Xr0mQ5g8iQAV+HNYXYuQxlAkbVkpLyJAvacPjrgQ6+BrQMhzklKo6h4RW9PS9\n9PopqjwsXCKR1VnZhkhbt66xqmkEOtyl6ytYhUKDlzI3z8V1yK8V7hGhM2P17ksr\nNjUrIANF0eZWxtdfweUXB3ncY1qM\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:15','2015-02-02 19:00:15','2015-02-02 19:00:15','2015-02-02 18:52:24','2015-02-02 18:52:24','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(14,2,'2015-02-02 18:50:08',0,0,3,1,'dfrn','friendica3','friendica3','','','','','','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-4.jpg','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-5.jpg','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAliSi9id9Ll1dpzXC/lL6\n2/5FYxdn0XYb5I2JeXBNopwbXOLDsnnzXlV2NN8riZaYRQcIbS00OuAvyYj/IG3i\nDykD2zPjVnLEWADtj1YhLSgKcfQgv6Cj/7CPdb1Rg3icbvWdVY9wabcblVa9k+qr\ngK273C47lCQzXgvMtPst1DOzxtVCGmPJJHKjXZ8hDvf/IS0pVGa0zIv9kdofqQV9\nD5u5LuNzRuEGnrpAzpfzMueDppBrrrr37sKrZfCvyYHZ/ouFgZ3bY9NNVnjuFItP\nrcDlJPL8NhGmmzuYtI03MLor+1yVdBKLIJ3G2Bxzn5tynjSX9XZzOQgC3+YVH4TU\n7WDUHjTWJ9mliD2M1WXCp2Lwc/pV1Prnvv057pAqdiMhnddzucV9nLk9X9fR8xyy\nC7PRwx0hkB427EtAYaOTr3RtInP6+cm+3M7wd6ZKTqWAU+Pi20RNrQRsqfHJ7+hx\n+i5rIG6/knB/C+MAAutEH25oY8kJYtJzXid2OBSE462DTuYaee9aGHUDNy+HQau8\nBhJ4/Wsc7Nf/7GRZ38SVT/HQShl47B1AG5AyomyWgwn9J2KJ8kMuScPmBv5u7Mwq\nSjLk5pLkwyUtZwUu8UtsFKw9HLcRksGSze5s2cbw3rf/6jgKycT72Bfm1fjRnv6s\nXt1GdSzfG9zVHuEwRDgTX3UCAwEAAQ==\n-----END PUBLIC KEY-----\n','','1993beda190780abf81b6585d66643d9c14726c3fc5876604985b687f74877f5','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEApcqm9MmPcEOI5j6PfN+o\n0FsdhcV7Rmf4T1TUhvf4oPjxncC/pEMv/ecs/NANifgbuc3fXj3vV7dnyxMPKl9a\nVasTG9Vi+i+q5kSMuyRhHEW5oIKDf7KftWwrLcVVik4CWHGL+q4C+2nhD90UbdS3\nMKaiw/aHiKZBzCfy5wpLAiU4MRsLGyXLERhXeLJoFYy/pHAH4lkI2o5IplOhWwei\ntyq8XjXDP/4ur0V9H8ewdTy7hK6DHxOlX1/9k1tBnJ+D+lUwiXgjA1Poqg+GnvPN\nM8pESmcinhZ5RuKHu8mCP592A+j4JXzYJnx+B6CuaGCumIWRy1lDoPqUJWyH+vW+\ntFOX+7Z5Ybc95pBdMOxztU0v+ltAQEAAV6Ib//ekTHmTlda7x0dXzYg0oElow2xw\n3k22kj8kfXMzoPg8rHyGXOMVSvAbddDFs/903pYo/eVGUuS8O2GB5QlVQvENWnnj\nTPX5tMPJhXENBU2AQJFsT/RPXFGypBkte5ZmtbqtLHjy0wr8x7azNM0nAJp3mOWW\nAB34bF5k1biuLSrgz+HerHx+80w5t/c0iZyPQzU8yvg/AgjxFC6iXXhymrlnC95T\nv5rZpS/0cGiyBrr3djhtfuohkPKb8bbe/dhZM5h1j+R4GkN/opGFHE3WuJOAz4c8\n/Uk8/nV2D84EYndDyfsEAFECAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica3','http://192.168.22.10/dfrn_notify/friendica3','http://192.168.22.10/dfrn_poll/friendica3','http://192.168.22.10/dfrn_confirm/friendica3','http://192.168.22.10/poco/friendica3',1,0,0,0,'','2015-02-02 19:00:12','2015-02-02 19:00:12','2015-02-02 19:00:12','2015-02-02 18:52:24','2015-02-02 18:52:24','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(15,5,'2015-02-02 18:50:52',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/73de577b8bcc76d9358ab8536f0a5cca-4.jpg','http://192.168.22.10/photo/73de577b8bcc76d9358ab8536f0a5cca-5.jpg','http://192.168.22.10/photo/73de577b8bcc76d9358ab8536f0a5cca-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','0bc099852fd312feafb2cba2fa0019cf973e643951ddbf6ffdf6fad5aa58f25a','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDbCtvcmn1RIKfD\nUusiez0aVlimCIEltnEjNeKz/2PTRZqMWdrkhbWMGtYuWBq6FmK3yWB9MkNtyKDE\npo4ncGeWMKtPk2oyY7wyV2KazTKGpfrymwKqF3/YYmbiLSAWpzpBThP0Dd7Eg35Y\nyeCTbKzYN7hp2VUR52j6XxhxgLbj97bnd7+oBst+TN4ZTZ061xjWDexpWYiQR1ck\nBS+0JKxh89t6n3oA64CPY/e3W8vJ5BIaW/PW4rHAwWU4fa4PKUcepHin5yYC1n5h\nQLBbpPOShLBeGisJ1370bVi/yfdYUohxGVFmy1u863VF3I0iTDuvSDSvdfud/Vrt\nJaCnHL9FKhhYMpW8cDTxCttNZ0fu927f5ftLbnmm/JQOGR7E/6JFmDkMWUCGGr7z\nTXyqnGkn3N1KjmBNfRGifA0pJQqZHWYyDsXTW/barNsGykz3njjo045RLvGHfAoM\nafuOg+trniQfi7kDJr+/ipnxAMYphXORfnFljX2RLPWIHOLGxKUgdprjdxOoc7L7\nEDniw+mUl7/IxKkCjeK23sMjPfcdwmfDBHFMpMtnCp/E4Het27YZWksDokgS+Xs4\n4sV85xJL71BqeQkr8ntd79qV2ZapAGiDH10tbtcZM9IMX+6c1y1rODQrzhpZRsfs\n1z1sLka+zO5OxV+Jq+u4rRQITSpC2QIDAQABAoICAQCcKTK0JQQAybow+7WdIKVg\nWHzc6iVAwMAKLUmRsBr4LaBQPWNcFqNm3l8iLTfowTrh8lSzDRmbdDSB3ohsP6vq\nHIqVsfA9OnOapEgtOuuxqTWurqqInzZLC2R0DV3aKKDUnBiHnzfZfDGglVRhZlIX\n2CnGdOY8XHGwRgnEKdK51gn1HZ9q6GU9hwm0mmvk3iLbwJNyTB2bVvEeQgBPevHW\n56bq1jWB4GQIVmnttCkmp03ssu+1nGrDlF1Yl+l276O/idxnP9kOnuL87MSOoZvx\nMl4WyKs0Wgkts6NZIGER+81AbJ9nHMYreuZhxyprcFQA1AaTrRaU/WJMvc26Njl5\ngLfvYnzbgy3Qsi32Dp+99PNGUKLLK/WnLZ/lkvRgrG2XALGa0Y3zb6pzh41kenLZ\ntHq1JGf2I1qBxolCXTtpm4dr2YmEBvrvk4Bq5EvE43okK85Gm0/3bpq1X21Vkpno\nkd0aLWLymIGT6V80fmp/9k4pLfsnfLOB8uVrRgwt+fb9QweIhQNMgpsSwkfpuaUj\nkQW1mt5nicT5sYTq0ZZ3895l2lVWHNfT0zxlG/p+24086eExlKGD5WWXyyV1NlmM\nbnQbeRx2q/nnXk4EZAZjvdI1+w/Jg1m2eDDCRWINtP1wgb9cv2/blTjRyyhhvJrS\nMqWWZh1fLoVe0p6vCaGEgQKCAQEA+b38DbuibKhuzgHPg4ne0L4NI8OM8MbSsebt\nvcHPG9pqExV8dvMpYqnxPIY2ETI/Q1Uh9ff6cdrYTnWyGk8H18z8IdNJb/a7+oCW\nCOUIKIi0heFoyIkl5Jy9dUkRHZNTf5D77h74z2xUiExQHiBKMwCdG7GbNms62ANX\nFFtLKgDMi1ITAk2RglWrnuksoqNQsMCsfVRZQYhB/XLsfkeL3Wp1ajsggLQKdRZW\nMZMFw+ZNLEUFzeQqWoGF3ob44/OoEsoHPZ8EnZXykwZd4yNDvnrRcrwxSRFbadg5\nOKh/KcrYes33MKpHeN+N4hH04Z0U2uerKF/xyiYIWNE858Y8aQKCAQEA4IfyC1nU\nlR8MRzZiFHmCyVvDpzzx4BfbjjNGjXE/BTfb4VDjSTZAWxozgRDG1G4ODZUaL0eK\nOkJwB7yCfvvmAahQf9tFes7VFSQ4/DypEufKrXg1IxgGsKseR14ULfNZXD5rygUl\nXI60frYHKQm4rdWTZj+df/1VEF4cyRWRFNN2mKC6mj2poqM4vaQU1rGWtQPA2IFA\n5J7F3pY9ikNVMfai997M3SolVSD6FfwQcTVLnK8n/gaCUNMFchJGhAy5gPz3epmZ\nLe/F4x035ChBpdAQbERij+gmrm/JjaH2KtE59JoVnB/8pipjdi4CRuPkLiIByMF5\noH2/DpjL3ZPE8QKCAQBLHtNvSg5MQsm5m5/QwCrOfSw0osCFODjuHDlMx7xFc4hO\nnzrmCLRdIiMXAoPG3mdbGINzmhiyIJLJ3usosLb6OYVpo0VGsV/PtNfsav/uOVib\noLbFA0PrpR3z5nuIeuU1zOWKtbQ/qCUxLks3FJ1dBAU97El0sAJuMWsDC4brZnwg\nOBrRqYVoP960mQy9CwTddccsl6+VX6gB1Yy/W0P94OTahFh9fipbF9HrbX7hcyep\ndkWNreDzglxDGDRLVOIsbKqK5Ycc45qokNSy2suowwa3TVZB1T+68bgci8pcRtCg\n980vzThcaloiMyaGqpo4UlEQfvOay5/dH2sDiIRpAoIBAHfHzlZD2+aZo6Ex3+zw\nTddBvwSuvJJB5/zaWd8G9QnBnOl8j2P1LyvqtGM8IfYdqB2S1181mQYvfziBVlSL\n6U4lDpzGyzASuxYGNuhJLCFLypH0ONS58oe5IfQMulMxKRDOtA4X5LCV6LBYR0Wb\nTAxgjbvUYB9xdDnBGzYi7Tzg+rm9tQ6nqqF61cBFkmBeaPm0QOK/QXE1SnXOTJJA\nDWkUHCiDkWLDIxtg9klYKSVbuzShNIKN0mNvz83k9f1oFGY9jYC4BEG/UiAw7Cop\nV6wvbTN03+fJfyk7tZh7OKnq6DIXKUQaxFuY7WqUbN6IoKgDuFPy8wGtU4lj9g4E\n0OECggEAG+9Bz9Tzp+JWhGXVsQ5NAKFHw2SJFFFCqFe27hVS7R7E+wJx84i6AEuh\nMWA7bxKHU4XJ5waCmxLLiY9BTb8lkYzT0gttl7O6J5mWTW/wT4VDZGSywQpt0uVD\nNPRpKAvFumXJccaWDz9Oz9oChk4P93a0kZi/H59uePb95xW8MXsVPIjiq/PjVewY\nsKRqEXeE3qeahieyz9ac9Dc2MJVvuuot3wRM3YERgjzZAfSqK8Lo4rSHgiGg4iYj\n2IoxAN007n4ZSiXH/qUtMAIOQGFfO1jqmt6dZkt3kJ9+2JkYa01vnLUvA9KViPI3\n3fhPNAoXmu3k6cGhzDjNG5bQVWIU8g==\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:06','2015-02-02 19:00:06','2015-02-02 19:00:06','2015-02-02 18:51:07','2015-02-02 18:51:07','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(16,2,'2015-02-02 18:50:55',0,0,3,1,'dfrn','friendica5','friendica5','','','','','','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-4.jpg','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-5.jpg','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyvuTsaZaTgPDm69uxixR\n8qd0ylkeA/IY3KDsI4vjrLuF7WLmU07lzQXmilQJ+MlipIju+wFXx3a8ksavEYpP\n9ZU9YrpXe7zneHRLTxgMDH9IMbSCIUAkEsozpzF02Ft0+G36tzIET2oTuU6uLtx6\nI5ifmF/qFC+4avAoABQg8qfOPpuaP3AJ6FppqEifUsb0lTWqP4zg7PQXC36oKIJ0\nUDuQniVy8lTxVfkhoi/aHZw0khVXe6tDK7C0ALg5U7jLTDNdJ1R0v5iC41QK4CEt\n5x4x008mdk6xLKGZiou1UuEPv/+WSQU1Q21JFzNVGBASkRu7dUVH6k+59VQr3ONI\n5bdbAZviVY3ezFNtBeWWfDk06BWoZwX67eGG/dVsCPnEkuP9CpemcwwGZbYCIqf0\n++5h0CU41CjNShHdBD+Q+ZQmT3I4sAlPZ7x90nA9KfuKM9QyTPQ9EmK2bxq7TKvV\nzLqHptL5mC/VH4FbO1eKf7p/f7XxOaeXGANUaRSPwLSO7lk8lkl/wj7sNJYGYygC\nMLTqH8GTizpyPkSDv5xO6bYn/g3BYFuUM5x1MZVS8MdG2a3L8UzRiXUsm/AjnfSV\nImN2+8bHJI0wy9zRxfEaG8pvbupb7UU5zWr3WRkSVr84Bq1SJNxLfWZj3GHLaesr\nu3exEdYGfxLuG1zHIROVwlcCAwEAAQ==\n-----END PUBLIC KEY-----\n','','0bc099852fd312feafb2cba2fa0019cf973e643951ddbf6ffdf6fad5aa58f25a','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA2wrb3Jp9USCnw1LrIns9\nGlZYpgiBJbZxIzXis/9j00WajFna5IW1jBrWLlgauhZit8lgfTJDbcigxKaOJ3Bn\nljCrT5NqMmO8Mldims0yhqX68psCqhd/2GJm4i0gFqc6QU4T9A3exIN+WMngk2ys\n2De4adlVEedo+l8YcYC24/e253e/qAbLfkzeGU2dOtcY1g3saVmIkEdXJAUvtCSs\nYfPbep96AOuAj2P3t1vLyeQSGlvz1uKxwMFlOH2uDylHHqR4p+cmAtZ+YUCwW6Tz\nkoSwXhorCdd+9G1Yv8n3WFKIcRlRZstbvOt1RdyNIkw7r0g0r3X7nf1a7SWgpxy/\nRSoYWDKVvHA08QrbTWdH7vdu3+X7S255pvyUDhkexP+iRZg5DFlAhhq+8018qpxp\nJ9zdSo5gTX0RonwNKSUKmR1mMg7F01v22qzbBspM95446NOOUS7xh3wKDGn7joPr\na54kH4u5Aya/v4qZ8QDGKYVzkX5xZY19kSz1iBzixsSlIHaa43cTqHOy+xA54sPp\nlJe/yMSpAo3itt7DIz33HcJnwwRxTKTLZwqfxOB3rdu2GVpLA6JIEvl7OOLFfOcS\nS+9QankJK/J7Xe/aldmWqQBogx9dLW7XGTPSDF/unNctazg0K84aWUbH7Nc9bC5G\nvszuTsVfiavruK0UCE0qQtkCAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica5','http://192.168.22.10/dfrn_notify/friendica5','http://192.168.22.10/dfrn_poll/friendica5','http://192.168.22.10/dfrn_confirm/friendica5','http://192.168.22.10/poco/friendica5',1,0,0,0,'','2015-02-02 19:00:18','2015-02-02 19:00:18','2015-02-02 19:00:18','2015-02-02 18:51:07','2015-02-02 18:51:07','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(17,6,'2015-02-02 18:51:55',0,0,3,1,'dfrn','friendica1','friendica1','','','','','','http://192.168.22.10/photo/b4cbb73d1178aab3424a788419bbe016-4.jpg','http://192.168.22.10/photo/b4cbb73d1178aab3424a788419bbe016-5.jpg','http://192.168.22.10/photo/b4cbb73d1178aab3424a788419bbe016-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','cd8d6796a986b38a7fb102d05cb41dabe3bdd042f05bf2e5d184a9fdae0255fc','','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','','','','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDCyqFtB4TgbrcJ\n59saeXpo/P+01pHCILBzYKhWhrPDhzI2S+ByaeGbMm/ID2EqGrMxBiJs8gPzPVLk\nF1o/V2HWwelM/adgSoT8zihpebfOTjMFB3ExenheLqym7dbigt2f11ArDCF9wPli\nKgOuSwhb9JQSBkhHtfByVVTlKHKP9nmyyWVeo5ZI9cCJ9DlNw/c9uoSX4gW43df0\n/onnVwd6Z4MtoapKmiI6WDljsTveRliJerXFRbmXhzb/AnYUp4aZa8lpeH7TqGQ3\nl93zRjrz29JGxCho9eexOt3Kaq41kiLvIbElT+5nPxkPXnw9DALm5wYTWhyQDw8h\nRSLoNwll9IVCO7OuUWyopolLsxBz6fKwtF2tuMFxApAcRhtADY8dFn2tT/1+UgI1\nNI9Xh/mLtbCJyNTUG9hwP/VYRpw49hnvo0Jp7hVom9o/pxCl69x3fD0hs3WILclV\n/z2gpikEs+lP9PdUjR3XtS6CD/nVjP7hFOZhlJn9IyAJR8bi4TX2bzL+PZ9JQLpF\nOohIGwYMJFsi7uudSRLke9zG1UrCQdPpwA1VQVq0Ugh/Lj97RoTtE7tO8Kon5YG4\nrtYDS5JptsXEE/p794NQMRAjxMga4yf9+cdFOpyGc+a6hMoBlqKGHU1TYmjz4riz\nsBs9zBlmnOLWgmdaFLGwYR4aKXKWTwIDAQABAoICAGTRe7tyqNOAejwmRMDvHuw4\nBiES7V4MjUcqP/aIwYHx94siuoh9RMeO00w4qZGhQB2fjzHUETdUBhMIAy3FjF4a\n/yVaI8cyyqIOEdyFoxykXMO9lliFisc0YSgE8bNLCGoyhsvA+5SazHiCRmVvcGQn\nsnuhxMdY45pJkCcLSEA60cI3esAA60fX6k98mCwnwU+xue7ijROhvqSPGdEiujwg\nV0TG59y06gJIp2tx0Aq7XhfJ60qvS9+hnFVgcL0/9+pwX063juz9uuELOVUwhFKy\n86Ks5D1vCPwx+5lIneIcQPiD96vYMww9HDtYK/VswhPAfuSFP0NQiAQwRGDsG3BC\nKf00QdRtcPIof2jleYeuptzn0dshgCve8/0Txy32t1ziNo9bBQV1XepgoGF/3vfu\nj31Tnv+zKxYE3M7RZHyAJ5UA4ewIxVNFWlVPNRu+9X3kusi4p9kDfl7JZY6hz09D\nMfgi4MjgqEb4lzhEnuUBNuOUtbo6c93+DSDyj6vkYmnQyG66ljvfHZEFC7dCqKMU\n90iRXUQv9+/hFyIukPikB+BApSYpAD7sMXOBkOgZdoGH5UZrF9TlwSV1QssEYk0o\nd6BjB68IsXSbUezDRyTxPphYqnR9L9+2Qo5mh6RTv9PDPplb//wlvKVnfJgMZPxR\nUn4sl3TLwurAPAUN24QBAoIBAQDq6qya37jQN5zJIt6VAWrSvNmyjULLaf/9t/7f\nnG5e6+vmODBhTq5GKfDoImVXwG/og7/t/G4P4yNdxNHUZhx9H0nnsUdYMaveYINm\n2njw4oBVH70GylgDRstMFnQ445NjaAy/H7dXefemxjnAh6yyTAVuE7a89o4GzHao\njYUKFTwVsXxuYcT2gmUcaQ47Q4CJx3SZ2WtUEb4ixHiyMR43ApdRh4t7pr6/nKWd\nP3UQEHlUmSk0p7AxtCwvVUUsm85KCUvFkBodgwgN7izRhrm2cD0n6/4F5JF0l6XV\nEXOxou/hltG0Rd4IX4UovvV7yi0gIIi0KSWJDzg+XQn4msvjAoIBAQDURg+ajla3\nv28suV/MKzFcaesu3W/aTDsrPslL5bBeqFuATkqQ0stCKLD9IRiWIvOb2dxteCHN\nzxKPNbCaZdNCm9DmJB3qh0Te8VKjoofgw2h23kH97q1sgczQlZp/4g2sROugZr2P\nl/vSxKdBQ3nCVlLeqX99cvKZGleyLYtVkiFUS+VJ479McP3NuVZDgQ2N0cR8ZKDz\nla3jL3cmlAgcM9NVXWec1usX2jjRsPpM7QDM2RqAXrlpQGw1TBds3s6LIVqkFyqp\n7+EoZYa61VzijDWI5knOC00aGW43xBCV/lKWYcMrh9qj0lXdFMyX0ZLrQi/diU3h\nMQgNNW5OD6+lAoIBAQDQaM4kwGJX516jWtoZW56Hw59nNseRa0L+tuPZQhDxCWDJ\naAQT8BfQi5j8eLdr+H/PykLWQeLrGVng8KIvSz/vCXkpoi9nYPnXWcx5zU0KeAfe\nfT/X7F/U2FO39xu49L1nrYHRdbPUWZKKVMYbtsJRk/wlQjwWvK4X/gEvXA4xedFK\ndaGs0/RHtjs5z0Ie9a3tjhQ2AZukg/EpKyDhBY6Gwze3zwbB9pa3q6OKNCgIznS1\nxwO1gSdhkTS58W5jOv7y0/hzF3rzv7G/mhQM9vd/kWfQKR+93p/kzj0DIG6Bo8op\nWwJEas+mogeitHdZEW6jV/mvy+lPBT+ipCwacEp9AoIBAQCr9T16tMfm/jsvfdPu\n7yaDeII+ar/LlWlxNOGYjC7932CQZdvdygVCSPhndkIWjaXOoQQB4glwUcj1Hkc8\nLDShhtwJM0TQ0lemStPpHyb3mxSrBo1rCciPV+71IdwQsKzm2sYOIGx7QGGNciUT\np3ehSJDFM4XFuDJyeHaGLoLrBP/e68SIwOgdIoNX/kW1VXwHYODM7C++Y4iDu9XH\n+K9BOXJ/erUOxsOXhP32UGnTm0LErzLavuFwM/H0kvl/BldHOfPVbbbwBxTcxrIH\n9APUukQ77GHpehoxhFxW7IuLFoUMsZGLV/h0MVXBTLIYYnuj/PANhMcEH9Yn7Rq4\nPdjJAoIBAEYONbywm3BUYvpQeN+PZPgfNAdRsFCU+dlPCFGA02fzF5H/NmKxIT6A\naqU7AA2W7ZmgRHuXMVGf+0q19xPvzi2LVZpSnfHI0eq28c5ai/Tig6stW/FYNDdl\n828a+ZAXvksesiGwD2R53aAF5NNvOIGsaL31T5d5aka1wUQw7bzx8w7OhW+jP+qj\nAq/pMBapUML5TTAhE5wBJI+F6qoIpp7BomMO36nSzaofqS4I96r2kcTb1bNBGErw\no8HHBbXTrZ/vz8i8h5bGoikI0YbxplPaLTylUxuxv0x+gmlaZLbSfjosgfxTGmDu\nyi/YAMIgyQM3WSd9kEzLbr40D8NRK8w=\n-----END PRIVATE KEY-----\n','','http://192.168.22.10/dfrn_request/friendica1','http://192.168.22.10/dfrn_notify/friendica1','http://192.168.22.10/dfrn_poll/friendica1','http://192.168.22.10/dfrn_confirm/friendica1','http://192.168.22.10/poco/friendica1',0,0,0,0,'','2015-02-02 19:00:03','2015-02-02 19:00:03','2015-02-02 19:00:16','2015-02-02 18:53:04','2015-02-02 18:53:04','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,''),(18,2,'2015-02-02 18:52:03',0,0,3,1,'dfrn','friendica4','friendica4','','','','','','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-4.jpg','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-5.jpg','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-6.jpg','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3nCYawg+HTyQgV7a7Osg\nCXeACOitKLhcb2WDTN/lLOMO7n1lSm3Kdv1dbOc0/lkAPeB2XsLF/aDfoUPWWg4Q\n/oRPrXFIi2dK/cIQVvgOhebQheztAYPJyaYYMWVK7bLbPuKVTyzALqkWD8Zjjtit\n4Uvm3kjmcofKr+/Lw+VFaEBMESQDbP5eTDtQeDGGjluWQMj1/D+V/Tcm+SMrAVIv\njyklQEhBJlYGJ+LsfXv4XXbeH73dkIXkQW5JgWQyPCloJ+PxmmjjEDozsdgmFQXq\n6T9HFVHvW2O2lmDoaTrbIGrULWBpslKZJJrV+LgtkzhP4uuKfJPD2DpMJ4+ixtBE\nzM/o+EuYDTz0P3dTvwruq1t8gUYcQOVUzEp1LM0qYDMVY86XneW1W5xghztl5zqy\nGBMBvjVIFvMVL1cVeXze4zpwwKln2cArepToSpN7lmy9EgBd9mZrVLWosZShB9R0\n05kBc2Tfv7FlixwZ1P8rwJn9sEEs9oa6TnRLL+7L8eqapg6vUI1G7e0HWWEjdHsR\nrYVHYW+ogtOYjrQ1Tfh1W2PtNaez5fGYVBDjC+1vy0scJmqrgy00z7MHBT2WTOAL\noHbdedhpa3UZ0FrsCto+vqil8BcF5aBhi2Hi5YdKtbY3EBsaabcSO2joc7rlmee4\nxdKfDRYXCPysFPhZNgIW708CAwEAAQ==\n-----END PUBLIC KEY-----\n','','cd8d6796a986b38a7fb102d05cb41dabe3bdd042f05bf2e5d184a9fdae0255fc','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','','','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwsqhbQeE4G63CefbGnl6\naPz/tNaRwiCwc2CoVoazw4cyNkvgcmnhmzJvyA9hKhqzMQYibPID8z1S5BdaP1dh\n1sHpTP2nYEqE/M4oaXm3zk4zBQdxMXp4Xi6spu3W4oLdn9dQKwwhfcD5YioDrksI\nW/SUEgZIR7XwclVU5Shyj/Z5ssllXqOWSPXAifQ5TcP3PbqEl+IFuN3X9P6J51cH\nemeDLaGqSpoiOlg5Y7E73kZYiXq1xUW5l4c2/wJ2FKeGmWvJaXh+06hkN5fd80Y6\n89vSRsQoaPXnsTrdymquNZIi7yGxJU/uZz8ZD158PQwC5ucGE1ockA8PIUUi6DcJ\nZfSFQjuzrlFsqKaJS7MQc+nysLRdrbjBcQKQHEYbQA2PHRZ9rU/9flICNTSPV4f5\ni7WwicjU1BvYcD/1WEacOPYZ76NCae4VaJvaP6cQpevcd3w9IbN1iC3JVf89oKYp\nBLPpT/T3VI0d17Uugg/51Yz+4RTmYZSZ/SMgCUfG4uE19m8y/j2fSUC6RTqISBsG\nDCRbIu7rnUkS5HvcxtVKwkHT6cANVUFatFIIfy4/e0aE7RO7TvCqJ+WBuK7WA0uS\nabbFxBP6e/eDUDEQI8TIGuMn/fnHRTqchnPmuoTKAZaihh1NU2Jo8+K4s7AbPcwZ\nZpzi1oJnWhSxsGEeGilylk8CAwEAAQ==\n-----END PUBLIC KEY-----\n','','','http://192.168.22.10/dfrn_request/friendica4','http://192.168.22.10/dfrn_notify/friendica4','http://192.168.22.10/dfrn_poll/friendica4','http://192.168.22.10/dfrn_confirm/friendica4','http://192.168.22.10/poco/friendica4',1,0,0,0,'','2015-02-02 19:00:24','2015-02-02 19:00:24','2015-02-02 19:00:24','2015-02-02 18:53:03','2015-02-02 18:53:03','0000-00-00 00:00:00',0,0,0,1,0,0,0,0,0,0,'',99,'',0,'','0000-00-00',0,0,'');
+/*!40000 ALTER TABLE `contact` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `conv`
+--
+
+DROP TABLE IF EXISTS `conv`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `conv` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `guid` varchar(64) NOT NULL DEFAULT '',
+  `recips` mediumtext NOT NULL,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `creator` varchar(255) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `subject` mediumtext NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `conv`
+--
+
+LOCK TABLES `conv` WRITE;
+/*!40000 ALTER TABLE `conv` DISABLE KEYS */;
+/*!40000 ALTER TABLE `conv` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `deliverq`
+--
+
+DROP TABLE IF EXISTS `deliverq`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `deliverq` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `cmd` varchar(32) NOT NULL DEFAULT '',
+  `item` int(11) NOT NULL DEFAULT '0',
+  `contact` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `deliverq`
+--
+
+LOCK TABLES `deliverq` WRITE;
+/*!40000 ALTER TABLE `deliverq` DISABLE KEYS */;
+/*!40000 ALTER TABLE `deliverq` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `dsprphotoq`
+--
+
+DROP TABLE IF EXISTS `dsprphotoq`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `dsprphotoq` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `msg` mediumtext NOT NULL,
+  `attempt` tinyint(4) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `dsprphotoq`
+--
+
+LOCK TABLES `dsprphotoq` WRITE;
+/*!40000 ALTER TABLE `dsprphotoq` DISABLE KEYS */;
+/*!40000 ALTER TABLE `dsprphotoq` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `event`
+--
+
+DROP TABLE IF EXISTS `event`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `event` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `cid` int(11) NOT NULL DEFAULT '0',
+  `uri` varchar(255) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `finish` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `summary` text NOT NULL,
+  `desc` text NOT NULL,
+  `location` text NOT NULL,
+  `type` varchar(255) NOT NULL DEFAULT '',
+  `nofinish` tinyint(1) NOT NULL DEFAULT '0',
+  `adjust` tinyint(1) NOT NULL DEFAULT '1',
+  `ignore` tinyint(1) unsigned NOT NULL DEFAULT '0',
+  `allow_cid` mediumtext NOT NULL,
+  `allow_gid` mediumtext NOT NULL,
+  `deny_cid` mediumtext NOT NULL,
+  `deny_gid` mediumtext NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `event`
+--
+
+LOCK TABLES `event` WRITE;
+/*!40000 ALTER TABLE `event` DISABLE KEYS */;
+/*!40000 ALTER TABLE `event` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `fcontact`
+--
+
+DROP TABLE IF EXISTS `fcontact`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `fcontact` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `url` varchar(255) NOT NULL DEFAULT '',
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `photo` varchar(255) NOT NULL DEFAULT '',
+  `request` varchar(255) NOT NULL DEFAULT '',
+  `nick` varchar(255) NOT NULL DEFAULT '',
+  `addr` varchar(255) NOT NULL DEFAULT '',
+  `batch` varchar(255) NOT NULL DEFAULT '',
+  `notify` varchar(255) NOT NULL DEFAULT '',
+  `poll` varchar(255) NOT NULL DEFAULT '',
+  `confirm` varchar(255) NOT NULL DEFAULT '',
+  `priority` tinyint(1) NOT NULL DEFAULT '0',
+  `network` varchar(32) NOT NULL DEFAULT '',
+  `alias` varchar(255) NOT NULL DEFAULT '',
+  `pubkey` text NOT NULL,
+  `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`id`),
+  KEY `addr` (`addr`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `fcontact`
+--
+
+LOCK TABLES `fcontact` WRITE;
+/*!40000 ALTER TABLE `fcontact` DISABLE KEYS */;
+/*!40000 ALTER TABLE `fcontact` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `ffinder`
+--
+
+DROP TABLE IF EXISTS `ffinder`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ffinder` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `cid` int(10) unsigned NOT NULL DEFAULT '0',
+  `fid` int(10) unsigned NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `ffinder`
+--
+
+LOCK TABLES `ffinder` WRITE;
+/*!40000 ALTER TABLE `ffinder` DISABLE KEYS */;
+/*!40000 ALTER TABLE `ffinder` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `fserver`
+--
+
+DROP TABLE IF EXISTS `fserver`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `fserver` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `server` varchar(255) NOT NULL DEFAULT '',
+  `posturl` varchar(255) NOT NULL DEFAULT '',
+  `key` text NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `server` (`server`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `fserver`
+--
+
+LOCK TABLES `fserver` WRITE;
+/*!40000 ALTER TABLE `fserver` DISABLE KEYS */;
+/*!40000 ALTER TABLE `fserver` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `fsuggest`
+--
+
+DROP TABLE IF EXISTS `fsuggest`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `fsuggest` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `cid` int(11) NOT NULL DEFAULT '0',
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `url` varchar(255) NOT NULL DEFAULT '',
+  `request` varchar(255) NOT NULL DEFAULT '',
+  `photo` varchar(255) NOT NULL DEFAULT '',
+  `note` text NOT NULL,
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `fsuggest`
+--
+
+LOCK TABLES `fsuggest` WRITE;
+/*!40000 ALTER TABLE `fsuggest` DISABLE KEYS */;
+/*!40000 ALTER TABLE `fsuggest` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `gcign`
+--
+
+DROP TABLE IF EXISTS `gcign`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `gcign` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `gcid` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`),
+  KEY `gcid` (`gcid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `gcign`
+--
+
+LOCK TABLES `gcign` WRITE;
+/*!40000 ALTER TABLE `gcign` DISABLE KEYS */;
+/*!40000 ALTER TABLE `gcign` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `gcontact`
+--
+
+DROP TABLE IF EXISTS `gcontact`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `gcontact` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `url` varchar(255) NOT NULL DEFAULT '',
+  `nurl` varchar(255) NOT NULL DEFAULT '',
+  `photo` varchar(255) NOT NULL DEFAULT '',
+  `connect` varchar(255) NOT NULL DEFAULT '',
+  `updated` datetime DEFAULT '0000-00-00 00:00:00',
+  `location` varchar(255) NOT NULL DEFAULT '',
+  `about` text NOT NULL,
+  `keywords` text NOT NULL,
+  `gender` varchar(32) NOT NULL DEFAULT '',
+  `network` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `nurl` (`nurl`)
+) ENGINE=InnoDB AUTO_INCREMENT=157 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `gcontact`
+--
+
+LOCK TABLES `gcontact` WRITE;
+/*!40000 ALTER TABLE `gcontact` DISABLE KEYS */;
+INSERT INTO `gcontact` VALUES (1,'Keith','https://friendika.me4.it/profile/keith','http://friendika.me4.it/profile/keith','https://friendika.me4.it/photo/custom/300/1.jpg?rev=2014-07-27+19%3A34%3A36','','0000-00-00 00:00:00','','','','','dspr'),(2,'Manuel Freiria','https://friendika.me4.it/profile/manolofreiria','http://friendika.me4.it/profile/manolofreiria','https://friendika.me4.it/photo/custom/300/254.jpg?rev=2014-09-06+23%3A58%3A50','','0000-00-00 00:00:00','','','','','dspr'),(3,'José Manuel Goig','https://friendika.me4.it/profile/jmgoig','http://friendika.me4.it/profile/jmgoig','https://friendika.me4.it/photo/custom/300/283.jpg?rev=2014-12-16+10%3A11%3A40','','0000-00-00 00:00:00','','','','','dspr'),(4,'Keith','https://friendica.eu/profile/support','http://friendica.eu/profile/support','https://friendica.eu/photo/custom/300/1.jpg?rev=2011-12-21+14%3A41%3A44','','0000-00-00 00:00:00','','','','','dspr'),(5,'Henrike Van Mortis','https://friendica.eu/profile/hvm','http://friendica.eu/profile/hvm','https://friendica.eu/photo/custom/300/250.jpg','','0000-00-00 00:00:00','','','','','dspr'),(6,'offene Ablage: nothing to hide','https://friendica.eu/profile/o2myfrdca01','http://friendica.eu/profile/o2myfrdca01','https://friendica.eu/photo/custom/300/259.jpg?rev=2012-02-16+16%3A49%3A37','','0000-00-00 00:00:00','','','','','dspr'),(7,'Friendica Theme Developers','https://friendica.eu/profile/ftdevs','http://friendica.eu/profile/ftdevs','https://friendica.eu/photo/custom/300/366.jpg?rev=2012-03-01+11%3A58%3A18','','0000-00-00 00:00:00','','','','','dspr'),(8,'Nepesh Hacker','https://friendica.eu/profile/arescorpio','http://friendica.eu/profile/arescorpio','https://friendica.eu/photo/custom/300/516.jpg?rev=2012-11-07+22%3A39%3A38','','0000-00-00 00:00:00','','','','','dspr'),(9,'Rolf Rupp','https://friendica.eu/profile/rcr','http://friendica.eu/profile/rcr','https://friendica.eu/photo/custom/300/841.jpg?rev=2014-01-09+22%3A15%3A09','','0000-00-00 00:00:00','','','','','dspr'),(10,'Daniel Steinbacher','https://friendica.eu/profile/damez','http://friendica.eu/profile/damez','https://friendica.eu/photo/custom/300/1791.jpg?rev=2015-01-15+16%3A49%3A29','','0000-00-00 00:00:00','','','','','dspr'),(11,'Pirate Times','https://friendica.eu/profile/piratetimes','http://friendica.eu/profile/piratetimes','https://friendica.eu/photo/custom/300/885.jpg?rev=2014-01-21+11%3A09%3A35','','0000-00-00 00:00:00','','','','','dspr'),(12,'Jacques','https://friendica.eu/profile/jacques','http://friendica.eu/profile/jacques','https://friendica.eu/photo/custom/300/907.jpg?rev=2015-01-15+14%3A37%3A37','','0000-00-00 00:00:00','','','','','dspr'),(13,'Montse Freire','https://friendica.eu/profile/auga09','http://friendica.eu/profile/auga09','https://friendica.eu/photo/custom/300/934.jpg?rev=2014-02-16+14%3A17%3A30','','0000-00-00 00:00:00','','','','','dspr'),(14,'oremus','https://friendica.eu/profile/oremus','http://friendica.eu/profile/oremus','https://friendica.eu/photo/custom/300/1073.jpg?rev=2014-04-29+15%3A09%3A50','','0000-00-00 00:00:00','','','','','dspr'),(15,'ppp','https://friendica.eu/profile/ppp','http://friendica.eu/profile/ppp','https://friendica.eu/photo/custom/300/1134.jpg?rev=2014-06-01+12%3A58%3A28','','0000-00-00 00:00:00','','','','','dspr'),(16,'Krin Bouch','https://friendica.eu/profile/krinbouch','http://friendica.eu/profile/krinbouch','https://friendica.eu/photo/custom/300/1471.jpg?rev=2014-09-20+14%3A18%3A24','','0000-00-00 00:00:00','','','','','dspr'),(17,'Miguel Menéndez','https://friendica.eu/profile/miguelmenendez','http://friendica.eu/profile/miguelmenendez','https://friendica.eu/photo/custom/300/1508.jpg?rev=2014-10-26+15%3A21%3A28','','0000-00-00 00:00:00','','','','','dspr'),(18,'Alexandre Pólvora','https://friendica.eu/profile/discomplex','http://friendica.eu/profile/discomplex','https://friendica.eu/photo/custom/300/1522.jpg?rev=2014-11-05+23%3A54%3A57','','0000-00-00 00:00:00','','','','','dspr'),(19,'Chak\'pur','https://friendica.eu/profile/murokka','http://friendica.eu/profile/murokka','https://friendica.eu/photo/custom/300/1535.jpg?rev=2014-11-13+09%3A13%3A55','','0000-00-00 00:00:00','','','','','dspr'),(20,'Samuel Contraste','https://friendica.eu/profile/stace-melunor','http://friendica.eu/profile/stace-melunor','https://friendica.eu/photo/custom/300/1586.jpg?rev=2014-11-28+13%3A01%3A22','','0000-00-00 00:00:00','','','','','dspr'),(21,'Martin Langlotz','https://friendica.eu/profile/numan','http://friendica.eu/profile/numan','https://friendica.eu/photo/custom/300/1621.jpg?rev=2014-12-02+10%3A37%3A34','','0000-00-00 00:00:00','','','','','dspr'),(22,'Elie Bissery','https://friendica.eu/profile/eilsib','http://friendica.eu/profile/eilsib','https://friendica.eu/photo/custom/300/1680.jpg?rev=2014-12-17+16%3A05%3A23','','0000-00-00 00:00:00','','','','','dspr'),(23,'Cécile Maitre','https://friendica.eu/profile/cecile','http://friendica.eu/profile/cecile','https://friendica.eu/photo/custom/300/1703.jpg?rev=2014-12-23+19%3A29%3A41','','0000-00-00 00:00:00','','','','','dspr'),(24,'Ralf Gerdes','https://friendica.eu/profile/ralf','http://friendica.eu/profile/ralf','https://friendica.eu/photo/custom/300/1739.jpg?rev=2014-12-30+12%3A43%3A12','','0000-00-00 00:00:00','','','','','dspr'),(25,'Loran Btn','https://friendica.eu/profile/loran_mcfly','http://friendica.eu/profile/loran_mcfly','https://friendica.eu/photo/custom/300/1781.jpg?rev=2015-01-11+09%3A10%3A33','','0000-00-00 00:00:00','','','','','dspr'),(26,'Jörn Rinne','https://friendica.eu/profile/lefou','http://friendica.eu/profile/lefou','https://friendica.eu/photo/custom/300/1782.jpg?rev=2015-01-11+15%3A39%3A33','','0000-00-00 00:00:00','','','','','dspr'),(27,'Lud Wig','https://friendica.eu/profile/ludwig','http://friendica.eu/profile/ludwig','https://friendica.eu/photo/custom/300/1810.jpg?rev=2015-01-25+04%3A41%3A20','','0000-00-00 00:00:00','','','','','dspr'),(28,'Rike','http://mist.loozah.com/profile/rike','http://mist.loozah.com/profile/rike','http://mist.loozah.com/photo/custom/300/2.jpg?rev=2012-02-03+14%3A10%3A17','','0000-00-00 00:00:00','','','','','dspr'),(29,'Torsten Peh','http://mist.loozah.com/profile/torsten_peh','http://mist.loozah.com/profile/torsten_peh','http://mist.loozah.com/photo/custom/300/13.jpg?rev=2012-05-15+12%3A58%3A18','','0000-00-00 00:00:00','','','','','dspr'),(30,'der buffer','http://mist.loozah.com/profile/derbuffer','http://mist.loozah.com/profile/derbuffer','http://mist.loozah.com/photo/custom/300/98.jpg?rev=2013-07-27+00%3A10%3A59','','0000-00-00 00:00:00','','','','','dspr'),(31,'Marcel','http://mist.loozah.com/profile/mkay','http://mist.loozah.com/profile/mkay','http://mist.loozah.com/photo/custom/300/24.jpg?rev=2012-06-14+19%3A06%3A37','','0000-00-00 00:00:00','','','','','dspr'),(32,'Gianluca Zoni','http://mist.loozah.com/profile/zoninoz','http://mist.loozah.com/profile/zoninoz','http://mist.loozah.com/photo/custom/300/56.jpg?rev=2012-09-12+15%3A38%3A42','','0000-00-00 00:00:00','','','','','dspr'),(33,'Jo A','http://mist.loozah.com/profile/joooo','http://mist.loozah.com/profile/joooo','http://mist.loozah.com/photo/custom/300/64.jpg?rev=2012-11-12+15%3A32%3A02','','0000-00-00 00:00:00','','','','','dspr'),(34,'Lass Mi Randa Den Sie Will Ja','https://friendica.styliztique.biz/profile/stb','http://friendica.styliztique.biz/profile/stb','https://friendica.styliztique.biz/photo/custom/300/20.jpg?rev=2013-09-06+16%3A04%3A10','','0000-00-00 00:00:00','','','','','dspr'),(35,'кαÑ\8fισz Ð¼â˜ Ñ\8fку','https://karl.marx.pm/profile/kmarky','http://karl.marx.pm/profile/kmarky','https://karl.marx.pm/photo/custom/300/11.jpg?rev=2014-01-17+09%3A48%3A33','','0000-00-00 00:00:00','','','','','dspr'),(36,'Indignados','https://karl.marx.pm/profile/indignados','http://karl.marx.pm/profile/indignados','https://karl.marx.pm/photo/custom/300/44.jpg?rev=2012-05-27+14%3A53%3A52','','0000-00-00 00:00:00','','','','','dspr'),(37,'Anarkia','https://karl.marx.pm/profile/anarquia','http://karl.marx.pm/profile/anarquia','https://karl.marx.pm/photo/custom/300/45.jpg?rev=2012-05-29+11%3A01%3A11','','0000-00-00 00:00:00','','','','','dspr'),(38,'Planeta Pirata','https://karl.marx.pm/profile/pirata','http://karl.marx.pm/profile/pirata','https://karl.marx.pm/photo/custom/300/46.jpg?rev=2012-05-27+15%3A20%3A12','','0000-00-00 00:00:00','','','','','dspr'),(39,'Grupo GNU | Linux','https://karl.marx.pm/profile/gnu','http://karl.marx.pm/profile/gnu','https://karl.marx.pm/photo/custom/300/47.jpg?rev=2012-05-27+15%3A34%3A20','','0000-00-00 00:00:00','','','','','dspr'),(40,'Ecologia','https://karl.marx.pm/profile/eco','http://karl.marx.pm/profile/eco','https://karl.marx.pm/photo/custom/300/57.jpg?rev=2012-06-09+06%3A42%3A04','','0000-00-00 00:00:00','','','','','dspr'),(41,'Grupo antiFa Friendica','https://karl.marx.pm/profile/antifa','http://karl.marx.pm/profile/antifa','https://karl.marx.pm/photo/custom/300/60.jpg?rev=2012-06-11+08%3A46%3A48','','0000-00-00 00:00:00','','','','','dspr'),(42,'Facebook (alias Feisbuk)','https://karl.marx.pm/profile/facebook','http://karl.marx.pm/profile/facebook','https://karl.marx.pm/photo/custom/300/61.jpg?rev=2014-01-17+09%3A50%3A44','','0000-00-00 00:00:00','','','','','dspr'),(43,'Todo Cine','https://karl.marx.pm/profile/cine','http://karl.marx.pm/profile/cine','https://karl.marx.pm/photo/custom/300/65.jpg?rev=2012-06-15+07%3A20%3A01','','0000-00-00 00:00:00','','','','','dspr'),(44,'Rivera Valdez','https://karl.marx.pm/profile/riveravaldez','http://karl.marx.pm/profile/riveravaldez','https://karl.marx.pm/photo/custom/300/205.jpg?rev=2013-06-18+10%3A58%3A46','','0000-00-00 00:00:00','','','','','dspr'),(45,'Tazman Devil','https://karl.marx.pm/profile/tazman','http://karl.marx.pm/profile/tazman','https://karl.marx.pm/photo/custom/300/228.jpg?rev=2013-08-24+02%3A59%3A52','','0000-00-00 00:00:00','','','','','dspr'),(46,'Tiago Casal Ribeiro','https://karl.marx.pm/profile/tiago','http://karl.marx.pm/profile/tiago','https://karl.marx.pm/photo/custom/300/391.jpg?rev=2014-10-30+17%3A10%3A40','','0000-00-00 00:00:00','','','','','dspr'),(47,'Protestation','https://karl.marx.pm/profile/protestation_','http://karl.marx.pm/profile/protestation_','https://karl.marx.pm/photo/custom/300/414.jpg','','0000-00-00 00:00:00','','','','','dspr'),(48,'Arto','https://myfriendica.net/profile/arto','http://myfriendica.net/profile/arto','https://myfriendica.net/photo/custom/300/5.jpg?rev=2012-04-29+18%3A36%3A29','','0000-00-00 00:00:00','','','','','dspr'),(49,'Gatoso Kot','https://myfriendica.net/profile/gatoso','http://myfriendica.net/profile/gatoso','https://myfriendica.net/photo/custom/300/159.jpg?rev=2013-04-05+05%3A51%3A58','','0000-00-00 00:00:00','','','','','dspr'),(50,'Believing Prayer','https://myfriendica.net/profile/believingprayer','http://myfriendica.net/profile/believingprayer','https://myfriendica.net/photo/custom/300/11.jpg?rev=2012-03-19+13%3A12%3A07','','0000-00-00 00:00:00','','','','','dspr'),(51,'Avery Jenkins','https://myfriendica.net/profile/docaltmed','http://myfriendica.net/profile/docaltmed','https://myfriendica.net/photo/custom/300/17.jpg?rev=2012-03-27+11%3A05%3A26','','0000-00-00 00:00:00','','','','','dspr'),(52,'Vincent','https://myfriendica.net/profile/influencepc','http://myfriendica.net/profile/influencepc','https://myfriendica.net/photo/custom/300/55.jpg?rev=2012-04-26+12%3A47%3A48','','0000-00-00 00:00:00','','','','','dspr'),(53,'Berlin Group','https://myfriendica.net/profile/berlin','http://myfriendica.net/profile/berlin','https://myfriendica.net/photo/custom/300/65.jpg?rev=2012-04-28+09%3A21%3A19','','0000-00-00 00:00:00','','','','','dspr'),(54,'jcsesecuneta@myfriendica.net','https://myfriendica.net/profile/jcsesecuneta','http://myfriendica.net/profile/jcsesecuneta','https://myfriendica.net/photo/custom/300/281.jpg?rev=2013-09-06+11%3A51%3A59','','0000-00-00 00:00:00','','','','','dspr'),(55,'Sam I','https://myfriendica.net/profile/sam01','http://myfriendica.net/profile/sam01','https://myfriendica.net/photo/custom/300/183.jpg?rev=2013-06-28+15%3A34%3A46','','0000-00-00 00:00:00','','','','','dspr'),(56,'Stephen Judge','https://myfriendica.net/profile/stephen','http://myfriendica.net/profile/stephen','https://myfriendica.net/photo/custom/300/294.jpg?rev=2014-02-25+15%3A07%3A05','','0000-00-00 00:00:00','','','','','dspr'),(57,'潘隆å\90‰ Tony Phuah','https://myfriendica.net/profile/tonyphuah','http://myfriendica.net/profile/tonyphuah','https://myfriendica.net/photo/custom/300/304.jpg?rev=2013-11-02+00%3A37%3A59','','0000-00-00 00:00:00','','','','','dspr'),(58,'Lina María Largo','https://myfriendica.net/profile/linamaria','http://myfriendica.net/profile/linamaria','https://myfriendica.net/photo/custom/300/332.jpg?rev=2013-12-18+08%3A14%3A24','','0000-00-00 00:00:00','','','','','dspr'),(59,'Petra L.','https://myfriendica.net/profile/petra-l','http://myfriendica.net/profile/petra-l','https://myfriendica.net/photo/custom/300/349.jpg?rev=2014-04-05+13%3A41%3A25','','0000-00-00 00:00:00','','','','','dspr'),(60,'Panko','https://myfriendica.net/profile/panko','http://myfriendica.net/profile/panko','https://myfriendica.net/photo/custom/300/354.jpg?rev=2014-07-30+14%3A22%3A42','','0000-00-00 00:00:00','','','','','dspr'),(61,'Jorge','https://myfriendica.net/profile/soloojos','http://myfriendica.net/profile/soloojos','https://myfriendica.net/photo/custom/300/370.jpg?rev=2014-03-02+16%3A20%3A32','','0000-00-00 00:00:00','','','','','dspr'),(62,'Sebas Pedersen','https://myfriendica.net/profile/sebasped','http://myfriendica.net/profile/sebasped','https://myfriendica.net/photo/custom/300/373.jpg?rev=2015-01-15+23%3A04%3A06','','0000-00-00 00:00:00','','','','','dspr'),(63,'ivan zlax','https://myfriendica.net/profile/zlaxyi','http://myfriendica.net/profile/zlaxyi','https://myfriendica.net/photo/custom/300/376.jpg?rev=2014-03-09+09%3A56%3A13','','0000-00-00 00:00:00','','','','','dspr'),(64,'Shimriez','https://myfriendica.net/profile/shimriez','http://myfriendica.net/profile/shimriez','https://myfriendica.net/photo/custom/300/403.jpg?rev=2014-06-21+17%3A18%3A05','','0000-00-00 00:00:00','','','','','dspr'),(65,'Sitesonix Web Solutions','https://myfriendica.net/profile/sitesonix','http://myfriendica.net/profile/sitesonix','https://myfriendica.net/photo/custom/300/445.jpg?rev=2014-06-13+17%3A25%3A54','','0000-00-00 00:00:00','','','','','dspr'),(66,'Bastian Lang','https://myfriendica.net/profile/raudy93','http://myfriendica.net/profile/raudy93','https://myfriendica.net/photo/custom/300/436.jpg?rev=2014-05-29+12%3A40%3A00','','0000-00-00 00:00:00','','','','','dspr'),(67,'Simó Albert i Beltran','https://myfriendica.net/profile/sim6','http://myfriendica.net/profile/sim6','https://myfriendica.net/photo/custom/300/419.jpg?rev=2014-05-14+16%3A14%3A04','','0000-00-00 00:00:00','','','','','dspr'),(68,'RT Griffiti','https://myfriendica.net/profile/rtgriffiti','http://myfriendica.net/profile/rtgriffiti','https://myfriendica.net/photo/custom/300/437.jpg?rev=2014-05-30+01%3A17%3A19','','0000-00-00 00:00:00','','','','','dspr'),(69,'Damian','https://myfriendica.net/profile/deb92','http://myfriendica.net/profile/deb92','https://myfriendica.net/photo/custom/300/462.jpg?rev=2014-07-29+18%3A18%3A26','','0000-00-00 00:00:00','','','','','dspr'),(70,'Ciril Earth','https://myfriendica.net/profile/cirilearth','http://myfriendica.net/profile/cirilearth','https://myfriendica.net/photo/custom/300/519.jpg?rev=2014-12-22+12%3A19%3A09','','0000-00-00 00:00:00','','','','','dspr'),(71,'The SOS Card Project','https://myfriendica.net/profile/the_sos_card_project','http://myfriendica.net/profile/the_sos_card_project','https://myfriendica.net/photo/custom/300/524.jpg?rev=2014-12-26+19%3A54%3A41','','0000-00-00 00:00:00','','','','','dspr'),(72,'Hauke Altmann','https://snarl.de/profile/tugelblend','http://snarl.de/profile/tugelblend','https://www.snarl.de/photo/profile/5.jpg','','2015-01-25 05:02:28','Berlin','Softwaredeveloper, friendica enthusiast, member of <a href=\"http://www.graffitiresearchlab.de/,\" target=\"_blank\">http://www.graffitiresearchlab.de/,</a> cyclist','graffiti, friendica, graffiti, research, lab, diy, collectivism, urban, art, surfing, berlin, opensource, critical, mass, freifunk','','dfrn'),(73,'Chris Thina','https://snarl.de/profile/chillkroete','http://snarl.de/profile/chillkroete','https://snarl.de/photo/profile/69.jpg','','2014-01-11 11:59:56','','','','','dfrn'),(74,'Dirk Schlechter','https://snarl.de/profile/viewfinder','http://snarl.de/profile/viewfinder','https://snarl.de/photo/profile/106.jpg','','2014-03-24 16:20:54','','','','Männlich','dfrn'),(75,'Tauschring Prenzelberg','https://snarl.de/profile/prenzeltausch','http://snarl.de/profile/prenzeltausch','https://snarl.de/photo/profile/117.jpg','','2015-01-25 19:31:54','Berlin','Haareschneiden gegen Waschmaschinenreparatur?<br>Autotransport gegen Katze gie&szlig;en?<br>Der Prenzelberger Tauschring<br>sucht weitere Mitglieder.<br>Komm doch mal vorbei:<br>Treffen jeden 2. &amp; 4. Montag im Monat<br>im Kiezladen in der Dunckerstr. 14, 19-20 Uhr<br>prenzeltausch.thing.de','tauschring, zeitkonto','Intersex','dfrn'),(76,'Panko','https://snarl.de/profile/panko','http://snarl.de/profile/panko','https://snarl.de/photo/profile/141.jpg','@','2015-02-02 11:31:46','La Vila Joiosa','','debian, linux, gnu, gnu/linux, scifi, horror, xmpp, jabber, friendica, pump, freesoftware, darts, dardos, dards, punk, rock, ska, reggae, beer','Home','dfrn'),(77,'Berlin Group','https://snarl.de/profile/berlin','http://snarl.de/profile/berlin','https://snarl.de/photo/profile/0.jpg','','2012-04-28 09:21:19','Berlin','Eine Gruppe f&uuml;r alle Friendicianer, die an der geilsten Stadt Deutschlands interessiert sind.','berlin','','dfrn'),(78,'Daniel C. Würl','https://snarl.de/profile/decadentgray','http://snarl.de/profile/decadentgray','https://snarl.de/photo/profile/158.jpg','','2014-08-29 02:20:44','','','','','dfrn'),(79,'Michaela Gruber','https://snarl.de/profile/starling','http://snarl.de/profile/starling','https://snarl.de/photo/profile/160.jpg','','2014-09-03 18:19:10','','','','','dfrn'),(80,'Kristian R.','https://snarl.de/profile/z428','http://snarl.de/profile/z428','https://snarl.de/photo/profile/181.jpg','','2015-01-30 13:47:31','','Software engineer (#java, #javaee, #python, mainly server-sided and backend), art and imaging addict mainly using #gimp, #opensource / #softwarelibre # freesoftware software user and promoter, lover of bizarre #music (especially #netaudio stuff, #metal, #postrock, more open-minded #indie), #vegetarian, 30something and a few other things.<br>kr428 virtually everywhere, including twitter, identica et al.','linux, gimp, photography, music, java, opensource, gnome, philosophy, spirituality, art','Männlich','dfrn'),(81,'Georg Hofer','https://snarl.de/profile/ironhead','http://snarl.de/profile/ironhead','https://snarl.de/photo/profile/228.jpg','','2014-12-31 15:47:14','','','','','dfrn'),(82,'Nick Power','https://snarl.de/profile/veganvincent','http://snarl.de/profile/veganvincent','https://snarl.de/photo/profile/240.jpg','','2015-01-26 16:59:02','','','','','dfrn'),(83,'Yushin W','https://snarl.de/profile/opduur','http://snarl.de/profile/opduur','https://snarl.de/photo/profile/254.jpg','','2015-01-28 19:44:40','','','freesoftware, floss, foss, opensource, linux, vim, cli, command-line, creativecommons, ocw, oer, commons, sustainability, energy, lohas, mdg, sdg','','dfrn'),(84,'Oradon','https://oradon.pegasus.uberspace.de/profile/oradon','http://oradon.pegasus.uberspace.de/profile/oradon','https://oradon.pegasus.uberspace.de/photo/custom/300/1.jpg','','0000-00-00 00:00:00','','','','','dspr'),(85,'Stuttgart','https://oradon.pegasus.uberspace.de/profile/stuttgart','http://oradon.pegasus.uberspace.de/profile/stuttgart','https://oradon.pegasus.uberspace.de/photo/custom/300/12.jpg','','0000-00-00 00:00:00','','','','','dspr'),(86,'Olivier','https://friendica.free-beer.ch/profile/olivier','http://friendica.free-beer.ch/profile/olivier','https://friendica.free-beer.ch/photo/custom/300/1.jpg?rev=2012-05-02+09%3A02%3A19','','0000-00-00 00:00:00','','','','','dspr'),(87,'pogonator','https://friendica.free-beer.ch/profile/pogonator','http://friendica.free-beer.ch/profile/pogonator','https://friendica.free-beer.ch/photo/custom/300/396.jpg?rev=2013-06-22+07%3A51%3A38','','0000-00-00 00:00:00','','','','','dspr'),(88,'Claus Muehlenkamp','https://friendica.free-beer.ch/profile/clausmuehlenkamp','http://friendica.free-beer.ch/profile/clausmuehlenkamp','https://friendica.free-beer.ch/photo/custom/300/368.jpg?rev=2013-06-12+21%3A21%3A07','','0000-00-00 00:00:00','','','','','dspr'),(89,'Jörg Hartmann','https://friendica.free-beer.ch/profile/jh72de','http://friendica.free-beer.ch/profile/jh72de','https://friendica.free-beer.ch/photo/custom/300/295.jpg?rev=2013-04-09+19%3A21%3A01','','0000-00-00 00:00:00','','','','','dspr'),(90,'Carlos Solís','https://friendica.free-beer.ch/profile/csolisr','http://friendica.free-beer.ch/profile/csolisr','https://friendica.free-beer.ch/photo/custom/300/22.jpg?rev=2012-05-31+23%3A00%3A24','','0000-00-00 00:00:00','','','','','dspr'),(91,'Frederic Guilbault','https://friendica.free-beer.ch/profile/border','http://friendica.free-beer.ch/profile/border','https://friendica.free-beer.ch/photo/custom/300/23.jpg?rev=2012-06-01+02%3A24%3A09','','0000-00-00 00:00:00','','','','','dspr'),(92,'Sun Sunich','https://friendica.free-beer.ch/profile/sunsunich','http://friendica.free-beer.ch/profile/sunsunich','https://friendica.free-beer.ch/photo/custom/300/337.jpg?rev=2013-06-06+19%3A54%3A58','','0000-00-00 00:00:00','','','','','dspr'),(93,'Jaun Santiago','https://friendica.free-beer.ch/profile/juansantiago','http://friendica.free-beer.ch/profile/juansantiago','https://friendica.free-beer.ch/photo/custom/300/94.jpg?rev=2012-08-05+21%3A12%3A40','','0000-00-00 00:00:00','','','','','dspr'),(94,'Axel','https://friendica.free-beer.ch/profile/axel','http://friendica.free-beer.ch/profile/axel','https://friendica.free-beer.ch/photo/custom/300/61.jpg?rev=2014-01-08+17%3A14%3A05','','0000-00-00 00:00:00','','','','','dspr'),(95,'Alexander Jobst','https://friendica.free-beer.ch/profile/alexanderjobst','http://friendica.free-beer.ch/profile/alexanderjobst','https://friendica.free-beer.ch/photo/custom/300/77.jpg?rev=2012-07-11+08%3A19%3A36','','0000-00-00 00:00:00','','','','','dspr'),(96,'Matija Å uklje','https://friendica.free-beer.ch/profile/hook','http://friendica.free-beer.ch/profile/hook','https://friendica.free-beer.ch/photo/custom/300/336.jpg?rev=2013-06-02+20%3A40%3A51','','0000-00-00 00:00:00','','','','','dspr'),(97,'Brando','https://friendica.free-beer.ch/profile/dysfunctional','http://friendica.free-beer.ch/profile/dysfunctional','https://friendica.free-beer.ch/photo/custom/300/89.jpg?rev=2012-07-28+04%3A35%3A53','','0000-00-00 00:00:00','','','','','dspr'),(98,'Max Anton','https://friendica.free-beer.ch/profile/ntimes','http://friendica.free-beer.ch/profile/ntimes','https://friendica.free-beer.ch/photo/custom/300/98.jpg?rev=2012-08-08+21%3A32%3A00','','0000-00-00 00:00:00','','','','','dspr'),(99,'Inyan','https://friendica.free-beer.ch/profile/inyan','http://friendica.free-beer.ch/profile/inyan','https://friendica.free-beer.ch/photo/custom/300/111.jpg?rev=2012-08-18+19%3A01%3A17','','0000-00-00 00:00:00','','','','','dspr'),(100,'亗 Dr. Emporio Efikz äº—','https://friendica.free-beer.ch/profile/dr_emporio_efikz','http://friendica.free-beer.ch/profile/dr_emporio_efikz','https://friendica.free-beer.ch/photo/custom/300/108.jpg?rev=2012-08-17+01%3A48%3A09','','0000-00-00 00:00:00','','','','','dspr'),(101,'w2bh.- free-beer.ch','https://friendica.free-beer.ch/profile/w2bh','http://friendica.free-beer.ch/profile/w2bh','https://friendica.free-beer.ch/photo/custom/300/104.jpg?rev=2012-08-15+10%3A52%3A29','','0000-00-00 00:00:00','','','','','dspr'),(102,'Torsten Schilinsky','https://friendica.free-beer.ch/profile/torsten1968','http://friendica.free-beer.ch/profile/torsten1968','https://friendica.free-beer.ch/photo/custom/300/107.jpg?rev=2012-09-18+11%3A17%3A42','','0000-00-00 00:00:00','','','','','dspr'),(103,'Ecologie Libidinale','https://friendica.free-beer.ch/profile/ecologielibidinale','http://friendica.free-beer.ch/profile/ecologielibidinale','https://friendica.free-beer.ch/photo/custom/300/118.jpg?rev=2012-08-23+18%3A19%3A23','','0000-00-00 00:00:00','','','','','dspr'),(104,'Robert Bonie','https://friendica.free-beer.ch/profile/robrob','http://friendica.free-beer.ch/profile/robrob','https://friendica.free-beer.ch/photo/custom/300/138.jpg?rev=2012-09-07+17%3A57%3A21','','0000-00-00 00:00:00','','','','','dspr'),(105,'Marius Katcá','https://friendica.free-beer.ch/profile/marius_katca','http://friendica.free-beer.ch/profile/marius_katca','https://friendica.free-beer.ch/photo/custom/300/143.jpg?rev=2012-09-10+11%3A02%3A55','','0000-00-00 00:00:00','','','','','dspr'),(106,'Yossefa Mekyton','https://friendica.free-beer.ch/profile/jooxz','http://friendica.free-beer.ch/profile/jooxz','https://friendica.free-beer.ch/photo/custom/300/413.jpg?rev=2013-06-29+18%3A54%3A44','','0000-00-00 00:00:00','','','','','dspr'),(107,'Xurxo Ventos','https://friendica.free-beer.ch/profile/xurxoventos','http://friendica.free-beer.ch/profile/xurxoventos','https://friendica.free-beer.ch/photo/custom/300/412.jpg?rev=2013-06-29+10%3A07%3A23','','0000-00-00 00:00:00','','','','','dspr'),(108,'Fergus Ferrier','https://friendica.free-beer.ch/profile/rufusson','http://friendica.free-beer.ch/profile/rufusson','https://friendica.free-beer.ch/photo/custom/300/146.jpg?rev=2012-09-14+01%3A11%3A23','','0000-00-00 00:00:00','','','','','dspr'),(109,'Arescorpio Nepesh','https://friendica.free-beer.ch/profile/arescorpio','http://friendica.free-beer.ch/profile/arescorpio','https://friendica.free-beer.ch/photo/custom/300/158.jpg?rev=2012-10-05+19%3A05%3A49','','0000-00-00 00:00:00','','','','','dspr'),(110,'Shiroikuma','https://friendica.free-beer.ch/profile/shiroikuma','http://friendica.free-beer.ch/profile/shiroikuma','https://friendica.free-beer.ch/photo/custom/300/334.jpg?rev=2013-06-02+09%3A59%3A35','','0000-00-00 00:00:00','','','','','dspr'),(111,'FreeBeer Klampf','https://friendica.free-beer.ch/profile/klampfattacke','http://friendica.free-beer.ch/profile/klampfattacke','https://friendica.free-beer.ch/photo/custom/300/167.jpg?rev=2012-10-27+02%3A34%3A19','','0000-00-00 00:00:00','','','','','dspr'),(112,'Raphael Vieira','https://friendica.free-beer.ch/profile/barba_negra','http://friendica.free-beer.ch/profile/barba_negra','https://friendica.free-beer.ch/photo/custom/300/772.jpg?rev=2014-05-04+03%3A45%3A51','','0000-00-00 00:00:00','','','','','dspr'),(113,'Marina Soler','https://friendica.free-beer.ch/profile/marisoler','http://friendica.free-beer.ch/profile/marisoler','https://friendica.free-beer.ch/photo/custom/300/514.jpg?rev=2013-09-01+18%3A38%3A55','','0000-00-00 00:00:00','','','','','dspr'),(114,'Als Ob','https://friendica.free-beer.ch/profile/derhuaba','http://friendica.free-beer.ch/profile/derhuaba','https://friendica.free-beer.ch/photo/custom/300/842.jpg?rev=2014-08-06+23%3A24%3A06','','0000-00-00 00:00:00','','','','','dspr'),(115,'Colin Steele','https://friendica.free-beer.ch/profile/emberleaf','http://friendica.free-beer.ch/profile/emberleaf','https://friendica.free-beer.ch/photo/custom/300/245.jpg?rev=2013-02-23+16%3A54%3A57','','0000-00-00 00:00:00','','','','','dspr'),(116,'Max Mustermann','https://friendica.free-beer.ch/profile/jan_sofasurfer','http://friendica.free-beer.ch/profile/jan_sofasurfer','https://friendica.free-beer.ch/photo/custom/300/246.jpg?rev=2013-02-24+13%3A17%3A05','','0000-00-00 00:00:00','','','','','dspr'),(117,'Nicola Sisto Alessandro Vaccarone','https://friendica.free-beer.ch/profile/nk','http://friendica.free-beer.ch/profile/nk','https://friendica.free-beer.ch/photo/custom/300/286.jpg?rev=2014-03-05+18%3A14%3A39','','0000-00-00 00:00:00','','','','','dspr'),(118,'Pascal Daniel Angst','https://friendica.free-beer.ch/profile/pascala','http://friendica.free-beer.ch/profile/pascala','https://friendica.free-beer.ch/photo/custom/300/268.jpg?rev=2013-03-16+14%3A39%3A19','','0000-00-00 00:00:00','','','','','dspr'),(119,'Bodhi SparkleSnapdragon Goforth','https://friendica.free-beer.ch/profile/snapdragon','http://friendica.free-beer.ch/profile/snapdragon','https://friendica.free-beer.ch/photo/custom/300/494.jpg?rev=2013-08-15+14%3A51%3A39','','0000-00-00 00:00:00','','','','','dspr'),(120,'AntiChristos44 BodhiSattva','https://friendica.free-beer.ch/profile/ac44bo','http://friendica.free-beer.ch/profile/ac44bo','https://friendica.free-beer.ch/photo/custom/300/440.jpg?rev=2013-07-15+01%3A55%3A24','','0000-00-00 00:00:00','','','','','dspr'),(121,'Michael Moroni','https://friendica.free-beer.ch/profile/airon90','http://friendica.free-beer.ch/profile/airon90','https://friendica.free-beer.ch/photo/custom/300/547.jpg?rev=2013-09-27+11%3A19%3A56','','0000-00-00 00:00:00','','','','','dspr'),(122,'Martin Neujahr','https://friendica.free-beer.ch/profile/funkymartin','http://friendica.free-beer.ch/profile/funkymartin','https://friendica.free-beer.ch/photo/custom/300/557.jpg?rev=2013-10-04+06%3A33%3A29','','0000-00-00 00:00:00','','','','','dspr'),(123,'Florian Traverse','https://friendica.free-beer.ch/profile/temsa','http://friendica.free-beer.ch/profile/temsa','https://friendica.free-beer.ch/photo/custom/300/548.jpg?rev=2013-09-28+06%3A16%3A05','','0000-00-00 00:00:00','','','','','dspr'),(124,'Picaflor Azul','https://friendica.free-beer.ch/profile/picaflor','http://friendica.free-beer.ch/profile/picaflor','https://friendica.free-beer.ch/photo/custom/300/549.jpg?rev=2013-09-28+15%3A36%3A46','','0000-00-00 00:00:00','','','','','dspr'),(125,'edson duarte','https://friendica.free-beer.ch/profile/vaugs3roty','http://friendica.free-beer.ch/profile/vaugs3roty','https://friendica.free-beer.ch/photo/custom/300/570.jpg?rev=2013-10-13+18%3A01%3A06','','0000-00-00 00:00:00','','','','','dspr'),(126,'Don Viktoranghelo De Cuyo','https://friendica.free-beer.ch/profile/lechju','http://friendica.free-beer.ch/profile/lechju','https://friendica.free-beer.ch/photo/custom/300/583.jpg?rev=2013-11-02+22%3A56%3A06','','0000-00-00 00:00:00','','','','','dspr'),(127,'Liselotte Vinberg','https://friendica.free-beer.ch/profile/musikmamma','http://friendica.free-beer.ch/profile/musikmamma','https://friendica.free-beer.ch/photo/custom/300/589.jpg?rev=2013-11-02+18%3A22%3A16','','0000-00-00 00:00:00','','','','','dspr'),(128,'Arlo James Barnes','https://friendica.free-beer.ch/profile/arlojamesbarnes','http://friendica.free-beer.ch/profile/arlojamesbarnes','https://friendica.free-beer.ch/photo/custom/300/593.jpg?rev=2013-11-04+21%3A56%3A10','','0000-00-00 00:00:00','','','','','dspr'),(129,'Roxana Diaz','https://friendica.free-beer.ch/profile/heindys','http://friendica.free-beer.ch/profile/heindys','https://friendica.free-beer.ch/photo/custom/300/774.jpg?rev=2014-05-10+09%3A51%3A52','','0000-00-00 00:00:00','','','','','dspr'),(130,'Armin Lutz','https://friendica.free-beer.ch/profile/zebra','http://friendica.free-beer.ch/profile/zebra','https://friendica.free-beer.ch/photo/custom/300/612.jpg?rev=2013-11-20+12%3A36%3A03','','0000-00-00 00:00:00','','','','','dspr'),(131,'Philipp Obenauer','https://friendica.free-beer.ch/profile/clandestino','http://friendica.free-beer.ch/profile/clandestino','https://friendica.free-beer.ch/photo/custom/300/621.jpg?rev=2013-12-14+11%3A09%3A01','','0000-00-00 00:00:00','','','','','dspr'),(132,'ѕтєιикαмÏ\81f','https://friendica.free-beer.ch/profile/steinkampf','http://friendica.free-beer.ch/profile/steinkampf','https://friendica.free-beer.ch/photo/custom/300/652.jpg?rev=2014-01-19+13%3A36%3A41','','0000-00-00 00:00:00','','','','','dspr'),(133,'Jerry Briardy','https://friendica.free-beer.ch/profile/bookman37','http://friendica.free-beer.ch/profile/bookman37','https://friendica.free-beer.ch/photo/custom/300/651.jpg?rev=2013-12-31+06%3A49%3A25','','0000-00-00 00:00:00','','','','','dspr'),(134,'D2O','https://friendica.free-beer.ch/profile/d2o','http://friendica.free-beer.ch/profile/d2o','https://friendica.free-beer.ch/photo/custom/300/673.jpg?rev=2014-01-16+14%3A57%3A25','','0000-00-00 00:00:00','','','','','dspr'),(135,'Marc Leunig','https://friendica.free-beer.ch/profile/miefda','http://friendica.free-beer.ch/profile/miefda','https://friendica.free-beer.ch/photo/custom/300/675.jpg?rev=2014-01-16+20%3A51%3A38','','0000-00-00 00:00:00','','','','','dspr'),(136,'Sebas Pesersen','https://friendica.free-beer.ch/profile/sebasped','http://friendica.free-beer.ch/profile/sebasped','https://friendica.free-beer.ch/photo/custom/300/714.jpg?rev=2014-02-16+21%3A33%3A10','','0000-00-00 00:00:00','','','','','dspr'),(137,'Redrick Deckard','https://friendica.free-beer.ch/profile/red','http://friendica.free-beer.ch/profile/red','https://friendica.free-beer.ch/photo/custom/300/724.jpg?rev=2014-03-02+17%3A12%3A30','','0000-00-00 00:00:00','','','','','dspr'),(138,'Rui Bernardo','https://friendica.free-beer.ch/profile/rui_miguel','http://friendica.free-beer.ch/profile/rui_miguel','https://friendica.free-beer.ch/photo/custom/300/729.jpg?rev=2014-03-05+15%3A46%3A11','','0000-00-00 00:00:00','','','','','dspr'),(139,'Manoel Nascimento','https://friendica.free-beer.ch/profile/manoelnascimento','http://friendica.free-beer.ch/profile/manoelnascimento','https://friendica.free-beer.ch/photo/custom/300/734.jpg?rev=2014-03-09+14%3A15%3A23','','0000-00-00 00:00:00','','','','','dspr'),(140,'ilma','https://friendica.free-beer.ch/profile/ilma','http://friendica.free-beer.ch/profile/ilma','https://friendica.free-beer.ch/photo/custom/300/739.jpg?rev=2014-03-14+03%3A41%3A44','','0000-00-00 00:00:00','','','','','dspr'),(141,'David Mccauley','https://friendica.free-beer.ch/profile/opticalrevenge','http://friendica.free-beer.ch/profile/opticalrevenge','https://friendica.free-beer.ch/photo/custom/300/746.jpg?rev=2014-03-22+18%3A30%3A05','','0000-00-00 00:00:00','','','','','dspr'),(142,'Atterratio Aeternus','https://friendica.free-beer.ch/profile/atterratio','http://friendica.free-beer.ch/profile/atterratio','https://friendica.free-beer.ch/photo/custom/300/753.jpg?rev=2014-04-04+01%3A23%3A23','','0000-00-00 00:00:00','','','','','dspr'),(143,'Markus Krüger','https://friendica.free-beer.ch/profile/kreuzmacher','http://friendica.free-beer.ch/profile/kreuzmacher','https://friendica.free-beer.ch/photo/custom/300/800.jpg?rev=2014-06-26+05%3A48%3A58','','0000-00-00 00:00:00','','','','','dspr'),(144,'Master O Disaster','https://friendica.free-beer.ch/profile/masterodisaster','http://friendica.free-beer.ch/profile/masterodisaster','https://friendica.free-beer.ch/photo/custom/300/855.jpg?rev=2014-08-18+20%3A31%3A42','','0000-00-00 00:00:00','','','','','dspr'),(145,'eyal72','https://friendica.free-beer.ch/profile/eyal72','http://friendica.free-beer.ch/profile/eyal72','https://friendica.free-beer.ch/photo/custom/300/872.jpg?rev=2014-09-03+22%3A35%3A36','','0000-00-00 00:00:00','','','','','dspr'),(146,'Ed Wes','https://friendica.free-beer.ch/profile/edwes','http://friendica.free-beer.ch/profile/edwes','https://friendica.free-beer.ch/photo/custom/300/1206.jpg','','0000-00-00 00:00:00','','','','','dspr'),(147,'Romoli Marco','https://friendica.free-beer.ch/profile/redleghorn','http://friendica.free-beer.ch/profile/redleghorn','https://friendica.free-beer.ch/photo/custom/300/1270.jpg?rev=2014-11-26+16%3A57%3A51','','0000-00-00 00:00:00','','','','','dspr'),(148,'Michael Rueetschli','http://social.rueetschli.org/profile/rueetschli','http://social.rueetschli.org/profile/rueetschli','http://social.rueetschli.org/photo/custom/300/1.jpg?rev=2014-03-14+09%3A30%3A42','','0000-00-00 00:00:00','','','','','dspr'),(149,'Land Ei','http://social.rueetschli.org/profile/land_ei','http://social.rueetschli.org/profile/land_ei','http://social.rueetschli.org/photo/custom/300/32.jpg?rev=2014-07-25+17%3A03%3A43','','0000-00-00 00:00:00','','','','','dspr'),(150,'Jim Wiskey','http://social.rueetschli.org/profile/gsxrpilot','http://social.rueetschli.org/profile/gsxrpilot','http://social.rueetschli.org/photo/custom/300/36.jpg?rev=2014-08-21+01%3A47%3A44','','0000-00-00 00:00:00','','','','','dspr'),(151,'Kevin K.','http://social.rueetschli.org/profile/dj-atropine','http://social.rueetschli.org/profile/dj-atropine','http://social.rueetschli.org/photo/custom/300/66.jpg?rev=2014-12-31+13%3A05%3A29','','0000-00-00 00:00:00','','','','','dspr'),(152,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','2015-02-02 19:00:21','','','','','stat'),(153,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','','2015-02-02 19:00:18','','','','','stat'),(154,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','2015-02-02 19:00:24','','','','','stat'),(155,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg','','2015-02-02 12:02:11','','','','','stat'),(156,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-4.jpg','','2015-02-02 19:00:12','','','','','dfrn');
+/*!40000 ALTER TABLE `gcontact` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `glink`
+--
+
+DROP TABLE IF EXISTS `glink`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `glink` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `cid` int(11) NOT NULL DEFAULT '0',
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `gcid` int(11) NOT NULL DEFAULT '0',
+  `zcid` int(11) NOT NULL DEFAULT '0',
+  `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`id`),
+  KEY `cid_uid_gcid_zcid` (`cid`,`uid`,`gcid`,`zcid`),
+  KEY `gcid` (`gcid`),
+  KEY `zcid` (`zcid`)
+) ENGINE=InnoDB AUTO_INCREMENT=189 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `glink`
+--
+
+LOCK TABLES `glink` WRITE;
+/*!40000 ALTER TABLE `glink` DISABLE KEYS */;
+INSERT INTO `glink` VALUES (1,0,0,1,0,'2015-02-02 11:31:20'),(2,0,0,2,0,'2015-02-02 11:31:21'),(3,0,0,3,0,'2015-02-02 11:31:22'),(4,0,0,4,0,'2015-02-02 11:31:23'),(5,0,0,5,0,'2015-02-02 11:31:24'),(6,0,0,6,0,'2015-02-02 11:31:25'),(7,0,0,7,0,'2015-02-02 11:31:26'),(8,0,0,8,0,'2015-02-02 11:31:27'),(9,0,0,9,0,'2015-02-02 11:31:28'),(10,0,0,10,0,'2015-02-02 11:31:28'),(11,0,0,11,0,'2015-02-02 11:31:29'),(12,0,0,12,0,'2015-02-02 11:31:30'),(13,0,0,13,0,'2015-02-02 11:31:31'),(14,0,0,14,0,'2015-02-02 11:31:32'),(15,0,0,15,0,'2015-02-02 11:31:33'),(16,0,0,16,0,'2015-02-02 11:31:34'),(17,0,0,17,0,'2015-02-02 11:31:35'),(18,0,0,18,0,'2015-02-02 11:31:35'),(19,0,0,19,0,'2015-02-02 11:31:36'),(20,0,0,20,0,'2015-02-02 11:31:37'),(21,0,0,21,0,'2015-02-02 11:31:38'),(22,0,0,22,0,'2015-02-02 11:31:39'),(23,0,0,23,0,'2015-02-02 11:31:40'),(24,0,0,24,0,'2015-02-02 11:31:41'),(25,0,0,25,0,'2015-02-02 11:31:41'),(26,0,0,26,0,'2015-02-02 11:31:42'),(27,0,0,27,0,'2015-02-02 11:31:43'),(28,0,0,28,0,'2015-02-02 11:31:44'),(29,0,0,29,0,'2015-02-02 11:31:44'),(30,0,0,30,0,'2015-02-02 11:31:45'),(31,0,0,31,0,'2015-02-02 11:31:45'),(32,0,0,32,0,'2015-02-02 11:31:45'),(33,0,0,33,0,'2015-02-02 11:31:46'),(34,0,0,34,0,'2015-02-02 11:31:47'),(35,0,0,35,0,'2015-02-02 11:32:53'),(36,0,0,36,0,'2015-02-02 11:32:54'),(37,0,0,37,0,'2015-02-02 11:32:55'),(38,0,0,38,0,'2015-02-02 11:32:56'),(39,0,0,39,0,'2015-02-02 11:32:57'),(40,0,0,40,0,'2015-02-02 11:32:57'),(41,0,0,41,0,'2015-02-02 11:32:58'),(42,0,0,42,0,'2015-02-02 11:32:59'),(43,0,0,43,0,'2015-02-02 11:33:00'),(44,0,0,44,0,'2015-02-02 11:33:01'),(45,0,0,45,0,'2015-02-02 11:33:02'),(46,0,0,46,0,'2015-02-02 11:33:02'),(47,0,0,47,0,'2015-02-02 11:33:03'),(48,0,0,48,0,'2015-02-02 11:33:05'),(49,0,0,49,0,'2015-02-02 11:33:06'),(50,0,0,50,0,'2015-02-02 11:33:07'),(51,0,0,51,0,'2015-02-02 11:33:08'),(52,0,0,52,0,'2015-02-02 11:33:10'),(53,0,0,53,0,'2015-02-02 11:33:11'),(54,0,0,54,0,'2015-02-02 11:33:12'),(55,0,0,55,0,'2015-02-02 11:33:13'),(56,0,0,56,0,'2015-02-02 11:33:14'),(57,0,0,57,0,'2015-02-02 11:33:15'),(58,0,0,58,0,'2015-02-02 11:33:16'),(59,0,0,59,0,'2015-02-02 11:33:17'),(60,0,0,60,0,'2015-02-02 11:33:18'),(61,0,0,61,0,'2015-02-02 11:33:19'),(62,0,0,62,0,'2015-02-02 11:33:21'),(63,0,0,63,0,'2015-02-02 11:33:22'),(64,0,0,64,0,'2015-02-02 11:33:23'),(65,0,0,65,0,'2015-02-02 11:33:24'),(66,0,0,66,0,'2015-02-02 11:33:25'),(67,0,0,67,0,'2015-02-02 11:33:26'),(68,0,0,68,0,'2015-02-02 11:33:29'),(69,0,0,69,0,'2015-02-02 11:33:32'),(70,0,0,70,0,'2015-02-02 11:33:33'),(71,0,0,71,0,'2015-02-02 11:33:34'),(72,0,0,72,0,'2015-02-02 11:34:38'),(73,0,0,73,0,'2015-02-02 11:34:38'),(74,0,0,74,0,'2015-02-02 11:34:38'),(75,0,0,75,0,'2015-02-02 11:34:38'),(76,0,0,76,0,'2015-02-02 11:34:38'),(77,0,0,77,0,'2015-02-02 11:34:38'),(78,0,0,78,0,'2015-02-02 11:34:38'),(79,0,0,79,0,'2015-02-02 11:34:38'),(80,0,0,80,0,'2015-02-02 11:34:38'),(81,0,0,81,0,'2015-02-02 11:34:38'),(82,0,0,82,0,'2015-02-02 11:34:38'),(83,0,0,83,0,'2015-02-02 11:34:38'),(84,0,0,84,0,'2015-02-02 11:34:41'),(85,0,0,85,0,'2015-02-02 11:34:42'),(86,0,0,86,0,'2015-02-02 11:34:43'),(87,0,0,87,0,'2015-02-02 11:34:44'),(88,0,0,88,0,'2015-02-02 11:34:45'),(89,0,0,89,0,'2015-02-02 11:34:46'),(90,0,0,90,0,'2015-02-02 11:34:46'),(91,0,0,91,0,'2015-02-02 11:34:47'),(92,0,0,92,0,'2015-02-02 11:34:48'),(93,0,0,93,0,'2015-02-02 11:34:49'),(94,0,0,94,0,'2015-02-02 11:34:49'),(95,0,0,95,0,'2015-02-02 11:34:50'),(96,0,0,96,0,'2015-02-02 11:34:51'),(97,0,0,97,0,'2015-02-02 11:34:51'),(98,0,0,98,0,'2015-02-02 11:34:52'),(99,0,0,99,0,'2015-02-02 11:34:53'),(100,0,0,100,0,'2015-02-02 11:34:54'),(101,0,0,101,0,'2015-02-02 11:34:55'),(102,0,0,102,0,'2015-02-02 11:34:55'),(103,0,0,103,0,'2015-02-02 11:34:56'),(104,0,0,104,0,'2015-02-02 11:34:57'),(105,0,0,105,0,'2015-02-02 11:34:58'),(106,0,0,106,0,'2015-02-02 11:34:58'),(107,0,0,107,0,'2015-02-02 11:34:59'),(108,0,0,108,0,'2015-02-02 11:35:00'),(109,0,0,109,0,'2015-02-02 11:35:01'),(110,0,0,110,0,'2015-02-02 11:35:02'),(111,0,0,111,0,'2015-02-02 11:35:02'),(112,0,0,112,0,'2015-02-02 11:35:03'),(113,0,0,113,0,'2015-02-02 11:35:04'),(114,0,0,114,0,'2015-02-02 11:35:05'),(115,0,0,115,0,'2015-02-02 11:35:06'),(116,0,0,116,0,'2015-02-02 11:35:06'),(117,0,0,117,0,'2015-02-02 11:35:07'),(118,0,0,118,0,'2015-02-02 11:35:08'),(119,0,0,119,0,'2015-02-02 11:35:09'),(120,0,0,120,0,'2015-02-02 11:35:09'),(121,0,0,121,0,'2015-02-02 11:35:10'),(122,0,0,122,0,'2015-02-02 11:35:11'),(123,0,0,123,0,'2015-02-02 11:35:12'),(124,0,0,124,0,'2015-02-02 11:35:13'),(125,0,0,125,0,'2015-02-02 11:35:14'),(126,0,0,126,0,'2015-02-02 11:35:15'),(127,0,0,127,0,'2015-02-02 11:35:15'),(128,0,0,128,0,'2015-02-02 11:35:16'),(129,0,0,129,0,'2015-02-02 11:35:17'),(130,0,0,130,0,'2015-02-02 11:35:18'),(131,0,0,131,0,'2015-02-02 11:35:18'),(132,0,0,132,0,'2015-02-02 11:35:19'),(133,0,0,133,0,'2015-02-02 11:35:20'),(134,0,0,134,0,'2015-02-02 11:35:21'),(135,0,0,135,0,'2015-02-02 11:35:22'),(136,0,0,136,0,'2015-02-02 11:35:23'),(137,0,0,137,0,'2015-02-02 11:35:23'),(138,0,0,138,0,'2015-02-02 11:35:24'),(139,0,0,139,0,'2015-02-02 11:35:25'),(140,0,0,140,0,'2015-02-02 11:35:26'),(141,0,0,141,0,'2015-02-02 11:35:27'),(142,0,0,142,0,'2015-02-02 11:35:28'),(143,0,0,143,0,'2015-02-02 11:35:29'),(144,0,0,144,0,'2015-02-02 11:35:29'),(145,0,0,145,0,'2015-02-02 11:35:30'),(146,0,0,146,0,'2015-02-02 11:35:31'),(147,0,0,147,0,'2015-02-02 11:35:32'),(148,0,0,148,0,'2015-02-02 11:35:35'),(149,0,0,149,0,'2015-02-02 11:35:36'),(150,0,0,150,0,'2015-02-02 11:35:37'),(151,0,0,151,0,'2015-02-02 11:35:39'),(152,0,0,152,152,'2015-02-02 18:40:44'),(153,0,0,153,153,'2015-02-02 18:44:01'),(154,0,0,154,154,'2015-02-02 18:45:06'),(155,0,0,155,155,'2015-02-02 18:51:50'),(156,8,3,156,0,'2015-02-02 18:50:03'),(157,9,6,153,0,'2015-02-02 18:50:06'),(158,9,6,154,0,'2015-02-02 18:50:06'),(159,7,4,152,0,'2015-02-02 18:50:08'),(160,7,4,156,0,'2015-02-02 18:50:08'),(161,10,5,154,0,'2015-02-02 18:50:11'),(162,10,5,153,0,'2015-02-02 18:50:11'),(163,0,0,152,155,'2015-02-02 18:51:50'),(164,0,0,153,155,'2015-02-02 18:51:50'),(165,17,6,155,0,'2015-02-02 19:00:03'),(166,17,6,152,0,'2015-02-02 19:00:03'),(167,17,6,156,0,'2015-02-02 19:00:03'),(168,17,6,153,0,'2015-02-02 19:00:03'),(169,17,6,154,0,'2015-02-02 19:00:03'),(170,15,5,155,0,'2015-02-02 19:00:06'),(171,15,5,152,0,'2015-02-02 19:00:06'),(172,15,5,156,0,'2015-02-02 19:00:06'),(173,15,5,153,0,'2015-02-02 19:00:06'),(174,15,5,154,0,'2015-02-02 19:00:06'),(175,11,3,155,0,'2015-02-02 19:00:09'),(176,11,3,152,0,'2015-02-02 19:00:09'),(177,11,3,156,0,'2015-02-02 19:00:09'),(178,11,3,153,0,'2015-02-02 19:00:09'),(179,11,3,154,0,'2015-02-02 19:00:09'),(180,14,2,156,0,'2015-02-02 19:00:12'),(181,13,4,155,0,'2015-02-02 19:00:15'),(182,13,4,152,0,'2015-02-02 19:00:15'),(183,13,4,156,0,'2015-02-02 19:00:15'),(184,13,4,153,0,'2015-02-02 19:00:15'),(185,13,4,154,0,'2015-02-02 19:00:15'),(186,16,2,153,0,'2015-02-02 19:00:18'),(187,12,2,152,0,'2015-02-02 19:00:21'),(188,18,2,154,0,'2015-02-02 19:00:24');
+/*!40000 ALTER TABLE `glink` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `group`
+--
+
+DROP TABLE IF EXISTS `group`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `group` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `visible` tinyint(1) NOT NULL DEFAULT '0',
+  `deleted` tinyint(1) NOT NULL DEFAULT '0',
+  `name` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`)
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `group`
+--
+
+LOCK TABLES `group` WRITE;
+/*!40000 ALTER TABLE `group` DISABLE KEYS */;
+INSERT INTO `group` VALUES (1,1,0,0,'Friends'),(2,2,0,0,'Friends'),(3,3,0,0,'Friends'),(4,4,0,0,'Friends'),(5,5,0,0,'Friends'),(6,6,0,0,'Friends'),(7,2,0,0,'group1'),(8,2,0,0,'group2');
+/*!40000 ALTER TABLE `group` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `group_member`
+--
+
+DROP TABLE IF EXISTS `group_member`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `group_member` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `gid` int(10) unsigned NOT NULL DEFAULT '0',
+  `contact-id` int(10) unsigned NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `uid_gid_contactid` (`uid`,`gid`,`contact-id`)
+) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `group_member`
+--
+
+LOCK TABLES `group_member` WRITE;
+/*!40000 ALTER TABLE `group_member` DISABLE KEYS */;
+INSERT INTO `group_member` VALUES (4,2,2,12),(5,2,2,14),(6,2,2,16),(9,2,2,18),(12,2,7,12),(13,2,7,18),(14,2,8,14),(15,2,8,16),(1,3,3,8),(8,3,3,11),(2,4,4,7),(10,4,4,13),(3,5,5,10),(7,5,5,15),(11,6,6,17);
+/*!40000 ALTER TABLE `group_member` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `guid`
+--
+
+DROP TABLE IF EXISTS `guid`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `guid` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `guid` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `guid` (`guid`)
+) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `guid`
+--
+
+LOCK TABLES `guid` WRITE;
+/*!40000 ALTER TABLE `guid` DISABLE KEYS */;
+INSERT INTO `guid` VALUES (2,'043683592163744406954cf601a6ea7c'),(4,'06554cf6760d7bd9'),(26,'115265984886425346054cfc8cd2b30d'),(16,'134524908174756698954cfc6f6af694'),(3,'14654cf674381248'),(27,'147164917208927777754cfc90495ae1'),(25,'173326339068575320654cfc86b794cc'),(1,'19754cf5e616d58b'),(20,'21254cfc73701af6'),(18,'27554cfc71bcb2e8'),(12,'32554cfc4ecad9ed'),(10,'384434952122597196054cfc3e54fb70'),(11,'43554cfc4ec523d0'),(9,'480886065162043563354cfc37dd52a5'),(23,'48654cfc78f98728'),(17,'49454cfc71b75a4e'),(8,'513563952202228973954cfc33761f0c'),(6,'51854cf67b60ceec'),(24,'52754cfc79010af9'),(15,'57054cfc5cac8e5c'),(19,'58354cfc7369ebdb'),(22,'69454cfc7686a537'),(5,'75354cf677be64c1'),(14,'79554cfc5ca68cdc'),(21,'83254cfc7681d1da'),(7,'84554cf67cd393c4'),(13,'855416271212197658654cfc567bcd52'),(28,'962929709188110261054cfc93d1c583');
+/*!40000 ALTER TABLE `guid` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `hook`
+--
+
+DROP TABLE IF EXISTS `hook`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `hook` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `hook` varchar(255) NOT NULL DEFAULT '',
+  `file` varchar(255) NOT NULL DEFAULT '',
+  `function` varchar(255) NOT NULL DEFAULT '',
+  `priority` int(11) unsigned NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `hook_file_function` (`hook`(30),`file`(60),`function`(30))
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `hook`
+--
+
+LOCK TABLES `hook` WRITE;
+/*!40000 ALTER TABLE `hook` DISABLE KEYS */;
+/*!40000 ALTER TABLE `hook` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `intro`
+--
+
+DROP TABLE IF EXISTS `intro`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `intro` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `fid` int(11) NOT NULL DEFAULT '0',
+  `contact-id` int(11) NOT NULL DEFAULT '0',
+  `knowyou` tinyint(1) NOT NULL DEFAULT '0',
+  `duplex` tinyint(1) NOT NULL DEFAULT '0',
+  `note` text NOT NULL,
+  `hash` varchar(255) NOT NULL DEFAULT '',
+  `datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `blocked` tinyint(1) NOT NULL DEFAULT '1',
+  `ignore` tinyint(1) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `intro`
+--
+
+LOCK TABLES `intro` WRITE;
+/*!40000 ALTER TABLE `intro` DISABLE KEYS */;
+INSERT INTO `intro` VALUES (2,6,0,9,1,0,'','4142285f3a13a4470e6e8bca48f18f9452574c9f608050678d82b5156ba9272e1422902647','2015-02-02 18:44:07',1,0);
+/*!40000 ALTER TABLE `intro` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item`
+--
+
+DROP TABLE IF EXISTS `item`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `item` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `guid` varchar(255) NOT NULL DEFAULT '',
+  `uri` varchar(255) NOT NULL DEFAULT '',
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `contact-id` int(11) NOT NULL DEFAULT '0',
+  `type` varchar(255) NOT NULL DEFAULT '',
+  `wall` tinyint(1) NOT NULL DEFAULT '0',
+  `gravity` tinyint(1) NOT NULL DEFAULT '0',
+  `parent` int(10) unsigned NOT NULL DEFAULT '0',
+  `parent-uri` varchar(255) NOT NULL DEFAULT '',
+  `extid` varchar(255) NOT NULL DEFAULT '',
+  `thr-parent` varchar(255) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `owner-name` varchar(255) NOT NULL DEFAULT '',
+  `owner-link` varchar(255) NOT NULL DEFAULT '',
+  `owner-avatar` varchar(255) NOT NULL DEFAULT '',
+  `author-name` varchar(255) NOT NULL DEFAULT '',
+  `author-link` varchar(255) NOT NULL DEFAULT '',
+  `author-avatar` varchar(255) NOT NULL DEFAULT '',
+  `title` varchar(255) NOT NULL DEFAULT '',
+  `body` mediumtext NOT NULL,
+  `app` varchar(255) NOT NULL DEFAULT '',
+  `verb` varchar(255) NOT NULL DEFAULT '',
+  `object-type` varchar(255) NOT NULL DEFAULT '',
+  `object` text NOT NULL,
+  `target-type` varchar(255) NOT NULL DEFAULT '',
+  `target` text NOT NULL,
+  `postopts` text NOT NULL,
+  `plink` varchar(255) NOT NULL DEFAULT '',
+  `resource-id` varchar(255) NOT NULL DEFAULT '',
+  `event-id` int(11) NOT NULL DEFAULT '0',
+  `tag` mediumtext NOT NULL,
+  `attach` mediumtext NOT NULL,
+  `inform` mediumtext NOT NULL,
+  `file` mediumtext NOT NULL,
+  `location` varchar(255) NOT NULL DEFAULT '',
+  `coord` varchar(255) NOT NULL DEFAULT '',
+  `allow_cid` mediumtext NOT NULL,
+  `allow_gid` mediumtext NOT NULL,
+  `deny_cid` mediumtext NOT NULL,
+  `deny_gid` mediumtext NOT NULL,
+  `private` tinyint(1) NOT NULL DEFAULT '0',
+  `pubmail` tinyint(1) NOT NULL DEFAULT '0',
+  `moderated` tinyint(1) NOT NULL DEFAULT '0',
+  `visible` tinyint(1) NOT NULL DEFAULT '0',
+  `spam` tinyint(1) NOT NULL DEFAULT '0',
+  `starred` tinyint(1) NOT NULL DEFAULT '0',
+  `bookmark` tinyint(1) NOT NULL DEFAULT '0',
+  `unseen` tinyint(1) NOT NULL DEFAULT '1',
+  `deleted` tinyint(1) NOT NULL DEFAULT '0',
+  `origin` tinyint(1) NOT NULL DEFAULT '0',
+  `forum_mode` tinyint(1) NOT NULL DEFAULT '0',
+  `last-child` tinyint(1) unsigned NOT NULL DEFAULT '1',
+  `mention` tinyint(1) NOT NULL DEFAULT '0',
+  `network` varchar(32) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `guid` (`guid`),
+  KEY `uri` (`uri`),
+  KEY `parent` (`parent`),
+  KEY `parent-uri` (`parent-uri`),
+  KEY `extid` (`extid`),
+  KEY `uid_id` (`uid`,`id`),
+  KEY `uid_created` (`uid`,`created`),
+  KEY `uid_unseen` (`uid`,`unseen`),
+  KEY `uid_network_received` (`uid`,`network`,`received`),
+  KEY `uid_received` (`uid`,`received`),
+  KEY `uid_network_commented` (`uid`,`network`,`commented`),
+  KEY `uid_commented` (`uid`,`commented`),
+  KEY `uid_title` (`uid`,`title`),
+  KEY `uid_thrparent` (`uid`,`thr-parent`),
+  KEY `uid_parenturi` (`uid`,`parent-uri`),
+  KEY `uid_contactid_created` (`uid`,`contact-id`,`created`),
+  KEY `wall_body` (`wall`,`body`(6)),
+  KEY `uid_visible_moderated_created` (`uid`,`visible`,`moderated`,`created`),
+  KEY `uid_uri` (`uid`,`uri`),
+  KEY `uid_wall_created` (`uid`,`wall`,`created`),
+  KEY `resource-id` (`resource-id`),
+  KEY `uid_type` (`uid`,`type`),
+  KEY `uid_starred` (`uid`,`starred`),
+  KEY `contactid_allowcid_allowpid_denycid_denygid` (`contact-id`,`allow_cid`(10),`allow_gid`(10),`deny_cid`(10),`deny_gid`(10)),
+  KEY `uid_wall_parent_created` (`uid`,`wall`,`parent`,`created`),
+  KEY `uid_type_changed` (`uid`,`type`,`changed`),
+  KEY `contactid_verb` (`contact-id`,`verb`),
+  KEY `deleted_changed` (`deleted`,`changed`),
+  KEY `uid_wall_changed` (`uid`,`wall`,`changed`),
+  KEY `uid_eventid` (`uid`,`event-id`),
+  KEY `uid_authorlink` (`uid`,`author-link`),
+  KEY `uid_ownerlink` (`uid`,`owner-link`)
+) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item`
+--
+
+LOCK TABLES `item` WRITE;
+/*!40000 ALTER TABLE `item` DISABLE KEYS */;
+INSERT INTO `item` VALUES (1,'043683592163744406954cf601a6ea7c','urn:X-dfrn:192.168.22.10:1:d2aa595d1d0a1dcd796ffa5adf071f2d9a6f8e5ca39c6d5b024f5ddacdc9d2bb',1,1,'wall',1,0,1,'urn:X-dfrn:192.168.22.10:1:d2aa595d1d0a1dcd796ffa5adf071f2d9a6f8e5ca39c6d5b024f5ddacdc9d2bb','','urn:X-dfrn:192.168.22.10:1:d2aa595d1d0a1dcd796ffa5adf071f2d9a6f8e5ca39c6d5b024f5ddacdc9d2bb','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','admin','http://192.168.22.10/profile/admin','http://192.168.22.10/photo/avatar/1.jpg','admin','http://192.168.22.10/profile/admin','http://192.168.22.10/photo/avatar/1.jpg','Initial admin post','Hello world!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=pidgin;0.25363636363636:english;0.20848484848485:hawaiian;0.1730303030303','http://192.168.22.10/display/043683592163744406954cf601a6ea7c','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(2,'513563952202228973954cfc33761f0c','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65',3,3,'wall',1,0,2,'urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','Friendica2 is here!','Hi, this is my first post!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=latin;0.27460317460317:english;0.26285714285714:french;0.15936507936508','http://192.168.22.10/display/513563952202228973954cfc33761f0c','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(3,'480886065162043563354cfc37dd52a5','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b',4,4,'wall',1,0,3,'urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','Friendica3 says hi','Here I am!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=danish;0.54814814814815:english;0.48925925925926:italian;0.43','http://192.168.22.10/display/480886065162043563354cfc37dd52a5','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(4,'384434952122597196054cfc3e54fb70','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7',6,6,'wall',1,0,4,'urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','Friendica4 check-in','Hey ho!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=hawaiian;0.42722222222222:english;0.41388888888889:vietnamese;0.25333333333333','http://192.168.22.10/display/384434952122597196054cfc3e54fb70','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(5,'855416271212197658654cfc567bcd52','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b',5,5,'wall',1,0,5,'urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','Friendica5 mic check','There we go!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=pidgin;0.6330303030303:english;0.54242424242424:dutch;0.29969696969697','http://192.168.22.10/display/855416271212197658654cfc567bcd52','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(6,'480886065162043563354cfc37dd52a5','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b',3,8,'remote',0,0,6,'urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:50:03','2015-02-02 18:50:03','2015-02-02 18:50:03','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','Friendica3 says hi','Here I am!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=danish;0.54814814814815:english;0.48925925925926:italian;0.43','http://192.168.22.10/display/friendica3/3','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(7,'855416271212197658654cfc567bcd52','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b',6,9,'remote',0,0,7,'urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:50:05','2015-02-02 18:50:05','2015-02-02 18:50:05','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','Friendica5 mic check','There we go!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=pidgin;0.6330303030303:english;0.54242424242424:dutch;0.29969696969697','http://192.168.22.10/display/friendica5/5','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(8,'513563952202228973954cfc33761f0c','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65',4,7,'remote',0,0,8,'urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:50:08','2015-02-02 18:50:08','2015-02-02 18:50:08','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','Friendica2 is here!','Hi, this is my first post!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=latin;0.27460317460317:english;0.26285714285714:french;0.15936507936508','http://192.168.22.10/display/friendica2/2','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(9,'384434952122597196054cfc3e54fb70','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7',5,10,'remote',0,0,9,'urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:50:11','2015-02-02 18:50:11','2015-02-02 18:50:11','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','Friendica4 check-in','Hey ho!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=hawaiian;0.42722222222222:english;0.41388888888889:vietnamese;0.25333333333333','http://192.168.22.10/display/friendica4/4','',0,'','','','','','','','','','',0,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(10,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',2,2,'wall',1,0,10,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','','http://192.168.22.10/display/134524908174756698954cfc6f6af694','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(11,'173326339068575320654cfc86b794cc','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592',2,2,'wall',1,0,11,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:13','2015-02-02 18:56:43','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group1','This post goes to group1, containing friendica2 and friendica4.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.33489361702128:pidgin;0.26085106382979:lithuanian;0.23836879432624','http://192.168.22.10/display/173326339068575320654cfc86b794cc','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,1,0,0,0,'dfrn'),(12,'173326339068575320654cfc86b794cc','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592',3,11,'remote',0,0,12,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:13','2015-02-02 18:56:44','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group1','This post goes to group1, containing friendica2 and friendica4.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.33489361702128:pidgin;0.26085106382979:lithuanian;0.23836879432624','http://192.168.22.10/display/friendica1/11','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(13,'173326339068575320654cfc86b794cc','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592',6,17,'remote',0,0,13,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:16','2015-02-02 18:56:46','2015-02-02 19:00:16','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group1','This post goes to group1, containing friendica2 and friendica4.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.33489361702128:pidgin;0.26085106382979:lithuanian;0.23836879432624','http://192.168.22.10/display/friendica1/11','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(14,'115265984886425346054cfc8cd2b30d','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9',2,2,'wall',1,0,14,'urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group2','This post is visible to group2, that is friendica3 and friendica5.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/note','','','','lang=english;0.34785185185185:lithuanian;0.22888888888889:pidgin;0.22266666666667','http://192.168.22.10/display/115265984886425346054cfc8cd2b30d','',0,'','','','','','','','<8>','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(15,'115265984886425346054cfc8cd2b30d','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9',4,13,'remote',0,0,15,'urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:22','2015-02-02 18:58:22','2015-02-02 18:58:22','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group2','This post is visible to group2, that is friendica3 and friendica5.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.34785185185185:lithuanian;0.22888888888889:pidgin;0.22266666666667','http://192.168.22.10/display/friendica1/14','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(16,'115265984886425346054cfc8cd2b30d','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9',5,15,'remote',0,0,16,'urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','','urn:X-dfrn:192.168.22.10:2:979bf84af239ceb7f18d4ca98a518b87f86ecc993facf9821a03153d950496e9','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:24','2015-02-02 18:58:24','2015-02-02 18:58:24','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 posting to group2','This post is visible to group2, that is friendica3 and friendica5.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.34785185185185:lithuanian;0.22888888888889:pidgin;0.22266666666667','http://192.168.22.10/display/friendica1/14','',0,'','','','','','','','','','',1,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(17,'147164917208927777754cfc90495ae1','urn:X-dfrn:192.168.22.10:6:867f4977b76e9c71928e8cc4630d51b89b86669b1d0124f3c22412406dad62ee',6,6,'remote-comment',0,6,13,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','This is a comment on a group1 post.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=english;0.42811111111111:french;0.37277777777778:latin;0.29722222222222','http://192.168.22.10/display/147164917208927777754cfc90495ae1','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(18,'147164917208927777754cfc90495ae1','urn:X-dfrn:192.168.22.10:6:867f4977b76e9c71928e8cc4630d51b89b86669b1d0124f3c22412406dad62ee',2,18,'remote-comment',1,6,11,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:17','2015-02-02 18:59:17','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','This is a comment on a group1 post.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.42811111111111:french;0.37277777777778:latin;0.29722222222222','http://192.168.22.10/display/friendica4/17','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(19,'147164917208927777754cfc90495ae1','urn:X-dfrn:192.168.22.10:6:867f4977b76e9c71928e8cc4630d51b89b86669b1d0124f3c22412406dad62ee',3,11,'remote',0,6,12,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:18','2015-02-02 18:59:18','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','','This is a comment on a group1 post.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.42811111111111:french;0.37277777777778:latin;0.29722222222222','http://192.168.22.10/display/friendica1/18','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,0,0,'dfrn'),(20,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',6,17,'remote',0,0,20,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:03','2015-02-02 19:00:03','2015-02-02 19:00:03','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(21,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',5,15,'remote',0,0,21,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:06','2015-02-02 19:00:06','2015-02-02 19:00:06','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(22,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',3,11,'remote',0,0,22,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:09','2015-02-02 19:00:09','2015-02-02 19:00:09','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(23,'480886065162043563354cfc37dd52a5','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b',2,14,'remote',0,0,23,'urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','','urn:X-dfrn:192.168.22.10:4:39454efb15b0aff04057c81b8d4cd36f68b0d9fa37cf2c8adcefc596bc8fa61b','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 19:00:12','2015-02-02 19:00:12','2015-02-02 19:00:12','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/avatar/4.jpg','Friendica3 says hi','Here I am!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=danish;0.54814814814815:english;0.48925925925926:italian;0.43','http://192.168.22.10/display/friendica3/3','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(24,'962929709188110261054cfc93d1c583','urn:X-dfrn:192.168.22.10:3:3168271a1dea83d54e5a024e8f82a38b7fe8a15a9cce3bcf8370d583170d4fac',3,3,'remote-comment',0,6,12,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','I am in group1 and I can read the post and the comment.','','http://activitystrea.ms/schema/1.0/post','http://activitystrea.ms/schema/1.0/comment','','','','lang=english;0.43734848484848:italian;0.32325757575758:romanian;0.31931818181818','http://192.168.22.10/display/962929709188110261054cfc93d1c583','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,1,0,1,0,'dfrn'),(25,'962929709188110261054cfc93d1c583','urn:X-dfrn:192.168.22.10:3:3168271a1dea83d54e5a024e8f82a38b7fe8a15a9cce3bcf8370d583170d4fac',2,12,'remote-comment',1,6,11,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','I am in group1 and I can read the post and the comment.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.43734848484848:italian;0.32325757575758:romanian;0.31931818181818','http://192.168.22.10/display/friendica2/24','',0,'','','','','','','','<7>','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(26,'134524908174756698954cfc6f6af694','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2',4,13,'remote',0,0,26,'urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','','urn:X-dfrn:192.168.22.10:2:1cece68cbcb342dbcc12b18aae215d73c66e0ae06ecb26d33bc4d674751eb9b2','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:15','2015-02-02 19:00:15','2015-02-02 19:00:15','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','Friendica1 is here, too!','Yo!','','http://activitystrea.ms/schema/1.0/post','','','','','','http://192.168.22.10/display/friendica1/10','',0,'','','','','','','','','','',0,0,0,1,0,0,0,1,0,0,0,1,0,'dfrn'),(27,'962929709188110261054cfc93d1c583','urn:X-dfrn:192.168.22.10:3:3168271a1dea83d54e5a024e8f82a38b7fe8a15a9cce3bcf8370d583170d4fac',6,17,'remote',0,6,13,'urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','','urn:X-dfrn:192.168.22.10:2:83eb0c132241d0746df5aa23aa82cba2ffd8490e4d7c189a0df78b7586b58592','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:16','2015-02-02 19:00:16','2015-02-02 19:00:16','friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/avatar/2.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','','I am in group1 and I can read the post and the comment.','','http://activitystrea.ms/schema/1.0/post','','','','','lang=english;0.43734848484848:italian;0.32325757575758:romanian;0.31931818181818','http://192.168.22.10/display/friendica1/25','',0,'','','','','','','','','','',1,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(28,'855416271212197658654cfc567bcd52','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b',2,16,'remote',0,0,28,'urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','','urn:X-dfrn:192.168.22.10:5:e5b0ebeda709811e23178fef5c443cdd9fc9b40cf1bbef31f4860c3ef9a4f87b','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 19:00:18','2015-02-02 19:00:18','2015-02-02 19:00:18','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/avatar/5.jpg','Friendica5 mic check','There we go!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=pidgin;0.6330303030303:english;0.54242424242424:dutch;0.29969696969697','http://192.168.22.10/display/friendica5/5','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(29,'513563952202228973954cfc33761f0c','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65',2,12,'remote',0,0,29,'urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','','urn:X-dfrn:192.168.22.10:3:0d3a137305f0b57b724553b21be0e5ec39b358da44e553f41fc66e9d8f28ce65','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 19:00:21','2015-02-02 19:00:21','2015-02-02 19:00:21','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','Friendica2 is here!','Hi, this is my first post!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=latin;0.27460317460317:english;0.26285714285714:french;0.15936507936508','http://192.168.22.10/display/friendica2/2','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn'),(30,'384434952122597196054cfc3e54fb70','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7',2,18,'remote',0,0,30,'urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','','urn:X-dfrn:192.168.22.10:6:5e30601337e1e0e76da32f5eefec71954162a82e73c3369249bddc98a0e266b7','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 19:00:24','2015-02-02 19:00:24','2015-02-02 19:00:24','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/avatar/6.jpg','Friendica4 check-in','Hey ho!','','http://activitystrea.ms/schema/1.0/post','','','','','lang=hawaiian;0.42722222222222:english;0.41388888888889:vietnamese;0.25333333333333','http://192.168.22.10/display/friendica4/4','',0,'','','','','','','','','','',0,0,0,1,0,0,0,0,0,0,0,1,0,'dfrn');
+/*!40000 ALTER TABLE `item` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `item_id`
+--
+
+DROP TABLE IF EXISTS `item_id`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `item_id` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `iid` int(11) NOT NULL DEFAULT '0',
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `sid` varchar(255) NOT NULL DEFAULT '',
+  `service` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`),
+  KEY `sid` (`sid`),
+  KEY `service` (`service`),
+  KEY `iid` (`iid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `item_id`
+--
+
+LOCK TABLES `item_id` WRITE;
+/*!40000 ALTER TABLE `item_id` DISABLE KEYS */;
+/*!40000 ALTER TABLE `item_id` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `locks`
+--
+
+DROP TABLE IF EXISTS `locks`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `locks` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `name` varchar(128) NOT NULL DEFAULT '',
+  `locked` tinyint(1) NOT NULL DEFAULT '0',
+  `created` datetime DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `locks`
+--
+
+LOCK TABLES `locks` WRITE;
+/*!40000 ALTER TABLE `locks` DISABLE KEYS */;
+/*!40000 ALTER TABLE `locks` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `mail`
+--
+
+DROP TABLE IF EXISTS `mail`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `mail` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `guid` varchar(64) NOT NULL DEFAULT '',
+  `from-name` varchar(255) NOT NULL DEFAULT '',
+  `from-photo` varchar(255) NOT NULL DEFAULT '',
+  `from-url` varchar(255) NOT NULL DEFAULT '',
+  `contact-id` varchar(255) NOT NULL DEFAULT '',
+  `convid` int(11) unsigned NOT NULL DEFAULT '0',
+  `title` varchar(255) NOT NULL DEFAULT '',
+  `body` mediumtext NOT NULL,
+  `seen` tinyint(1) NOT NULL DEFAULT '0',
+  `reply` tinyint(1) NOT NULL DEFAULT '0',
+  `replied` tinyint(1) NOT NULL DEFAULT '0',
+  `unknown` tinyint(1) NOT NULL DEFAULT '0',
+  `uri` varchar(255) NOT NULL DEFAULT '',
+  `parent-uri` varchar(255) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`),
+  KEY `guid` (`guid`),
+  KEY `convid` (`convid`),
+  KEY `reply` (`reply`),
+  KEY `uri` (`uri`),
+  KEY `parent-uri` (`parent-uri`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `mail`
+--
+
+LOCK TABLES `mail` WRITE;
+/*!40000 ALTER TABLE `mail` DISABLE KEYS */;
+/*!40000 ALTER TABLE `mail` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `mailacct`
+--
+
+DROP TABLE IF EXISTS `mailacct`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `mailacct` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `server` varchar(255) NOT NULL DEFAULT '',
+  `port` int(11) NOT NULL DEFAULT '0',
+  `ssltype` varchar(16) NOT NULL DEFAULT '',
+  `mailbox` varchar(255) NOT NULL DEFAULT '',
+  `user` varchar(255) NOT NULL DEFAULT '',
+  `pass` text NOT NULL,
+  `reply_to` varchar(255) NOT NULL DEFAULT '',
+  `action` int(11) NOT NULL DEFAULT '0',
+  `movetofolder` varchar(255) NOT NULL DEFAULT '',
+  `pubmail` tinyint(1) NOT NULL DEFAULT '0',
+  `last_check` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `mailacct`
+--
+
+LOCK TABLES `mailacct` WRITE;
+/*!40000 ALTER TABLE `mailacct` DISABLE KEYS */;
+/*!40000 ALTER TABLE `mailacct` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `manage`
+--
+
+DROP TABLE IF EXISTS `manage`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `manage` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `mid` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `uid_mid` (`uid`,`mid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `manage`
+--
+
+LOCK TABLES `manage` WRITE;
+/*!40000 ALTER TABLE `manage` DISABLE KEYS */;
+/*!40000 ALTER TABLE `manage` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `notify`
+--
+
+DROP TABLE IF EXISTS `notify`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `notify` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `hash` varchar(64) NOT NULL DEFAULT '',
+  `type` int(11) NOT NULL DEFAULT '0',
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `url` varchar(255) NOT NULL DEFAULT '',
+  `photo` varchar(255) NOT NULL DEFAULT '',
+  `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `msg` mediumtext NOT NULL,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `link` varchar(255) NOT NULL DEFAULT '',
+  `parent` int(11) NOT NULL DEFAULT '0',
+  `seen` tinyint(1) NOT NULL DEFAULT '0',
+  `verb` varchar(255) NOT NULL DEFAULT '',
+  `otype` varchar(16) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`)
+) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `notify`
+--
+
+LOCK TABLES `notify` WRITE;
+/*!40000 ALTER TABLE `notify` DISABLE KEYS */;
+INSERT INTO `notify` VALUES (1,'3d5423a2cc45d4b8c8b290c660e2c6b8e57b9e88b671e4c579a559be08b27561',1,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/profile/3.jpg?rev=2015-02-02+12%3A02%3A40','2015-02-02 18:41:22','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica2]friendica2[/url].',4,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(2,'fbda244c49b754cb9f025d492d75dd0117a3124a5be71aa8ec92b97f9d49ee56',2,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/1f4766db71f0f2d503287947c1d67dcd-4.jpg','2015-02-02 18:41:48','[url=http://192.168.22.10/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url].',3,'http://192.168.22.10/contacts/8',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(3,'cfe0cdc5cc637ec14db44138a3763b8e837891649081f3537ed45ff900415468',1,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/profile/6.jpg?rev=2015-02-02+12%3A04%3A29','2015-02-02 18:45:15','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica4]friendica4[/url].',5,'http://192.168.22.10/notifications/intros',0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(4,'babf1684421dae503abe820f19e2f4714e61b1813cef84bc79fb743992cc56d4',2,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/75b60a2a1e6b2cdf2eb3637955a7a5c2-4.jpg','2015-02-02 18:45:30','[url=http://192.168.22.10/profile/friendica5]friendica5[/url] has accepted your [url=]connection request[/url].',6,'http://192.168.22.10/contacts/9',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(5,'7d70a57209f952be69671134ea646cdd180308ecfbc11608cbc938a12b2b3a00',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:49:41','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',3,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(6,'44f69e938a6125af6e7487da7b7933966f6f3bfc69da02989105e74110e4a061',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:50:09','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',4,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(7,'f3f9b580032f30d6bc0832b66bbaaab56769d3aca16d1d790c256139eebee1b4',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:50:55','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',5,'http://192.168.22.10/notifications/intros',0,0,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(8,'7c94e6c1e7ca90e651b8c0cea37d1f1466562b6e3248863336d32280d908c1fc',2,'friendica5','http://192.168.22.10/profile/friendica5','http://192.168.22.10/photo/01072618a17425401fafdeb40fcd79ac-4.jpg','2015-02-02 18:51:07','[url=http://192.168.22.10/profile/friendica5]friendica5[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/16',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(9,'31c4206b3a7dae13c8e9932d496dbab0b8a74b6230eb2656926523e85634d561',2,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-4.jpg','2015-02-02 18:51:34','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/12',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(10,'d644bd370f1171b59135aa13f1fad8ac50f3043866b3d46315088f378018c35e',1,'friendica1','http://192.168.22.10/profile/friendica1','http://192.168.22.10/photo/profile/2.jpg?rev=2015-02-02+12%3A02%3A11','2015-02-02 18:52:03','You\'ve received [url=]an introduction[/url] from [url=http://192.168.22.10/profile/friendica1]friendica1[/url].',6,'http://192.168.22.10/notifications/intros',0,1,'http://activitystrea.ms/schema/1.0/request-friend','intro'),(11,'26d24ba1d23e382fba4b92ad1d9147a5a67128ea39fec7d86e324837fd32961d',2,'friendica3','http://192.168.22.10/profile/friendica3','http://192.168.22.10/photo/1fc6596c195944666e18cbd313795942-4.jpg','2015-02-02 18:52:24','[url=http://192.168.22.10/profile/friendica3]friendica3[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/14',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(12,'a3257549c21f341cbcbf5b91837dfba6c0266f2c8d511dcce9616f5dffb4813c',2,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-4.jpg','2015-02-02 18:53:03','[url=http://192.168.22.10/profile/friendica4]friendica4[/url] has accepted your [url=]connection request[/url].',2,'http://192.168.22.10/contacts/18',0,1,'http://activitystrea.ms/schema/1.0/make-friend','intro'),(13,'a3b65a351066f8cac0690e182e4692f31744a73fc8b015f70ea18bcb52673c2d',8,'friendica4','http://192.168.22.10/profile/friendica4','http://192.168.22.10/photo/0f1ac566d253bcd264437b7f7a347f88-5.jpg','2015-02-02 18:59:17','[url=http://192.168.22.10/profile/friendica4]friendica4[/url] commented on [url=]your post[/url]',2,'http://192.168.22.10/display/147164917208927777754cfc90495ae1',11,0,'http://activitystrea.ms/schema/1.0/post','item'),(14,'bf0e548a4452320ec6415d395bfcec49f833ec1a6e1d377c4ccf856ce9729d17',8,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/b18ee0c7f160fdbf8f5d91a56a07a13c-5.jpg','2015-02-02 19:00:13','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] commented on [url=]your post[/url]',2,'http://192.168.22.10/display/962929709188110261054cfc93d1c583',11,0,'http://activitystrea.ms/schema/1.0/post','item'),(15,'c294b4af1bfc2c1f229db33d7b165265858e19321a8f5065c4c1095183689921',8,'friendica2','http://192.168.22.10/profile/friendica2','http://192.168.22.10/photo/avatar/3.jpg','2015-02-02 19:00:16','[url=http://192.168.22.10/profile/friendica2]friendica2[/url] commented on [url=]friendica1\'s post[/url]',6,'http://192.168.22.10/display/962929709188110261054cfc93d1c583',13,0,'http://activitystrea.ms/schema/1.0/post','item');
+/*!40000 ALTER TABLE `notify` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `notify-threads`
+--
+
+DROP TABLE IF EXISTS `notify-threads`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `notify-threads` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `notify-id` int(11) NOT NULL DEFAULT '0',
+  `master-parent-item` int(10) unsigned NOT NULL DEFAULT '0',
+  `parent-item` int(10) unsigned NOT NULL DEFAULT '0',
+  `receiver-uid` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `master-parent-item` (`master-parent-item`),
+  KEY `receiver-uid` (`receiver-uid`)
+) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `notify-threads`
+--
+
+LOCK TABLES `notify-threads` WRITE;
+/*!40000 ALTER TABLE `notify-threads` DISABLE KEYS */;
+INSERT INTO `notify-threads` VALUES (1,13,11,0,2),(2,15,13,0,6);
+/*!40000 ALTER TABLE `notify-threads` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `pconfig`
+--
+
+DROP TABLE IF EXISTS `pconfig`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `pconfig` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `cat` varchar(255) NOT NULL DEFAULT '',
+  `k` varchar(255) NOT NULL DEFAULT '',
+  `v` mediumtext NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `uid_cat_k` (`uid`,`cat`(30),`k`(30))
+) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `pconfig`
+--
+
+LOCK TABLES `pconfig` WRITE;
+/*!40000 ALTER TABLE `pconfig` DISABLE KEYS */;
+INSERT INTO `pconfig` VALUES (1,1,'expire','items','1'),(2,1,'expire','notes','1'),(3,1,'expire','starred','1'),(4,1,'expire','photos','0'),(5,1,'expire','network_only','0'),(6,1,'system','suggestme','0'),(7,1,'system','post_newfriend','0'),(8,1,'system','post_joingroup','0'),(9,1,'system','post_profilechange','0'),(10,1,'system','email_textonly','0'),(11,1,'network.view','group.selected','0'),(12,1,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(13,1,'network.view','net.selected','all'),(14,2,'expire','items','1'),(15,2,'expire','notes','1'),(16,2,'expire','starred','1'),(17,2,'expire','photos','0'),(18,2,'expire','network_only','0'),(19,2,'system','suggestme','0'),(20,2,'system','post_newfriend','0'),(21,2,'system','post_joingroup','0'),(22,2,'system','post_profilechange','0'),(23,2,'system','email_textonly','0'),(24,3,'expire','items','1'),(25,3,'expire','notes','1'),(26,3,'expire','starred','1'),(27,3,'expire','photos','0'),(28,3,'expire','network_only','0'),(29,3,'system','suggestme','0'),(30,3,'system','post_newfriend','0'),(31,3,'system','post_joingroup','0'),(32,3,'system','post_profilechange','0'),(33,3,'system','email_textonly','0'),(34,4,'expire','items','1'),(35,4,'expire','notes','1'),(36,4,'expire','starred','1'),(37,4,'expire','photos','0'),(38,4,'expire','network_only','0'),(39,4,'system','suggestme','0'),(40,4,'system','post_newfriend','0'),(41,4,'system','post_joingroup','0'),(42,4,'system','post_profilechange','0'),(43,4,'system','email_textonly','0'),(44,4,'network.view','group.selected','0'),(45,4,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(46,4,'network.view','net.selected','all'),(47,6,'expire','items','1'),(48,6,'expire','notes','1'),(49,6,'expire','starred','1'),(50,6,'expire','photos','0'),(51,6,'expire','network_only','0'),(52,6,'system','suggestme','0'),(53,6,'system','post_newfriend','0'),(54,6,'system','post_joingroup','0'),(55,6,'system','post_profilechange','0'),(56,6,'system','email_textonly','0'),(57,5,'expire','items','1'),(58,5,'expire','notes','1'),(59,5,'expire','starred','1'),(60,5,'expire','photos','0'),(61,5,'expire','network_only','0'),(62,5,'system','suggestme','0'),(63,5,'system','post_newfriend','0'),(64,5,'system','post_joingroup','0'),(65,5,'system','post_profilechange','0'),(66,5,'system','email_textonly','0'),(67,3,'network.view','group.selected','0'),(68,3,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(69,3,'network.view','net.selected','all'),(70,6,'network.view','group.selected','0'),(71,6,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(72,6,'network.view','net.selected','all'),(73,5,'network.view','group.selected','0'),(74,5,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(75,5,'network.view','net.selected','all'),(76,2,'network.view','group.selected','0'),(77,2,'network.view','tab.selected','a:7:{i:0;s:6:\"active\";i:1;s:0:\"\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";}'),(78,2,'network.view','net.selected','all');
+/*!40000 ALTER TABLE `pconfig` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `photo`
+--
+
+DROP TABLE IF EXISTS `photo`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `photo` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `contact-id` int(10) unsigned NOT NULL DEFAULT '0',
+  `guid` varchar(64) NOT NULL DEFAULT '',
+  `resource-id` varchar(255) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `title` varchar(255) NOT NULL DEFAULT '',
+  `desc` text NOT NULL,
+  `album` varchar(255) NOT NULL DEFAULT '',
+  `filename` varchar(255) NOT NULL DEFAULT '',
+  `type` varchar(128) NOT NULL DEFAULT 'image/jpeg',
+  `height` smallint(6) NOT NULL DEFAULT '0',
+  `width` smallint(6) NOT NULL DEFAULT '0',
+  `datasize` int(10) unsigned NOT NULL DEFAULT '0',
+  `data` mediumblob NOT NULL,
+  `scale` tinyint(3) NOT NULL DEFAULT '0',
+  `profile` tinyint(1) NOT NULL DEFAULT '0',
+  `allow_cid` mediumtext NOT NULL,
+  `allow_gid` mediumtext NOT NULL,
+  `deny_cid` mediumtext NOT NULL,
+  `deny_gid` mediumtext NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`),
+  KEY `resource-id` (`resource-id`),
+  KEY `guid` (`guid`)
+) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `photo`
+--
+
+LOCK TABLES `photo` WRITE;
+/*!40000 ALTER TABLE `photo` DISABLE KEYS */;
+INSERT INTO `photo` VALUES (1,1,0,'19754cf5e616d58b','29cf28c92e2f9327de1fd8f3772ff6eb','2015-02-02 11:24:17','2015-02-02 11:24:17','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0     \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Õà¢ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK\93\1eå¿H®\8eÝrË\8aÏÑ\9e\15\1cqi÷\11·9\18Â+sJG#Hq\9b\18\19ªIÃ\18±\88\90ZYs\19\9cYüça±\82G\8dÎ__\14\94¶=ï\1d\14\r»Jÿ\0,{.1äì\14¯\9eÝÃwd.ÿ\0æ\9f0p\88j|¹Zà\9dÁfx¬\84\fp£x¤)(¦\94\99\9d\93zëÈKx±×-í\0XÛ\r\8fM¢fbtEuæ\98¸2£\7föNÃï\e/4ì·#§ÖN®\nG5æ\9c\89̲OìÜ\86~A\8fdJ¯F¬A,\ 6\ 5úmSç\ 3Z3¥<óXã\1cì6GdÇ\1eà\93\18¤\a¬\14·T\9føÝ\11ßÉÂè[áäÉ\b¼\9aêÕ¸E)þR\9e\96\14L\\t_!\94\8cݠˤp\aøÚeùÑBøq_\9b+D\12VË_¯&\\xl~m\\xÒÊÚzì\84\91Å\91ɧ TÚ¹\v¤È\952t¸>&Æ\8ew´a\83-éU\ 2*\94Øn¢\85G\84\1f+Íîé\94ä/­aX¸|R\9eÕæÂë¡\fDu\96w\1e)\1d·RêtíÜ¥\99a-`\86±3Àôxã® \8d^¹@Ç\ 3\Z¨Ýèçp\16±v\98)\"öÝKíõ(G\b\91±#{<Ç4ÒÚ[N¿\1ey°ð\9a)\10\16¦Ë\8b   ò\9e³R»\91ÄÚL\ eÚ$íþ;\86V5Ú\9f礼\97ïF\Zj\93ðŽÛ\ 4/óìwóÑÜ\93ïµ5=\'×\86{¦1´S?SÕU\94P\9b_\aÿ\0\9b\10w?FÑT³ëZyã\1ceC5{\8d\ eû.ojSÇ}m¥kû?ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0P\10\0\ 1\ 3\ 2\ 2\ 4\ 4\f\12\b\a\0\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14#\a!$0\15 \"1234BCScd\10\16%ADQRTaqst\83\84\93\94³Ã@Ubru\81£ðEP\85¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04ÛîÙÆ1 U\17\943\13\9fØhÐX¹yô\rë¡\ 3kZ\92s4JµRîIèaÀ¿(!\b\12N>ñ³W@µ\8a±`NW\vÊnÌj\98|ì«ñcÈ;|Úü\e6\83swØ\11\ 5õY\84\9e/Dµ?\84ì.j/¬¹mú\11-ËiMäoC\v\9d[;xe\1eäÎÇá\9fW\88ícëÅNêw\856fÎÜKÏJº\96\92r­cºx\\âW¯»\1f\16äTÇ\88\0äôÇJFB\ e\80d,µËM¹I*Â-¹q¦ò´íÏ\1co6Xúr\97XcÜtræ\83L#\ 4;\98Põ_\\/P3I»_\85Ë/°Ã×Ü7Ã\ f_hÃ\1fÐ\9fO\'QS\ eUÐÈ\ 6äð²\8e\86\\¢\17\1f\ 1\1e\Z\15û¯\80;.<¦\9a<\92\92pg\92\ f\8eG/\1d¸V¹Ü8)3JRü\7fßµH«R\16\89SÉ#j¨Ë¦¸\184\16õã÷\\\\Al\n\10Õ§·É©\8b\97\14Ñ\85µ\0Þ\82fÕ5QÜ׺¤\9e\17\f×ï\vÅR\9dÇ­ë5¦KF¼\95½)èV´¦µ}Î\9d\ esÁrØ\ 1j^Ã--1µ1\91\1f\8djH¶û?ÐtKi§²°Ñ)¸,vËn®Úhy\82\80èù6¯@ã;ïM´Rí©NZ\11P¯!\1f§b\96f\8f\8e\86\ f\97láËo\87\9eek\88\95S\eV,zÃJº\8e\89Ëå<1~ãÐð\7f/Aýúð\14è\8dʵ³\8cR\93¼\14$yr\8b\95Çþ!(\"Ö¿\ 36ý#»~ã\8do\'\18øZ¥\ 1\91Ø\13\8e£3bÒ\99Àp\ fb¸oÊ\ezÚ\Z ºî!ß$\8f\1d\8f×íEóØþÐî\94ò\ e¸¨æ\9a4\99\86zhé&\ 6AÚ»n­B\ 5\7fÊ\9d«È×\8bF³5¢\ 34É[\rÀÌ}\88d\ 2\8ao\85O\11 \1eP×Úßµö7;Â\11É\\uny\16Éù8òlbþ\88\ 6\9aUJZ\90\9dòË¥½o\ 1\14Há¡ØGu=úÚ6\10\8aO§6iúYi\n\ 55\92´\96\89æ$Õêöpîe\85ò;     Jããf\ fBjÞª«²ÍÛäs\97Þí\91\ eBP\93ì\1d;çx@\ 2©TëÜo\1f\'\8bÁÉeH\8bþÞ\96àÉÚ×=\10\95~æÞ\1e\9aþ«\9c2=\'\\\99\9aßÁÞz\ f\8eÏ\ fm?YUÞfH\15£@\8fñ~Ë\9d\89¼\ 2>GrG!\9b¢%;´JDn·¿8bV\9f`}\Z»Gljå»\91þøKBÓHÙfª¢ÛJG4\91n¤ö\v\ 3¶Â8ÿ\0ؽ+È!\16\94\98¼\89Ð\96¡J·\88\8f\11\ 4iw?#\91\94Ãë Ó\nuô¬\8c¸ª\19û¥mä^\ 4\89Ô38ñ#Ô\86\ 4ÇÃd\94Î\1d|/6Z÷7;)o`\84I\8fÕ\b\'\nÃs.×7\'¯\8eéÆ%nçÍ\8d\8fÄò6@\ 5\89ÈÙãc\'PÍ\9c\b\99E\11t\r¸ä鬽\98¾\87\11\nVð°åßD¹ÃÅ\ 2\99Ñÿ\0\ 6Æ\1f|t\92s\92EÉc\10ÅÄ\8bÂ{\86í\a\9c_ÃÑõÇ,º¡$VDT~¾¸\"¢ÄBÕ£\10ñùZ\9dÑý\94èÇuëá¢xGº[PÑí\1djÚì\f\9dÃç\8d    ½\94t>:\18\r\8fÉÚ\ 3­WA?½©¥9é\ e\12íô¡¼¼S\\û\89¢S¨9Xö\9eÏùìx:þúj/7¦\8c.hÚ,Â\1f&\95a\9b¨\89(²×\95µ/\95íN\Z\9fØÎ\84\r\"g\18Õua1\1cÒQ\9dH\9dEìò\rDì9\83âãÉ-?¾?Fä 1FÜö\11\89ÕNËg,£B\97ðr?\9e\83\n8ÖU iú] -ö\94M\eCÅ0`-TöY-\84\"\97ãplÓ×åyÅ\10«B\ 4\84ë(\8a\12\8d\r\1f\f§\17\94¨«ªªD¨h\89\11<¬±·&ÿ\0NnëãÑ/bmË_\83û|ýP$n\16ÏÝ>(|cV\86>qúý¿¡­\9aèx[æþ\98\9adôyR-!#¡í¦\8eÇá\e\14\80néþF8îz% Éé\\®j%kr©\89\93\r\7f*-»{ \Z¶\12\0Ù¨Ð\0\0iÕ\18@\14PA\18Çâ¨.*z7t\ 3Af¾4vÝ\1c4öe\7f\12ä2M\e\ fç5i³ý6\81.\18\11¹Æ]ZøÁ\13\1d\"f\19\11%g)\1cÍûR\'¿\ 3¶Â0¿\17\9b{-,ì,#£ÀG/\1d8V \e\80CÍ)Kñh\9b\14\88m§o\12Â:%¦ºd®\"W¬æW\'\rÏ\87Ø;\99¢z§xÖ\98Ñ´ýÖ\16³×\8dR\87 IS\9d\13\ 2O\14Ð&§-xßõ\81þ§³wK\9e·O!~XQëzÉéHòvÝf<Çm\1e\13zíüP\ 5ÛÙ8®ýÓ\16ø¹jç>­1g\\\Z\83\83{ÕØØQ¹\16;jYê¨\0!\ 6\'\1c\97\88\eìvC¸ööO{iJҸҼи2\89sD²\8eÈ\7fr¨jî\87åßÇÆ\13\8f´Ç\83\9e¾.\8e\ eµ[h\vÖy¢kuÜ-\90Vh:w\90°\86íB\17\16éä\88ppëͲ\Z{ë\9a[\9b\8eÎ\8b\9dµøRXé\"ü´\84a\9a¸7Ö\1cWJ0¶§.ȶ\88\e.t³`l?\14Ñ­Ì      ¶íÃóvôÐ\92vMÁoÞ@\12u\95nÜp\8d£¤\94\8f5\90\8c<kw\86ùÇC)¥m~\10áÍaO\8cû\19\béDèV×â\9dç\81»\88SWÎv\86ÞwÇ¥\16\9aÒ©¯T\95\'¾é¤%\\W\ 6ѬÞ>p¯r\ 6\82)\8bøZ!ÔÒ*é\99¤ßÝ÷\ZUÕ\8dm\ 2ëkÙIä\1c¾+F\1f66\98R\94¥?g\9cãÑÍÅ\nÍ\ 2½¡\9b\10\8dH\84ê\12\87½\8bu\87n>\14õ$þùä½ÊçBðgpºY\1c°lG6Ã\87\nßlm+Êá\8bónèií6Ú\Zã\83fÝ7\bN\aZ¥iµe\ 4\95\'Î\9bd~n\97ÅÊ´o\fæ.\11©=ÈÂ#<v?ë4û.~(ѨÉk#uAʶ\18ú\84l\979D\19\11\vÈçº\90\a\ 3|1×´\'ðýñ01\7f+I\17\15§\e˾MTWº\18XD\aþsyþ\bëÇ\84\87¥4«WÍ.×\9f\93Ó\\¬°¢¶»~a®ª»ìæ\ 6\16\90ËÃ\r²NqÒ¿k\97\95\9fþ^\7f\80#×Â:\94Ocú ¡\92üÞ\99À«Mj\14\ 4\16¯ºÍ\1e\96\83J¦©ªE(U%^VvH¼ÿ\0\ 1ïkJr\17\97ç{ã­Ðå~\17O\r\19TU\15\89ÕW{Ê\8c_Íçì×øSÔÇ\13\8aûÜ9\83Óñsô­iLSØþ\95ÿÄ\0)\10\ 1\0\ 1\ 3\ 1\a\ 4\ 3\ 1\ 1\0\0\0\0\0\0\ 1\11\0!1A 0Qaq\81\91\10¡±ð@PÁáñÿÚ\0\b\ 1\ 1\0\ 1?!ý «\91\Z\ 5ËG(\80Må¨ô(MÇÆlxSS¶\ 1/\8eÞ\89ÎjÞ½[\7f©|¨ü\eË%g;        \11I\8a\91j\9a}¤e\0\90\10\84Z!\17ë`\81\18\81\16+p¡\12\ 4\17̬£\"ÒÐ~\r\92\17ÚY   àÙ\84\vN¦¦Y\95*c\84\14\b\90£\9c\16\89t$Â6¨\86\86öy@¥\8eW È\ 4i\ f\19\9c\90\90¦\13\9d¯¿¬Ã\99ݹA£$4Ì\90,3+:\rèF\94b4\11iÎÁ\'Ó]¯`\9dC\84¤ÂÖ}VB\"Vd°&`·W\8ad\8341\\¤\9acb\n£½1\ 5\eXmFd.\12 ×¸ÄZ&\8d\85¨\9dìÔ?Vò\86Oöë ù\ f\ZT¥?\98.®·4fë0L\e\ 5ñ\ 4¯\8b\8cLHo¯\13è¹.\97i\b\8f8Þô\9eR\90»\ 3þÓmåp¾Û]¯.\8b_ÏF\ 6&2[=ü7¼2\f\1d\ 2Ð8ê9\90¿µ\ 5p«¼!\v\9cÞÈG,ì\94U\0\13é\ 3\19\13®,R*   wB¯¹ YRjÍéNÔ\90\ e  °       \98XHQ1£¨Ê\9bÙ³tz]\1dn?)\96γ\83­\83>¼êí\"\9e\8a·\7f¹Äë,(\95\12)f\8fÅe\8b       Ô8\90¨\eÔS\95\82Ø#Æ\81\8e½\9c½ýû   %zdµ-dL¶Ï\82s\98¾rô~-\99Öõ²I<\93^BoYý«i¢#8\17Ém\0±»ë|Z\9d~>f\n\82\96»£\12\'p\8asbÕûÍáâ$R\bN\91¡{µª[À\10c´Ì\85¦\9eÑ×H\80wÅêÃúÑ\nð\ e\ 1b-:z\'M3¼\9e(óq¢\ f@     \83Ñ=«ü\19\96\v\ eïP­\1e±\ e\84¶Jy±«\92\17\84S^\94)\99\Z¼$#UlH1j6\83U:ÿ\0¯ \19&¯AE\98\ 6·\ 2\'¹Ã\ 4±\ 3vîý/\83.\\\11X`\rsÞ®Æ\92\9f#\9d\98\ eâ\1c*v)g^bæÔ\96#Éðì\fè\Z\8a\9f$3\16ý¹y9[\94\19?¹²©\b±Äâ\88õú\16\eXíÂ^W\8asÞÏ2\1c«Ø\0ßcð\e\ 3Ù¹\Z\"¸\92AÞI(Úë°\91 a\19E +FÏ6\9c9J¼ëT\biâï\93E\8d§\93ì#\90È\Z6P/³ÿ\0÷\97j\81Ù½ ÞÏ£~\7f×\84êl¢?º\88çâ¾/Õþ.ÿ\0¿ð(8\e<»­&\95®M\0?\Zïÿ\0Þå\17ï¦Øç\1cãn\7f\85Of.þWÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0â\0\0P\0\0\0\0\18\10\ 2$\0\0\0\0Î0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 3\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 3\ 5\ 1\0\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10\91¡@±ÑáðPÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5تf-:\13Â\ 3\ 6`\8a\"è\88\18\16#J\81Aw\81¨\ 5\ 2\84\10°2Z\Z!cX`åÚúü\1f¡­]\ 5+\eNC\\º    \8e8p\1cpÄòA¡\ 19¹±V\97÷Q\9ea-°\82¿^¥sÚúü\1f¡\95\9f(\86s¸È\ 6²TFâe\"\94\99/\ 5\r\ 6]ò¹^\1cõM®$gî~\'Ñ8\85\ 1\e\8a¾\9b\9dï|áÓÇÀ+\98\\\82§%ãzÁ)E        ´´\ 5-@ÔÆÀG${LñHSVÎ\13\9fÜÈüukò\"\94PQT \ 1ÏÑ\89\8cäú\84#- (|\13æCÐ\ 2÷qú\173a*ä\9dX¸`\80Á:$æNÝ\10\0\r¸\ 3\98Ï¥I*\17\ 5N\88u\14®1onç\ 3tnc\\\16\8f3T¥X<©\ 6¥+fSÑhä\bÀ<;¸RÁiB\92¡           ð÷øÒéßØ­Ç!t     \ 5\b=Dc\95d\\\ 6\0°­¨\"F\9f\14åv\8d\8cñc+ò \87Û\86n̺áïñ­û`C\17\82ª8Õ\ 4à\ e¥ î\ 4\ 4@\ 6ÿ\0* Ú.é\840\8a\7f¥\9dôÏ=â\ 4S\90\85 J@<\ 4\9b¢\13\94X\nL\b@²Zg\15\1fn=ôxÒ ±P[P¥Qê\1cÀO\84 ªîC=\\ês\12jCv \90\95\1cbÂU)E4Î\'³øþ~¢Û>Ìè\97w\80ÊìK¤ºD,¢HËr0\ah$u8\810\r\ 3 }Ù/«ýwÏV{¿\8fãA¬$¤\88Æcd\0:        \9bï+Q\100\13=\95\983ÀÙPàR}Kç\98¼e\ e\ 4ÈA@\80ô!w* &b9ç\ 5ßm/\84å\1c\111\"ÄÆ:\83\94ÑÂ\8b\Z\80\ 3L\1c\ 6A\8a\8d³,\11,\ 36\03º\82\9c\ 4q\ 3rhº-O3@ûÎ\18\13\87L\81\95Ë\"?«\80+\80\9a\n¡jâ»r\n\10\89õÛá\14\9b`=uY\0ëd»\v\18Êãq\1c*,ÎJJ\90±¸Ë\8aàC;¯HÔtZ}!\ 2È3-\1dhÝBù\ 4¡\87¨:`f\ 4B!·($mQ\1f\82{^\'?Ûâø¾4SÝÑÊÇ\n)ÝDí\86c¨\'\84`c- #Éÿ\0lys\9dî:#¼¡aª\81¹T1=\15\ 6Ô\vo8§Ñ_%ªA\94g¨¤Ò\ 3\fÌ9ɯ¶\10n\94\nê¡0ÿ\0\ 6fø\"\n\1343h{a4DkA\ 6\v# @ý\88LKmpµY\99·\88Ñ&%\ fMÌ~ûö08\82J)U.dz\80\ 6Ø,L3¿&<÷~ýLxóaøÞíßíä¬0òG!\ 5\ 4/V\9cú;Æã\83Rl\17ÍóáÌJ\16Ep娲L3\9d\11cÏ\n9\98\13\90\9dm¿_\97B\99-ªõ\91<6\90k\7f×äð°­S2\83w0\84î\ et\8c­É\1d\11ç\18íYpë\ 2\82Û\f£Ü«\8eìÅ\9bþ¿\'\84è\94I\e×2NÇuç ·\9e¹ß\8b\8cÔíöÏ[ÏRVV\8a«Ø\e9\9bëð¼;wÎ\e#¶à¤\99\8dí«Wb\8d\1e\9bl1=Ñ:ò§¥ËÕ\18\8a8\9c\0ñné8ý\9c\'Î\9a\1c(ãæ)\84o\13®W\8cÓ½Æ÷É\8b«Ç\8c\ eø\9dÿ\0\9bó¶Ø:è©\912¤á¾Äól\7fUÿÙ',4,1,'','','',''),(2,1,0,'19754cf5e616d58b','29cf28c92e2f9327de1fd8f3772ff6eb','2015-02-02 11:24:17','2015-02-02 11:24:17','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà0Ùæ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8c\1cî`Í\0\8dw\ 4§1Ö¦4i\14H\85\ 2A\89\1e\rÄ®öÅ»-W\10\1d÷\84°\93zR\99\93ìm%Øåhô$¶\\Ì\ 1æÑÄÏ×   \"¼6\85ô¸\1c«\17ò¹.\a\8cø>ò¬g¹\ 3\8e\94öË¥=üÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\09\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 2\v\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa$\91%0CRqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þµºSI¦¦[U\0Dݳc\931Ø> ò\ 5±k!\9by\1e\13\aá¹\8a«A\ 1X\93-ëö\rY¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ    ÆÔ±\92°¥ÿ\0m\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɽö\a1\93±\95Ô\16äç¬t\93,¿\93d³Ô[k\89 \19ù]`\vµzT«ª­J¨MjÕ\90\10´¡\b\bZ\92 \1d\84\16°\18\0\18ò\81\88\8eÍÃe\99z¬ñaS¿\8f¶êÖiY\91ø\1d\ 2\f\14Ù\b\9f\9e½\90b\98>[     lcwMä2·2\98üFB+ä°¶ì¾Æ7%\8e>\fUÌpÙ#ð-³Q\81\84tÈH\85vE\90&®ØÌÕ\ 3êQËQ«\91¦ÏI*×\12\16\133\1fIàÈÞ>\93¼{º÷\1dTHì;Mä\18\95\87Ìè¿\19\v\18\8fYgC\84G×~Ù\bw\1e¬é\1c\9f\86ß×\97\8fÅK8þý.^\9f\97\7fiס\10ËHÀàéÝ\15G#+Åâ\1cµÌ\ eó-ð\96)\8eÞs·\11ý»hÌ\1dø!»\8cÓ\98ºÖÀ½W`j®\\¯úY$¯øû¤\ 5\10BQÄ\84£q\91\9f)\89\8f¬LzÇ׶\1fZãë1ú3!\93°ê½\r¾\Z7\84×\97À\9eó\11\16©×q¶\87Rx=aY\9cù.À®\86_\15d.c²U\11v\95¥ü\8f¯`!\8a8ßi\8dÆ|Ä¢\bKq(\82\89\88Ôú \17\ ev\17\ fnåe\1eü\19lC\85@fÛOH¬\9a¡»L~\1f/>Ú\83½MdE\98µ\8dË\ 4Òñ{\18ØÔ/Úëò\ e\r¸OÙê*þ\11;tA\8f\12\ 1\1f\n¨\8frþ Ô\17\17C\15\8eOZÃÏÖ|ø­)\bø\9d\91R\12\11\10\88Ç\9fo¶qÏ>ì{¹a\97ÙÖWR­Íc¨«\89LuÔË˱C\15Q\91\1f\ 5\85UaAy ®/ñ\86­MGIº¸*\115GªîZÏL<Ç\81Ø\15^k*%¤;\8fðÕ\9003\"\"#åÚ½\n\15\91N\95D\85zµ*¨\11\15\1cV\94©q\0µ\80ÆÂ#\11\11\1d³ºfé\12ëg1w1ÆÑ\8eD\89²¢\ 5Ø\ 1\9f\":íàà\89ò\92\b\89òí¨{§ï\ 1q\84·\93Ê\ eSMdìî¬Nm\9d\15Ózhßg\146l)5]P7\16IËë4Wj\ 5\13îh¾ê\18Lû¯\82Ç}ôÕª\ 2!\e\7f\8aÅU¨Þ3\13æ\10\84\fÆÒ!\95s#â\\lªÕÔ  B\16      JT0µ©K\18\15­`1\ 2\0\ 3\10\"\ 3\10\"1\11\11´{\9e\1f!R­Úó12\8buÓe31é2§\ 1\84Ì\7f\87i\1c\9e\94Ê!\7fÑùm5qØÆVdGáõéWbèd«DíÔ«z»Va\1cFU;\18êNîõØ£ïÆ\8b$˯V_F¶¢ÂÙÛÁfë¦\"\ 5dpJñ@\ 2\0%a;\0\1c±Jöw\95\94(ÞKFè¥(§ò®É^\ 6\0ÏèG\89\12\9fÜ}úÙ5\ f\bµÝ\ 5вQåÕe}YAkçúÈ­\83\11¿ÐcÛ©²»mãôÞ\90«¿êToêò8ßoîÚO×Óo~¦c\8fɤ28Þ_êfqv`\7fò\99öÉí\1c¦ f~³\ 3¾Ñ¿íȶÿ\04þ¾ÿ\0ShåÆG\97×\8cÌLÇó\88þ^ÏÿÄ\0\1f\10\ 1\ 1\0\ 3\0\ 2\ 2\ 3\0\0\0\0\0\0\0\0\ 1\11\0!1 A\10aQq\91ÿÚ\0\b\ 1\ 1\0\ 1?!ð§äþå<Öw\ZÛ*íEWUÀeèý    )7×´\9ceÎu\ f\n»v_#\18Þ\11^oÉÑõÏ4\1e\88»\'\Zà\1es\fÐm\98æ\17¥\817\98\Z ¡\f\bò\ fÔ,\11»\81\8fP\ 4ãe\83\\\ 4\ 6\9f»0\ 1#.\9bf>\8f\10\8aÜ.ú©\ 2©÷\9a\b\ 6\8a\95­êOQê8c\97>\87¦[\fÂTF\8cu\18\7fDú>.\86@\ 2×i\ 4M\ 6:Å)ÃNtê4º²«ráYY¢y|ÿ\0{«çHoaÀ$\ 6f\93Ã\ 2`\8d\ 5Û/ !<\1fhë¨\8a\15 ï&#è[5\ f¢ÕÄ\99ío\12\8e\ eh]ι(Zåè³av\00g\85µ\11\ 2%Bb\9cÒ\85B\98+\'ò\81T       iýùs\9e\a|hvJ\16\9bò\12<M\85\11\80ðQJ\1e{ea\8beÉwÄïÒÙÛC\e\81wEìi\95è\8fÁóÇõ\96<k*\82\a0\9d³Æyia\83Ö(\83J\14!£G3qÎ\v\ 5:öô\'°Ó\93̨¯C\n\'ªÅõ~`B\86KMºFÃÖ\9e¼õt¡\8d\ 4/áCö>?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 1\1cp\0\b£B$\0    8@\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\ 1\0\ 2\ 1\ 4\ 2\ 3\ 1\0\0\0\0\0\0\0\ 1\11\0!1 AQa\10\81q\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ùPå\ fË3¿«M\8e\16\ f\1e]`\9c#x\88ß×X\ 5P?ß\95ôo\nõ¬.;\vÒWç\a\1ddiù{i\96HN}\ e9¬&\14 \9e \80\85V@÷³\\ÄdÁ\e;3ï§Î\90\10·(\ 5\ 5\8b©x\vNéiTÜ@ÞÔãJ\9e|\10`¬+K%¯9\9c®-\8fR\98\8c\8a\98²@Å01ô÷µÌ\15®\94å\8e3\98F´9\17        £6/B\18à½ò9a\ 4á    ø\9aòb\82ø\17|hï\96e2Æ\fe£]7­À½ûÀ\ 6\1cbEè|\89\89E\18q+\ 6¤ÃY§FéG\15\99\83K5;\8e\aró±ÌÑö@à\n¢\ 5\14¬\8f^\v:i=\97î±È\0:\ f\Z\ fç×BaDë\v¨B8X\17·FÝO\80ítâ\81dV\95\9dr\96ºÏ\'8\97\811\91²Ïª\90\bõ´Ò\a\86\8bÉï?\bßÏ!e\89àÝ\8dì\9a{e\1e\11û>\14\17À¿¢á\85#lm\ 1\88Î8§\ 3\"ÖL\91Î[\7f:\86¸0i\80\9f¢%qjx¼Ñ  _\1eB\82\1fDUâ\11\88\0\84\Z\ f\9c÷\r¶sÃǼyXN3Ä$º­\9dQ)2Z+Xjºp\9c`Lp}ÿ\0\\\b\ZÑ\ 1yÓ®u\8fÀ_Q9\ 4\19(   uº\93°\ 1\81v\a\9c\8ep\0-:\8fõª\94h\ 6½TBª½8\81ø\82\88¥øÿÙ',5,1,'','','',''),(3,1,0,'19754cf5e616d58b','29cf28c92e2f9327de1fd8f3772ff6eb','2015-02-02 11:24:17','2015-02-02 11:24:17','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a  \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\8d÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2lk3®\90!b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!#\a\10\"1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤Þ\84á´Æ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\bçô7¶u\84ï\8fÎ\16æGëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&·XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨Ow@8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]XUÆ¥«bêÙ\nÁ2J^B\93Jµ®\8c\97ÅÑa\87Y0S$+`\81\11HÉO»Pé\9a»~Ðr\ 2î/|í   ÉcÎ-TQ\17Ð6\r}±\1fÑ\ e\92\9f\97\14\91*\9a\87C¶Æ\9cÎã\1c=;\15\e\89¨f©ø [[hîåË®\9b\ 1\1f\83\8cG³L2:Ùÿ\0iÙ\14á+\19Ï$Ô¦«t\8eÛ\99>g\9b\8f\ 3;Tv\eø\96\10X]%Q½ÏÙÈ\92µk\96Þîý\92\97ݱ\ 3ô\ 3,\19ô\82fd\15°ffc\9f»\'\9cÉ·£C\13FÅûlùÌ&²É\87¶>£-»@~ds\ 3\1f>\11¬µ­ËØúy(\e\9a\7fDcí6\8d,v-Þ¥\'g\99XÂÎ[-a\12·XCÝ\14*ÉJb\9eýÛl3\e\8c£A\97\ f«q\95+%\f¶ØçêYbÀMçñ\17ÆÙ\"ø§Ï\99ãLæñ\17Q\8dÕZ/.\19\8c\r«`l¢ùÞ©³\8eÈ\ 2½nÖؤ#ª\9fU$0b\'\12a5r\Z£\eg\1fRaa\93ÈÒ\98Éã1M-¡Ô¶Ål¼º\eçøòÇÂ\10¿RìÕ\ esÂÜ\93\ 6) ,[\0 \80Àãp\98\10ó\82\12\19\89\82\8f\1c¼Ç\19\\`ó\98½oO×hÇ×]\9a\93\11\16\97\95º _´§\9f\ 2\ 3\10\"\"\"#\11Ê\"\"9DD\7fH\8f\97¾Í+J\a\87\96\f\185\ fY)«1\9f\ 4&\ 4BQ>&\'\8d-JÉ\99\9e7´æs2]:ÏrP\133çÓ@,#ô\18âk·ÈI¥\9fä\87-áþë\1fºªªðµDÀÿ\0s#ÿ\0¥ÇÿÄ\0#\10\ 1\0\ 2\ 2\ 1\ 3\ 4\ 3\0\0\0\0\0\0\0\0\ 1\0\11!1ðA\81áQa¡Ñ\10qÁÿÚ\0\b\ 1\ 1\0\ 1?!\98ëß=åH¾kzí\v\10¢LËLâYã2Ð\9aÄ\879\89ç\9dúN\9cçö_àÏ3Èb~\1dÆÊBã¦ÊööM 5ÂþfBøbD\89ÈÒ\1c¢\1co\ 6>9Îó¤B\ e}\rÏ\v\11`¢\"0p\ 1IAͦH9 Ë\0f¡T\7fA\89\ 4×fÝ\97õi$\17\nñÎn\ 2\86¡È(v±\10Ñ\7fO\83Vèãq\1eã¥a\84\8dz5¹X\e\r\8fFD1_8\19\82Ô7{\82è\80\14]óÕ%cTÄn\vÙ/p°Ý\a¤\96.\b³\ 4<3\0\0\Z\ f\9e}üATö¨\9fJĤ#p\90\"\98±\n²[\8e\92\16¶q¼\9dÙÞÕ\ e\9f\9a\9c×9¸éýzCR\8aUPÇÉ?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ²ñ{\96\8a_\v$\1dÔÇL¸YÐ\98mº2g\1e#\8dG+}í\9b×ïò>=Ôp\9c.¿Ý\1d{*Ð=çë#\b\"ÚT\1eÁ§Z\ 3³Qô\rÎ;G¿ \17\'ÝÍÚU¤\96é\15¸¯ß\81¼úó¼S\85±ÃÆô<<_t¯\90L\8d\"4uHÅ0B\8cÌ\9fS¢Exêi\89P\88Ä.Z<\ 6Lzÿ\0c}CÎøèðõÝÍvÇ4»A\86\15§ËÒ8©\81Â.[¸Øãj3ÝÖ\aÐÅèÿ\0B^ÿ\0³\'¤ ¹\82À2;·af±\98ó(\82·Ø g´\r\v\8cbBr駲ä)cÃWÂ\83ª\ 2\ 1\12¿\9a\rÚyg\11i»f½qÃ\9bøéyáS\8fì& £¨Þ\ 5\15Z;º\8b#Pl\b,í`0dÙ´sp¹B\ 1kA\93\8e\96|}ñF­£÷¾ûäÅëç³ù µÔ$\ 3(0øN³7Å\ e|\17Ï PÁã.kÿÙ',6,1,'','','',''),(4,2,0,'14654cf674381248','ca76a172375b6d5a37bf290a402534ea','2015-02-02 12:02:11','2015-02-02 12:02:11','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0       \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Õà¢ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK\93\1eå¿H®\8eÝrË\8aÏÑ\9e\15\1cqi÷\11·9\18Â+sJG#Hq\9b\18\19ªIÃ\18±\88\90ZYs\19\9cYüça±\82G\8dÎ__\14\94¶=ï\1d\14\r»Jÿ\0,{.1äì\14¯\9eÝÃwd.ÿ\0æ\9f0p\88j|¹Zà\9dÁfx¬\84\fp£x¤)(¦\94\99\9d\93zëÈKx±×-í\0XÛ\r\8fM¢fbtEuæ\98¸2£\7föNÃï\e/4ì·#§ÖN®\nG5æ\9c\89̲OìÜ\86~A\8fdJ¯F¬A,\ 6\ 5úmSç\ 3Z3¥<óXã\1cì6GdÇ\1eà\93\18¤\a¬\14·T\9føÝ\11ßÉÂè[áäÉ\b¼\9aêÕ¸E)þR\9e\96\14L\\t_!\94\8cݠˤp\aøÚeùÑBøq_\9b+D\12VË_¯&\\xl~m\\xÒÊÚzì\84\91Å\91ɧ TÚ¹\v¤È\952t¸>&Æ\8ew´a\83-éU\ 2*\94Øn¢\85G\84\1f+Íîé\94ä/­aX¸|R\9eÕæÂë¡\fDu\96w\1e)\1d·RêtíÜ¥\99a-`\86±3Àôxã® \8d^¹@Ç\ 3\Z¨Ýèçp\16±v\98)\"öÝKíõ(G\b\91±#{<Ç4ÒÚ[N¿\1ey°ð\9a)\10\16¦Ë\8b   ò\9e³R»\91ÄÚL\ eÚ$íþ;\86V5Ú\9f礼\97ïF\Zj\93ðŽÛ\ 4/óìwóÑÜ\93ïµ5=\'×\86{¦1´S?SÕU\94P\9b_\aÿ\0\9b\10w?FÑT³ëZyã\1ceC5{\8d\ eû.ojSÇ}m¥kû?ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0P\10\0\ 1\ 3\ 2\ 2\ 4\ 4\f\12\b\a\0\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14#\a!$0\15 \"1234BCScd\10\16%ADQRTaqst\83\84\93\94³Ã@Ubru\81£ðEP\85¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04ÛîÙÆ1 U\17\943\13\9fØhÐX¹yô\rë¡\ 3kZ\92s4JµRîIèaÀ¿(!\b\12N>ñ³W@µ\8a±`NW\vÊnÌj\98|ì«ñcÈ;|Úü\e6\83swØ\11\ 5õY\84\9e/Dµ?\84ì.j/¬¹mú\11-ËiMäoC\v\9d[;xe\1eäÎÇá\9fW\88ícëÅNêw\856fÎÜKÏJº\96\92r­cºx\\âW¯»\1f\16äTÇ\88\0äôÇJFB\ e\80d,µËM¹I*Â-¹q¦ò´íÏ\1co6Xúr\97XcÜtræ\83L#\ 4;\98Põ_\\/P3I»_\85Ë/°Ã×Ü7Ã\ f_hÃ\1fÐ\9fO\'QS\ eUÐÈ\ 6äð²\8e\86\\¢\17\1f\ 1\1e\Z\15û¯\80;.<¦\9a<\92\92pg\92\ f\8eG/\1d¸V¹Ü8)3JRü\7fßµH«R\16\89SÉ#j¨Ë¦¸\184\16õã÷\\\\Al\n\10Õ§·É©\8b\97\14Ñ\85µ\0Þ\82fÕ5QÜ׺¤\9e\17\f×ï\vÅR\9dÇ­ë5¦KF¼\95½)èV´¦µ}Î\9d\ esÁrØ\ 1j^Ã--1µ1\91\1f\8djH¶û?ÐtKi§²°Ñ)¸,vËn®Úhy\82\80èù6¯@ã;ïM´Rí©NZ\11P¯!\1f§b\96f\8f\8e\86\ f\97láËo\87\9eek\88\95S\eV,zÃJº\8e\89Ëå<1~ãÐð\7f/Aýúð\14è\8dʵ³\8cR\93¼\14$yr\8b\95Çþ!(\"Ö¿\ 36ý#»~ã\8do\'\18øZ¥\ 1\91Ø\13\8e£3bÒ\99Àp\ fb¸oÊ\ezÚ\Z ºî!ß$\8f\1d\8f×íEóØþÐî\94ò\ e¸¨æ\9a4\99\86zhé&\ 6AÚ»n­B\ 5\7fÊ\9d«È×\8bF³5¢\ 34É[\rÀÌ}\88d\ 2\8ao\85O\11 \1eP×Úßµö7;Â\11É\\uny\16Éù8òlbþ\88\ 6\9aUJZ\90\9dòË¥½o\ 1\14Há¡ØGu=úÚ6\10\8aO§6iúYi\n\ 55\92´\96\89æ$Õêöpîe\85ò;     Jããf\ fBjÞª«²ÍÛäs\97Þí\91\ eBP\93ì\1d;çx@\ 2©TëÜo\1f\'\8bÁÉeH\8bþÞ\96àÉÚ×=\10\95~æÞ\1e\9aþ«\9c2=\'\\\99\9aßÁÞz\ f\8eÏ\ fm?YUÞfH\15£@\8fñ~Ë\9d\89¼\ 2>GrG!\9b¢%;´JDn·¿8bV\9f`}\Z»Gljå»\91þøKBÓHÙfª¢ÛJG4\91n¤ö\v\ 3¶Â8ÿ\0ؽ+È!\16\94\98¼\89Ð\96¡J·\88\8f\11\ 4iw?#\91\94Ãë Ó\nuô¬\8c¸ª\19û¥mä^\ 4\89Ô38ñ#Ô\86\ 4ÇÃd\94Î\1d|/6Z÷7;)o`\84I\8fÕ\b\'\nÃs.×7\'¯\8eéÆ%nçÍ\8d\8fÄò6@\ 5\89ÈÙãc\'PÍ\9c\b\99E\11t\r¸ä鬽\98¾\87\11\nVð°åßD¹ÃÅ\ 2\99Ñÿ\0\ 6Æ\1f|t\92s\92EÉc\10ÅÄ\8bÂ{\86í\a\9c_ÃÑõÇ,º¡$VDT~¾¸\"¢ÄBÕ£\10ñùZ\9dÑý\94èÇuëá¢xGº[PÑí\1djÚì\f\9dÃç\8d    ½\94t>:\18\r\8fÉÚ\ 3­WA?½©¥9é\ e\12íô¡¼¼S\\û\89¢S¨9Xö\9eÏùìx:þúj/7¦\8c.hÚ,Â\1f&\95a\9b¨\89(²×\95µ/\95íN\Z\9fØÎ\84\r\"g\18Õua1\1cÒQ\9dH\9dEìò\rDì9\83âãÉ-?¾?Fä 1FÜö\11\89ÕNËg,£B\97ðr?\9e\83\n8ÖU iú] -ö\94M\eCÅ0`-TöY-\84\"\97ãplÓ×åyÅ\10«B\ 4\84ë(\8a\12\8d\r\1f\f§\17\94¨«ªªD¨h\89\11<¬±·&ÿ\0NnëãÑ/bmË_\83û|ýP$n\16ÏÝ>(|cV\86>qúý¿¡­\9aèx[æþ\98\9adôyR-!#¡í¦\8eÇá\e\14\80néþF8îz% Éé\\®j%kr©\89\93\r\7f*-»{ \Z¶\12\0Ù¨Ð\0\0iÕ\18@\14PA\18Çâ¨.*z7t\ 3Af¾4vÝ\1c4öe\7f\12ä2M\e\ fç5i³ý6\81.\18\11¹Æ]ZøÁ\13\1d\"f\19\11%g)\1cÍûR\'¿\ 3¶Â0¿\17\9b{-,ì,#£ÀG/\1d8V \e\80CÍ)Kñh\9b\14\88m§o\12Â:%¦ºd®\"W¬æW\'\rÏ\87Ø;\99¢z§xÖ\98Ñ´ýÖ\16³×\8dR\87 IS\9d\13\ 2O\14Ð&§-xßõ\81þ§³wK\9e·O!~XQëzÉéHòvÝf<Çm\1e\13zíüP\ 5ÛÙ8®ýÓ\16ø¹jç>­1g\\\Z\83\83{ÕØØQ¹\16;jYê¨\0!\ 6\'\1c\97\88\eìvC¸ööO{iJҸҼи2\89sD²\8eÈ\7fr¨jî\87åßÇÆ\13\8f´Ç\83\9e¾.\8e\ eµ[h\vÖy¢kuÜ-\90Vh:w\90°\86íB\17\16éä\88ppëͲ\Z{ë\9a[\9b\8eÎ\8b\9dµøRXé\"ü´\84a\9a¸7Ö\1cWJ0¶§.ȶ\88\e.t³`l?\14Ñ­Ì      ¶íÃóvôÐ\92vMÁoÞ@\12u\95nÜp\8d£¤\94\8f5\90\8c<kw\86ùÇC)¥m~\10áÍaO\8cû\19\béDèV×â\9dç\81»\88SWÎv\86ÞwÇ¥\16\9aÒ©¯T\95\'¾é¤%\\W\ 6ѬÞ>p¯r\ 6\82)\8bøZ!ÔÒ*é\99¤ßÝ÷\ZUÕ\8dm\ 2ëkÙIä\1c¾+F\1f66\98R\94¥?g\9cãÑÍÅ\nÍ\ 2½¡\9b\10\8dH\84ê\12\87½\8bu\87n>\14õ$þùä½ÊçBðgpºY\1c°lG6Ã\87\nßlm+Êá\8bónèií6Ú\Zã\83fÝ7\bN\aZ¥iµe\ 4\95\'Î\9bd~n\97ÅÊ´o\fæ.\11©=ÈÂ#<v?ë4û.~(ѨÉk#uAʶ\18ú\84l\979D\19\11\vÈçº\90\a\ 3|1×´\'ðýñ01\7f+I\17\15§\e˾MTWº\18XD\aþsyþ\bëÇ\84\87¥4«WÍ.×\9f\93Ó\\¬°¢¶»~a®ª»ìæ\ 6\16\90ËÃ\r²NqÒ¿k\97\95\9fþ^\7f\80#×Â:\94Ocú ¡\92üÞ\99À«Mj\14\ 4\16¯ºÍ\1e\96\83J¦©ªE(U%^VvH¼ÿ\0\ 1ïkJr\17\97ç{ã­Ðå~\17O\r\19TU\15\89ÕW{Ê\8c_Íçì×øSÔÇ\13\8aûÜ9\83Óñsô­iLSØþ\95ÿÄ\0)\10\ 1\0\ 1\ 3\ 1\a\ 4\ 3\ 1\ 1\0\0\0\0\0\0\ 1\11\0!1A 0Qaq\81\91\10¡±ð@PÁáñÿÚ\0\b\ 1\ 1\0\ 1?!ý «\91\Z\ 5ËG(\80Må¨ô(MÇÆlxSS¶\ 1/\8eÞ\89ÎjÞ½[\7f©|¨ü\eË%g;        \11I\8a\91j\9a}¤e\0\90\10\84Z!\17ë`\81\18\81\16+p¡\12\ 4\17̬£\"ÒÐ~\r\92\17ÚY   àÙ\84\vN¦¦Y\95*c\84\14\b\90£\9c\16\89t$Â6¨\86\86öy@¥\8eW È\ 4i\ f\19\9c\90\90¦\13\9d¯¿¬Ã\99ݹA£$4Ì\90,3+:\rèF\94b4\11iÎÁ\'Ó]¯`\9dC\84¤ÂÖ}VB\"Vd°&`·W\8ad\8341\\¤\9acb\n£½1\ 5\eXmFd.\12 ×¸ÄZ&\8d\85¨\9dìÔ?Vò\86Oöë ù\ f\ZT¥?\98.®·4fë0L\e\ 5ñ\ 4¯\8b\8cLHo¯\13è¹.\97i\b\8f8Þô\9eR\90»\ 3þÓmåp¾Û]¯.\8b_ÏF\ 6&2[=ü7¼2\f\1d\ 2Ð8ê9\90¿µ\ 5p«¼!\v\9cÞÈG,ì\94U\0\13é\ 3\19\13®,R*   wB¯¹ YRjÍéNÔ\90\ e  °       \98XHQ1£¨Ê\9bÙ³tz]\1dn?)\96γ\83­\83>¼êí\"\9e\8a·\7f¹Äë,(\95\12)f\8fÅe\8b       Ô8\90¨\eÔS\95\82Ø#Æ\81\8e½\9c½ýû   %zdµ-dL¶Ï\82s\98¾rô~-\99Öõ²I<\93^BoYý«i¢#8\17Ém\0±»ë|Z\9d~>f\n\82\96»£\12\'p\8asbÕûÍáâ$R\bN\91¡{µª[À\10c´Ì\85¦\9eÑ×H\80wÅêÃúÑ\nð\ e\ 1b-:z\'M3¼\9e(óq¢\ f@     \83Ñ=«ü\19\96\v\ eïP­\1e±\ e\84¶Jy±«\92\17\84S^\94)\99\Z¼$#UlH1j6\83U:ÿ\0¯ \19&¯AE\98\ 6·\ 2\'¹Ã\ 4±\ 3vîý/\83.\\\11X`\rsÞ®Æ\92\9f#\9d\98\ eâ\1c*v)g^bæÔ\96#Éðì\fè\Z\8a\9f$3\16ý¹y9[\94\19?¹²©\b±Äâ\88õú\16\eXíÂ^W\8asÞÏ2\1c«Ø\0ßcð\e\ 3Ù¹\Z\"¸\92AÞI(Úë°\91 a\19E +FÏ6\9c9J¼ëT\biâï\93E\8d§\93ì#\90È\Z6P/³ÿ\0÷\97j\81Ù½ ÞÏ£~\7f×\84êl¢?º\88çâ¾/Õþ.ÿ\0¿ð(8\e<»­&\95®M\0?\Zïÿ\0Þå\17ï¦Øç\1cãn\7f\85Of.þWÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0â\0\0P\0\0\0\0\18\10\ 2$\0\0\0\0Î0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 3\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 3\ 5\ 1\0\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10\91¡@±ÑáðPÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5تf-:\13Â\ 3\ 6`\8a\"è\88\18\16#J\81Aw\81¨\ 5\ 2\84\10°2Z\Z!cX`åÚúü\1f¡­]\ 5+\eNC\\º    \8e8p\1cpÄòA¡\ 19¹±V\97÷Q\9ea-°\82¿^¥sÚúü\1f¡\95\9f(\86s¸È\ 6²TFâe\"\94\99/\ 5\r\ 6]ò¹^\1cõM®$gî~\'Ñ8\85\ 1\e\8a¾\9b\9dï|áÓÇÀ+\98\\\82§%ãzÁ)E        ´´\ 5-@ÔÆÀG${LñHSVÎ\13\9fÜÈüukò\"\94PQT \ 1ÏÑ\89\8cäú\84#- (|\13æCÐ\ 2÷qú\173a*ä\9dX¸`\80Á:$æNÝ\10\0\r¸\ 3\98Ï¥I*\17\ 5N\88u\14®1onç\ 3tnc\\\16\8f3T¥X<©\ 6¥+fSÑhä\bÀ<;¸RÁiB\92¡           ð÷øÒéßØ­Ç!t     \ 5\b=Dc\95d\\\ 6\0°­¨\"F\9f\14åv\8d\8cñc+ò \87Û\86n̺áïñ­û`C\17\82ª8Õ\ 4à\ e¥ î\ 4\ 4@\ 6ÿ\0* Ú.é\840\8a\7f¥\9dôÏ=â\ 4S\90\85 J@<\ 4\9b¢\13\94X\nL\b@²Zg\15\1fn=ôxÒ ±P[P¥Qê\1cÀO\84 ªîC=\\ês\12jCv \90\95\1cbÂU)E4Î\'³øþ~¢Û>Ìè\97w\80ÊìK¤ºD,¢HËr0\ah$u8\810\r\ 3 }Ù/«ýwÏV{¿\8fãA¬$¤\88Æcd\0:        \9bï+Q\100\13=\95\983ÀÙPàR}Kç\98¼e\ e\ 4ÈA@\80ô!w* &b9ç\ 5ßm/\84å\1c\111\"ÄÆ:\83\94ÑÂ\8b\Z\80\ 3L\1c\ 6A\8a\8d³,\11,\ 36\03º\82\9c\ 4q\ 3rhº-O3@ûÎ\18\13\87L\81\95Ë\"?«\80+\80\9a\n¡jâ»r\n\10\89õÛá\14\9b`=uY\0ëd»\v\18Êãq\1c*,ÎJJ\90±¸Ë\8aàC;¯HÔtZ}!\ 2È3-\1dhÝBù\ 4¡\87¨:`f\ 4B!·($mQ\1f\82{^\'?Ûâø¾4SÝÑÊÇ\n)ÝDí\86c¨\'\84`c- #Éÿ\0lys\9dî:#¼¡aª\81¹T1=\15\ 6Ô\vo8§Ñ_%ªA\94g¨¤Ò\ 3\fÌ9ɯ¶\10n\94\nê¡0ÿ\0\ 6fø\"\n\1343h{a4DkA\ 6\v# @ý\88LKmpµY\99·\88Ñ&%\ fMÌ~ûö08\82J)U.dz\80\ 6Ø,L3¿&<÷~ýLxóaøÞíßíä¬0òG!\ 5\ 4/V\9cú;Æã\83Rl\17ÍóáÌJ\16Ep娲L3\9d\11cÏ\n9\98\13\90\9dm¿_\97B\99-ªõ\91<6\90k\7f×äð°­S2\83w0\84î\ et\8c­É\1d\11ç\18íYpë\ 2\82Û\f£Ü«\8eìÅ\9bþ¿\'\84è\94I\e×2NÇuç ·\9e¹ß\8b\8cÔíöÏ[ÏRVV\8a«Ø\e9\9bëð¼;wÎ\e#¶à¤\99\8dí«Wb\8d\1e\9bl1=Ñ:ò§¥ËÕ\18\8a8\9c\0ñné8ý\9c\'Î\9a\1c(ãæ)\84o\13®W\8cÓ½Æ÷É\8b«Ç\8c\ eø\9dÿ\0\9bó¶Ø:è©\912¤á¾Äól\7fUÿÙ',4,1,'','','',''),(5,2,0,'14654cf674381248','ca76a172375b6d5a37bf290a402534ea','2015-02-02 12:02:11','2015-02-02 12:02:11','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà0Ùæ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8c\1cî`Í\0\8dw\ 4§1Ö¦4i\14H\85\ 2A\89\1e\rÄ®öÅ»-W\10\1d÷\84°\93zR\99\93ìm%Øåhô$¶\\Ì\ 1æÑÄÏ×   \"¼6\85ô¸\1c«\17ò¹.\a\8cø>ò¬g¹\ 3\8e\94öË¥=üÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\09\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 2\v\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa$\91%0CRqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þµºSI¦¦[U\0Dݳc\931Ø> ò\ 5±k!\9by\1e\13\aá¹\8a«A\ 1X\93-ëö\rY¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ    ÆÔ±\92°¥ÿ\0m\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɽö\a1\93±\95Ô\16äç¬t\93,¿\93d³Ô[k\89 \19ù]`\vµzT«ª­J¨MjÕ\90\10´¡\b\bZ\92 \1d\84\16°\18\0\18ò\81\88\8eÍÃe\99z¬ñaS¿\8f¶êÖiY\91ø\1d\ 2\f\14Ù\b\9f\9e½\90b\98>[     lcwMä2·2\98üFB+ä°¶ì¾Æ7%\8e>\fUÌpÙ#ð-³Q\81\84tÈH\85vE\90&®ØÌÕ\ 3êQËQ«\91¦ÏI*×\12\16\133\1fIàÈÞ>\93¼{º÷\1dTHì;Mä\18\95\87Ìè¿\19\v\18\8fYgC\84G×~Ù\bw\1e¬é\1c\9f\86ß×\97\8fÅK8þý.^\9f\97\7fiס\10ËHÀàéÝ\15G#+Åâ\1cµÌ\ eó-ð\96)\8eÞs·\11ý»hÌ\1dø!»\8cÓ\98ºÖÀ½W`j®\\¯úY$¯øû¤\ 5\10BQÄ\84£q\91\9f)\89\8f¬LzÇ׶\1fZãë1ú3!\93°ê½\r¾\Z7\84×\97À\9eó\11\16©×q¶\87Rx=aY\9cù.À®\86_\15d.c²U\11v\95¥ü\8f¯`!\8a8ßi\8dÆ|Ä¢\bKq(\82\89\88Ôú \17\ ev\17\ fnåe\1eü\19lC\85@fÛOH¬\9a¡»L~\1f/>Ú\83½MdE\98µ\8dË\ 4Òñ{\18ØÔ/Úëò\ e\r¸OÙê*þ\11;tA\8f\12\ 1\1f\n¨\8frþ Ô\17\17C\15\8eOZÃÏÖ|ø­)\bø\9d\91R\12\11\10\88Ç\9fo¶qÏ>ì{¹a\97ÙÖWR­Íc¨«\89LuÔË˱C\15Q\91\1f\ 5\85UaAy ®/ñ\86­MGIº¸*\115GªîZÏL<Ç\81Ø\15^k*%¤;\8fðÕ\9003\"\"#åÚ½\n\15\91N\95D\85zµ*¨\11\15\1cV\94©q\0µ\80ÆÂ#\11\11\1d³ºfé\12ëg1w1ÆÑ\8eD\89²¢\ 5Ø\ 1\9f\":íàà\89ò\92\b\89òí¨{§ï\ 1q\84·\93Ê\ eSMdìî¬Nm\9d\15Ózhßg\146l)5]P7\16IËë4Wj\ 5\13îh¾ê\18Lû¯\82Ç}ôÕª\ 2!\e\7f\8aÅU¨Þ3\13æ\10\84\fÆÒ!\95s#â\\lªÕÔ  B\16      JT0µ©K\18\15­`1\ 2\0\ 3\10\"\ 3\10\"1\11\11´{\9e\1f!R­Úó12\8buÓe31é2§\ 1\84Ì\7f\87i\1c\9e\94Ê!\7fÑùm5qØÆVdGáõéWbèd«DíÔ«z»Va\1cFU;\18êNîõØ£ïÆ\8b$˯V_F¶¢ÂÙÛÁfë¦\"\ 5dpJñ@\ 2\0%a;\0\1c±Jöw\95\94(ÞKFè¥(§ò®É^\ 6\0ÏèG\89\12\9fÜ}úÙ5\ f\bµÝ\ 5вQåÕe}YAkçúÈ­\83\11¿ÐcÛ©²»mãôÞ\90«¿êToêò8ßoîÚO×Óo~¦c\8fɤ28Þ_êfqv`\7fò\99öÉí\1c¦ f~³\ 3¾Ñ¿íȶÿ\04þ¾ÿ\0ShåÆG\97×\8cÌLÇó\88þ^ÏÿÄ\0\1f\10\ 1\ 1\0\ 3\0\ 2\ 2\ 3\0\0\0\0\0\0\0\0\ 1\11\0!1 A\10aQq\91ÿÚ\0\b\ 1\ 1\0\ 1?!ð§äþå<Öw\ZÛ*íEWUÀeèý    )7×´\9ceÎu\ f\n»v_#\18Þ\11^oÉÑõÏ4\1e\88»\'\Zà\1es\fÐm\98æ\17¥\817\98\Z ¡\f\bò\ fÔ,\11»\81\8fP\ 4ãe\83\\\ 4\ 6\9f»0\ 1#.\9bf>\8f\10\8aÜ.ú©\ 2©÷\9a\b\ 6\8a\95­êOQê8c\97>\87¦[\fÂTF\8cu\18\7fDú>.\86@\ 2×i\ 4M\ 6:Å)ÃNtê4º²«ráYY¢y|ÿ\0{«çHoaÀ$\ 6f\93Ã\ 2`\8d\ 5Û/ !<\1fhë¨\8a\15 ï&#è[5\ f¢ÕÄ\99ío\12\8e\ eh]ι(Zåè³av\00g\85µ\11\ 2%Bb\9cÒ\85B\98+\'ò\81T       iýùs\9e\a|hvJ\16\9bò\12<M\85\11\80ðQJ\1e{ea\8beÉwÄïÒÙÛC\e\81wEìi\95è\8fÁóÇõ\96<k*\82\a0\9d³Æyia\83Ö(\83J\14!£G3qÎ\v\ 5:öô\'°Ó\93̨¯C\n\'ªÅõ~`B\86KMºFÃÖ\9e¼õt¡\8d\ 4/áCö>?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 1\1cp\0\b£B$\0    8@\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\ 1\0\ 2\ 1\ 4\ 2\ 3\ 1\0\0\0\0\0\0\0\ 1\11\0!1 AQa\10\81q\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ùPå\ fË3¿«M\8e\16\ f\1e]`\9c#x\88ß×X\ 5P?ß\95ôo\nõ¬.;\vÒWç\a\1ddiù{i\96HN}\ e9¬&\14 \9e \80\85V@÷³\\ÄdÁ\e;3ï§Î\90\10·(\ 5\ 5\8b©x\vNéiTÜ@ÞÔãJ\9e|\10`¬+K%¯9\9c®-\8fR\98\8c\8a\98²@Å01ô÷µÌ\15®\94å\8e3\98F´9\17        £6/B\18à½ò9a\ 4á    ø\9aòb\82ø\17|hï\96e2Æ\fe£]7­À½ûÀ\ 6\1cbEè|\89\89E\18q+\ 6¤ÃY§FéG\15\99\83K5;\8e\aró±ÌÑö@à\n¢\ 5\14¬\8f^\v:i=\97î±È\0:\ f\Z\ fç×BaDë\v¨B8X\17·FÝO\80ítâ\81dV\95\9dr\96ºÏ\'8\97\811\91²Ïª\90\bõ´Ò\a\86\8bÉï?\bßÏ!e\89àÝ\8dì\9a{e\1e\11û>\14\17À¿¢á\85#lm\ 1\88Î8§\ 3\"ÖL\91Î[\7f:\86¸0i\80\9f¢%qjx¼Ñ  _\1eB\82\1fDUâ\11\88\0\84\Z\ f\9c÷\r¶sÃǼyXN3Ä$º­\9dQ)2Z+Xjºp\9c`Lp}ÿ\0\\\b\ZÑ\ 1yÓ®u\8fÀ_Q9\ 4\19(   uº\93°\ 1\81v\a\9c\8ep\0-:\8fõª\94h\ 6½TBª½8\81ø\82\88¥øÿÙ',5,1,'','','',''),(6,2,0,'14654cf674381248','ca76a172375b6d5a37bf290a402534ea','2015-02-02 12:02:11','2015-02-02 12:02:11','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a  \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\8d÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2lk3®\90!b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!#\a\10\"1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤Þ\84á´Æ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\bçô7¶u\84ï\8fÎ\16æGëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&·XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨Ow@8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]XUÆ¥«bêÙ\nÁ2J^B\93Jµ®\8c\97ÅÑa\87Y0S$+`\81\11HÉO»Pé\9a»~Ðr\ 2î/|í   ÉcÎ-TQ\17Ð6\r}±\1fÑ\ e\92\9f\97\14\91*\9a\87C¶Æ\9cÎã\1c=;\15\e\89¨f©ø [[hîåË®\9b\ 1\1f\83\8cG³L2:Ùÿ\0iÙ\14á+\19Ï$Ô¦«t\8eÛ\99>g\9b\8f\ 3;Tv\eø\96\10X]%Q½ÏÙÈ\92µk\96Þîý\92\97ݱ\ 3ô\ 3,\19ô\82fd\15°ffc\9f»\'\9cÉ·£C\13FÅûlùÌ&²É\87¶>£-»@~ds\ 3\1f>\11¬µ­ËØúy(\e\9a\7fDcí6\8d,v-Þ¥\'g\99XÂÎ[-a\12·XCÝ\14*ÉJb\9eýÛl3\e\8c£A\97\ f«q\95+%\f¶ØçêYbÀMçñ\17ÆÙ\"ø§Ï\99ãLæñ\17Q\8dÕZ/.\19\8c\r«`l¢ùÞ©³\8eÈ\ 2½nÖؤ#ª\9fU$0b\'\12a5r\Z£\eg\1fRaa\93ÈÒ\98Éã1M-¡Ô¶Ål¼º\eçøòÇÂ\10¿RìÕ\ esÂÜ\93\ 6) ,[\0 \80Àãp\98\10ó\82\12\19\89\82\8f\1c¼Ç\19\\`ó\98½oO×hÇ×]\9a\93\11\16\97\95º _´§\9f\ 2\ 3\10\"\"\"#\11Ê\"\"9DD\7fH\8f\97¾Í+J\a\87\96\f\185\ fY)«1\9f\ 4&\ 4BQ>&\'\8d-JÉ\99\9e7´æs2]:ÏrP\133çÓ@,#ô\18âk·ÈI¥\9fä\87-áþë\1fºªªðµDÀÿ\0s#ÿ\0¥ÇÿÄ\0#\10\ 1\0\ 2\ 2\ 1\ 3\ 4\ 3\0\0\0\0\0\0\0\0\ 1\0\11!1ðA\81áQa¡Ñ\10qÁÿÚ\0\b\ 1\ 1\0\ 1?!\98ëß=åH¾kzí\v\10¢LËLâYã2Ð\9aÄ\879\89ç\9dúN\9cçö_àÏ3Èb~\1dÆÊBã¦ÊööM 5ÂþfBøbD\89ÈÒ\1c¢\1co\ 6>9Îó¤B\ e}\rÏ\v\11`¢\"0p\ 1IAͦH9 Ë\0f¡T\7fA\89\ 4×fÝ\97õi$\17\nñÎn\ 2\86¡È(v±\10Ñ\7fO\83Vèãq\1eã¥a\84\8dz5¹X\e\r\8fFD1_8\19\82Ô7{\82è\80\14]óÕ%cTÄn\vÙ/p°Ý\a¤\96.\b³\ 4<3\0\0\Z\ f\9e}üATö¨\9fJĤ#p\90\"\98±\n²[\8e\92\16¶q¼\9dÙÞÕ\ e\9f\9a\9c×9¸éýzCR\8aUPÇÉ?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ²ñ{\96\8a_\v$\1dÔÇL¸YÐ\98mº2g\1e#\8dG+}í\9b×ïò>=Ôp\9c.¿Ý\1d{*Ð=çë#\b\"ÚT\1eÁ§Z\ 3³Qô\rÎ;G¿ \17\'ÝÍÚU¤\96é\15¸¯ß\81¼úó¼S\85±ÃÆô<<_t¯\90L\8d\"4uHÅ0B\8cÌ\9fS¢Exêi\89P\88Ä.Z<\ 6Lzÿ\0c}CÎøèðõÝÍvÇ4»A\86\15§ËÒ8©\81Â.[¸Øãj3ÝÖ\aÐÅèÿ\0B^ÿ\0³\'¤ ¹\82À2;·af±\98ó(\82·Ø g´\r\v\8cbBr駲ä)cÃWÂ\83ª\ 2\ 1\12¿\9a\rÚyg\11i»f½qÃ\9bøéyáS\8fì& £¨Þ\ 5\15Z;º\8b#Pl\b,í`0dÙ´sp¹B\ 1kA\93\8e\96|}ñF­£÷¾ûäÅëç³ù µÔ$\ 3(0øN³7Å\ e|\17Ï PÁã.kÿÙ',6,1,'','','',''),(7,3,0,'06554cf6760d7bd9','5a6c31caf8e43479b07178eaf39bea94','2015-02-02 12:02:40','2015-02-02 12:02:40','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0       \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Õà¢ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK\93\1eå¿H®\8eÝrË\8aÏÑ\9e\15\1cqi÷\11·9\18Â+sJG#Hq\9b\18\19ªIÃ\18±\88\90ZYs\19\9cYüça±\82G\8dÎ__\14\94¶=ï\1d\14\r»Jÿ\0,{.1äì\14¯\9eÝÃwd.ÿ\0æ\9f0p\88j|¹Zà\9dÁfx¬\84\fp£x¤)(¦\94\99\9d\93zëÈKx±×-í\0XÛ\r\8fM¢fbtEuæ\98¸2£\7föNÃï\e/4ì·#§ÖN®\nG5æ\9c\89̲OìÜ\86~A\8fdJ¯F¬A,\ 6\ 5úmSç\ 3Z3¥<óXã\1cì6GdÇ\1eà\93\18¤\a¬\14·T\9føÝ\11ßÉÂè[áäÉ\b¼\9aêÕ¸E)þR\9e\96\14L\\t_!\94\8cݠˤp\aøÚeùÑBøq_\9b+D\12VË_¯&\\xl~m\\xÒÊÚzì\84\91Å\91ɧ TÚ¹\v¤È\952t¸>&Æ\8ew´a\83-éU\ 2*\94Øn¢\85G\84\1f+Íîé\94ä/­aX¸|R\9eÕæÂë¡\fDu\96w\1e)\1d·RêtíÜ¥\99a-`\86±3Àôxã® \8d^¹@Ç\ 3\Z¨Ýèçp\16±v\98)\"öÝKíõ(G\b\91±#{<Ç4ÒÚ[N¿\1ey°ð\9a)\10\16¦Ë\8b   ò\9e³R»\91ÄÚL\ eÚ$íþ;\86V5Ú\9f礼\97ïF\Zj\93ðŽÛ\ 4/óìwóÑÜ\93ïµ5=\'×\86{¦1´S?SÕU\94P\9b_\aÿ\0\9b\10w?FÑT³ëZyã\1ceC5{\8d\ eû.ojSÇ}m¥kû?ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0P\10\0\ 1\ 3\ 2\ 2\ 4\ 4\f\12\b\a\0\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14#\a!$0\15 \"1234BCScd\10\16%ADQRTaqst\83\84\93\94³Ã@Ubru\81£ðEP\85¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04ÛîÙÆ1 U\17\943\13\9fØhÐX¹yô\rë¡\ 3kZ\92s4JµRîIèaÀ¿(!\b\12N>ñ³W@µ\8a±`NW\vÊnÌj\98|ì«ñcÈ;|Úü\e6\83swØ\11\ 5õY\84\9e/Dµ?\84ì.j/¬¹mú\11-ËiMäoC\v\9d[;xe\1eäÎÇá\9fW\88ícëÅNêw\856fÎÜKÏJº\96\92r­cºx\\âW¯»\1f\16äTÇ\88\0äôÇJFB\ e\80d,µËM¹I*Â-¹q¦ò´íÏ\1co6Xúr\97XcÜtræ\83L#\ 4;\98Põ_\\/P3I»_\85Ë/°Ã×Ü7Ã\ f_hÃ\1fÐ\9fO\'QS\ eUÐÈ\ 6äð²\8e\86\\¢\17\1f\ 1\1e\Z\15û¯\80;.<¦\9a<\92\92pg\92\ f\8eG/\1d¸V¹Ü8)3JRü\7fßµH«R\16\89SÉ#j¨Ë¦¸\184\16õã÷\\\\Al\n\10Õ§·É©\8b\97\14Ñ\85µ\0Þ\82fÕ5QÜ׺¤\9e\17\f×ï\vÅR\9dÇ­ë5¦KF¼\95½)èV´¦µ}Î\9d\ esÁrØ\ 1j^Ã--1µ1\91\1f\8djH¶û?ÐtKi§²°Ñ)¸,vËn®Úhy\82\80èù6¯@ã;ïM´Rí©NZ\11P¯!\1f§b\96f\8f\8e\86\ f\97láËo\87\9eek\88\95S\eV,zÃJº\8e\89Ëå<1~ãÐð\7f/Aýúð\14è\8dʵ³\8cR\93¼\14$yr\8b\95Çþ!(\"Ö¿\ 36ý#»~ã\8do\'\18øZ¥\ 1\91Ø\13\8e£3bÒ\99Àp\ fb¸oÊ\ezÚ\Z ºî!ß$\8f\1d\8f×íEóØþÐî\94ò\ e¸¨æ\9a4\99\86zhé&\ 6AÚ»n­B\ 5\7fÊ\9d«È×\8bF³5¢\ 34É[\rÀÌ}\88d\ 2\8ao\85O\11 \1eP×Úßµö7;Â\11É\\uny\16Éù8òlbþ\88\ 6\9aUJZ\90\9dòË¥½o\ 1\14Há¡ØGu=úÚ6\10\8aO§6iúYi\n\ 55\92´\96\89æ$Õêöpîe\85ò;     Jããf\ fBjÞª«²ÍÛäs\97Þí\91\ eBP\93ì\1d;çx@\ 2©TëÜo\1f\'\8bÁÉeH\8bþÞ\96àÉÚ×=\10\95~æÞ\1e\9aþ«\9c2=\'\\\99\9aßÁÞz\ f\8eÏ\ fm?YUÞfH\15£@\8fñ~Ë\9d\89¼\ 2>GrG!\9b¢%;´JDn·¿8bV\9f`}\Z»Gljå»\91þøKBÓHÙfª¢ÛJG4\91n¤ö\v\ 3¶Â8ÿ\0ؽ+È!\16\94\98¼\89Ð\96¡J·\88\8f\11\ 4iw?#\91\94Ãë Ó\nuô¬\8c¸ª\19û¥mä^\ 4\89Ô38ñ#Ô\86\ 4ÇÃd\94Î\1d|/6Z÷7;)o`\84I\8fÕ\b\'\nÃs.×7\'¯\8eéÆ%nçÍ\8d\8fÄò6@\ 5\89ÈÙãc\'PÍ\9c\b\99E\11t\r¸ä鬽\98¾\87\11\nVð°åßD¹ÃÅ\ 2\99Ñÿ\0\ 6Æ\1f|t\92s\92EÉc\10ÅÄ\8bÂ{\86í\a\9c_ÃÑõÇ,º¡$VDT~¾¸\"¢ÄBÕ£\10ñùZ\9dÑý\94èÇuëá¢xGº[PÑí\1djÚì\f\9dÃç\8d    ½\94t>:\18\r\8fÉÚ\ 3­WA?½©¥9é\ e\12íô¡¼¼S\\û\89¢S¨9Xö\9eÏùìx:þúj/7¦\8c.hÚ,Â\1f&\95a\9b¨\89(²×\95µ/\95íN\Z\9fØÎ\84\r\"g\18Õua1\1cÒQ\9dH\9dEìò\rDì9\83âãÉ-?¾?Fä 1FÜö\11\89ÕNËg,£B\97ðr?\9e\83\n8ÖU iú] -ö\94M\eCÅ0`-TöY-\84\"\97ãplÓ×åyÅ\10«B\ 4\84ë(\8a\12\8d\r\1f\f§\17\94¨«ªªD¨h\89\11<¬±·&ÿ\0NnëãÑ/bmË_\83û|ýP$n\16ÏÝ>(|cV\86>qúý¿¡­\9aèx[æþ\98\9adôyR-!#¡í¦\8eÇá\e\14\80néþF8îz% Éé\\®j%kr©\89\93\r\7f*-»{ \Z¶\12\0Ù¨Ð\0\0iÕ\18@\14PA\18Çâ¨.*z7t\ 3Af¾4vÝ\1c4öe\7f\12ä2M\e\ fç5i³ý6\81.\18\11¹Æ]ZøÁ\13\1d\"f\19\11%g)\1cÍûR\'¿\ 3¶Â0¿\17\9b{-,ì,#£ÀG/\1d8V \e\80CÍ)Kñh\9b\14\88m§o\12Â:%¦ºd®\"W¬æW\'\rÏ\87Ø;\99¢z§xÖ\98Ñ´ýÖ\16³×\8dR\87 IS\9d\13\ 2O\14Ð&§-xßõ\81þ§³wK\9e·O!~XQëzÉéHòvÝf<Çm\1e\13zíüP\ 5ÛÙ8®ýÓ\16ø¹jç>­1g\\\Z\83\83{ÕØØQ¹\16;jYê¨\0!\ 6\'\1c\97\88\eìvC¸ööO{iJҸҼи2\89sD²\8eÈ\7fr¨jî\87åßÇÆ\13\8f´Ç\83\9e¾.\8e\ eµ[h\vÖy¢kuÜ-\90Vh:w\90°\86íB\17\16éä\88ppëͲ\Z{ë\9a[\9b\8eÎ\8b\9dµøRXé\"ü´\84a\9a¸7Ö\1cWJ0¶§.ȶ\88\e.t³`l?\14Ñ­Ì      ¶íÃóvôÐ\92vMÁoÞ@\12u\95nÜp\8d£¤\94\8f5\90\8c<kw\86ùÇC)¥m~\10áÍaO\8cû\19\béDèV×â\9dç\81»\88SWÎv\86ÞwÇ¥\16\9aÒ©¯T\95\'¾é¤%\\W\ 6ѬÞ>p¯r\ 6\82)\8bøZ!ÔÒ*é\99¤ßÝ÷\ZUÕ\8dm\ 2ëkÙIä\1c¾+F\1f66\98R\94¥?g\9cãÑÍÅ\nÍ\ 2½¡\9b\10\8dH\84ê\12\87½\8bu\87n>\14õ$þùä½ÊçBðgpºY\1c°lG6Ã\87\nßlm+Êá\8bónèií6Ú\Zã\83fÝ7\bN\aZ¥iµe\ 4\95\'Î\9bd~n\97ÅÊ´o\fæ.\11©=ÈÂ#<v?ë4û.~(ѨÉk#uAʶ\18ú\84l\979D\19\11\vÈçº\90\a\ 3|1×´\'ðýñ01\7f+I\17\15§\e˾MTWº\18XD\aþsyþ\bëÇ\84\87¥4«WÍ.×\9f\93Ó\\¬°¢¶»~a®ª»ìæ\ 6\16\90ËÃ\r²NqÒ¿k\97\95\9fþ^\7f\80#×Â:\94Ocú ¡\92üÞ\99À«Mj\14\ 4\16¯ºÍ\1e\96\83J¦©ªE(U%^VvH¼ÿ\0\ 1ïkJr\17\97ç{ã­Ðå~\17O\r\19TU\15\89ÕW{Ê\8c_Íçì×øSÔÇ\13\8aûÜ9\83Óñsô­iLSØþ\95ÿÄ\0)\10\ 1\0\ 1\ 3\ 1\a\ 4\ 3\ 1\ 1\0\0\0\0\0\0\ 1\11\0!1A 0Qaq\81\91\10¡±ð@PÁáñÿÚ\0\b\ 1\ 1\0\ 1?!ý «\91\Z\ 5ËG(\80Må¨ô(MÇÆlxSS¶\ 1/\8eÞ\89ÎjÞ½[\7f©|¨ü\eË%g;        \11I\8a\91j\9a}¤e\0\90\10\84Z!\17ë`\81\18\81\16+p¡\12\ 4\17̬£\"ÒÐ~\r\92\17ÚY   àÙ\84\vN¦¦Y\95*c\84\14\b\90£\9c\16\89t$Â6¨\86\86öy@¥\8eW È\ 4i\ f\19\9c\90\90¦\13\9d¯¿¬Ã\99ݹA£$4Ì\90,3+:\rèF\94b4\11iÎÁ\'Ó]¯`\9dC\84¤ÂÖ}VB\"Vd°&`·W\8ad\8341\\¤\9acb\n£½1\ 5\eXmFd.\12 ×¸ÄZ&\8d\85¨\9dìÔ?Vò\86Oöë ù\ f\ZT¥?\98.®·4fë0L\e\ 5ñ\ 4¯\8b\8cLHo¯\13è¹.\97i\b\8f8Þô\9eR\90»\ 3þÓmåp¾Û]¯.\8b_ÏF\ 6&2[=ü7¼2\f\1d\ 2Ð8ê9\90¿µ\ 5p«¼!\v\9cÞÈG,ì\94U\0\13é\ 3\19\13®,R*   wB¯¹ YRjÍéNÔ\90\ e  °       \98XHQ1£¨Ê\9bÙ³tz]\1dn?)\96γ\83­\83>¼êí\"\9e\8a·\7f¹Äë,(\95\12)f\8fÅe\8b       Ô8\90¨\eÔS\95\82Ø#Æ\81\8e½\9c½ýû   %zdµ-dL¶Ï\82s\98¾rô~-\99Öõ²I<\93^BoYý«i¢#8\17Ém\0±»ë|Z\9d~>f\n\82\96»£\12\'p\8asbÕûÍáâ$R\bN\91¡{µª[À\10c´Ì\85¦\9eÑ×H\80wÅêÃúÑ\nð\ e\ 1b-:z\'M3¼\9e(óq¢\ f@     \83Ñ=«ü\19\96\v\ eïP­\1e±\ e\84¶Jy±«\92\17\84S^\94)\99\Z¼$#UlH1j6\83U:ÿ\0¯ \19&¯AE\98\ 6·\ 2\'¹Ã\ 4±\ 3vîý/\83.\\\11X`\rsÞ®Æ\92\9f#\9d\98\ eâ\1c*v)g^bæÔ\96#Éðì\fè\Z\8a\9f$3\16ý¹y9[\94\19?¹²©\b±Äâ\88õú\16\eXíÂ^W\8asÞÏ2\1c«Ø\0ßcð\e\ 3Ù¹\Z\"¸\92AÞI(Úë°\91 a\19E +FÏ6\9c9J¼ëT\biâï\93E\8d§\93ì#\90È\Z6P/³ÿ\0÷\97j\81Ù½ ÞÏ£~\7f×\84êl¢?º\88çâ¾/Õþ.ÿ\0¿ð(8\e<»­&\95®M\0?\Zïÿ\0Þå\17ï¦Øç\1cãn\7f\85Of.þWÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0â\0\0P\0\0\0\0\18\10\ 2$\0\0\0\0Î0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 3\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 3\ 5\ 1\0\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10\91¡@±ÑáðPÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5تf-:\13Â\ 3\ 6`\8a\"è\88\18\16#J\81Aw\81¨\ 5\ 2\84\10°2Z\Z!cX`åÚúü\1f¡­]\ 5+\eNC\\º    \8e8p\1cpÄòA¡\ 19¹±V\97÷Q\9ea-°\82¿^¥sÚúü\1f¡\95\9f(\86s¸È\ 6²TFâe\"\94\99/\ 5\r\ 6]ò¹^\1cõM®$gî~\'Ñ8\85\ 1\e\8a¾\9b\9dï|áÓÇÀ+\98\\\82§%ãzÁ)E        ´´\ 5-@ÔÆÀG${LñHSVÎ\13\9fÜÈüukò\"\94PQT \ 1ÏÑ\89\8cäú\84#- (|\13æCÐ\ 2÷qú\173a*ä\9dX¸`\80Á:$æNÝ\10\0\r¸\ 3\98Ï¥I*\17\ 5N\88u\14®1onç\ 3tnc\\\16\8f3T¥X<©\ 6¥+fSÑhä\bÀ<;¸RÁiB\92¡           ð÷øÒéßØ­Ç!t     \ 5\b=Dc\95d\\\ 6\0°­¨\"F\9f\14åv\8d\8cñc+ò \87Û\86n̺áïñ­û`C\17\82ª8Õ\ 4à\ e¥ î\ 4\ 4@\ 6ÿ\0* Ú.é\840\8a\7f¥\9dôÏ=â\ 4S\90\85 J@<\ 4\9b¢\13\94X\nL\b@²Zg\15\1fn=ôxÒ ±P[P¥Qê\1cÀO\84 ªîC=\\ês\12jCv \90\95\1cbÂU)E4Î\'³øþ~¢Û>Ìè\97w\80ÊìK¤ºD,¢HËr0\ah$u8\810\r\ 3 }Ù/«ýwÏV{¿\8fãA¬$¤\88Æcd\0:        \9bï+Q\100\13=\95\983ÀÙPàR}Kç\98¼e\ e\ 4ÈA@\80ô!w* &b9ç\ 5ßm/\84å\1c\111\"ÄÆ:\83\94ÑÂ\8b\Z\80\ 3L\1c\ 6A\8a\8d³,\11,\ 36\03º\82\9c\ 4q\ 3rhº-O3@ûÎ\18\13\87L\81\95Ë\"?«\80+\80\9a\n¡jâ»r\n\10\89õÛá\14\9b`=uY\0ëd»\v\18Êãq\1c*,ÎJJ\90±¸Ë\8aàC;¯HÔtZ}!\ 2È3-\1dhÝBù\ 4¡\87¨:`f\ 4B!·($mQ\1f\82{^\'?Ûâø¾4SÝÑÊÇ\n)ÝDí\86c¨\'\84`c- #Éÿ\0lys\9dî:#¼¡aª\81¹T1=\15\ 6Ô\vo8§Ñ_%ªA\94g¨¤Ò\ 3\fÌ9ɯ¶\10n\94\nê¡0ÿ\0\ 6fø\"\n\1343h{a4DkA\ 6\v# @ý\88LKmpµY\99·\88Ñ&%\ fMÌ~ûö08\82J)U.dz\80\ 6Ø,L3¿&<÷~ýLxóaøÞíßíä¬0òG!\ 5\ 4/V\9cú;Æã\83Rl\17ÍóáÌJ\16Ep娲L3\9d\11cÏ\n9\98\13\90\9dm¿_\97B\99-ªõ\91<6\90k\7f×äð°­S2\83w0\84î\ et\8c­É\1d\11ç\18íYpë\ 2\82Û\f£Ü«\8eìÅ\9bþ¿\'\84è\94I\e×2NÇuç ·\9e¹ß\8b\8cÔíöÏ[ÏRVV\8a«Ø\e9\9bëð¼;wÎ\e#¶à¤\99\8dí«Wb\8d\1e\9bl1=Ñ:ò§¥ËÕ\18\8a8\9c\0ñné8ý\9c\'Î\9a\1c(ãæ)\84o\13®W\8cÓ½Æ÷É\8b«Ç\8c\ eø\9dÿ\0\9bó¶Ø:è©\912¤á¾Äól\7fUÿÙ',4,1,'','','',''),(8,3,0,'06554cf6760d7bd9','5a6c31caf8e43479b07178eaf39bea94','2015-02-02 12:02:40','2015-02-02 12:02:40','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà0Ùæ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8c\1cî`Í\0\8dw\ 4§1Ö¦4i\14H\85\ 2A\89\1e\rÄ®öÅ»-W\10\1d÷\84°\93zR\99\93ìm%Øåhô$¶\\Ì\ 1æÑÄÏ×   \"¼6\85ô¸\1c«\17ò¹.\a\8cø>ò¬g¹\ 3\8e\94öË¥=üÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\09\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 2\v\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa$\91%0CRqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þµºSI¦¦[U\0Dݳc\931Ø> ò\ 5±k!\9by\1e\13\aá¹\8a«A\ 1X\93-ëö\rY¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ    ÆÔ±\92°¥ÿ\0m\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɽö\a1\93±\95Ô\16äç¬t\93,¿\93d³Ô[k\89 \19ù]`\vµzT«ª­J¨MjÕ\90\10´¡\b\bZ\92 \1d\84\16°\18\0\18ò\81\88\8eÍÃe\99z¬ñaS¿\8f¶êÖiY\91ø\1d\ 2\f\14Ù\b\9f\9e½\90b\98>[     lcwMä2·2\98üFB+ä°¶ì¾Æ7%\8e>\fUÌpÙ#ð-³Q\81\84tÈH\85vE\90&®ØÌÕ\ 3êQËQ«\91¦ÏI*×\12\16\133\1fIàÈÞ>\93¼{º÷\1dTHì;Mä\18\95\87Ìè¿\19\v\18\8fYgC\84G×~Ù\bw\1e¬é\1c\9f\86ß×\97\8fÅK8þý.^\9f\97\7fiס\10ËHÀàéÝ\15G#+Åâ\1cµÌ\ eó-ð\96)\8eÞs·\11ý»hÌ\1dø!»\8cÓ\98ºÖÀ½W`j®\\¯úY$¯øû¤\ 5\10BQÄ\84£q\91\9f)\89\8f¬LzÇ׶\1fZãë1ú3!\93°ê½\r¾\Z7\84×\97À\9eó\11\16©×q¶\87Rx=aY\9cù.À®\86_\15d.c²U\11v\95¥ü\8f¯`!\8a8ßi\8dÆ|Ä¢\bKq(\82\89\88Ôú \17\ ev\17\ fnåe\1eü\19lC\85@fÛOH¬\9a¡»L~\1f/>Ú\83½MdE\98µ\8dË\ 4Òñ{\18ØÔ/Úëò\ e\r¸OÙê*þ\11;tA\8f\12\ 1\1f\n¨\8frþ Ô\17\17C\15\8eOZÃÏÖ|ø­)\bø\9d\91R\12\11\10\88Ç\9fo¶qÏ>ì{¹a\97ÙÖWR­Íc¨«\89LuÔË˱C\15Q\91\1f\ 5\85UaAy ®/ñ\86­MGIº¸*\115GªîZÏL<Ç\81Ø\15^k*%¤;\8fðÕ\9003\"\"#åÚ½\n\15\91N\95D\85zµ*¨\11\15\1cV\94©q\0µ\80ÆÂ#\11\11\1d³ºfé\12ëg1w1ÆÑ\8eD\89²¢\ 5Ø\ 1\9f\":íàà\89ò\92\b\89òí¨{§ï\ 1q\84·\93Ê\ eSMdìî¬Nm\9d\15Ózhßg\146l)5]P7\16IËë4Wj\ 5\13îh¾ê\18Lû¯\82Ç}ôÕª\ 2!\e\7f\8aÅU¨Þ3\13æ\10\84\fÆÒ!\95s#â\\lªÕÔ  B\16      JT0µ©K\18\15­`1\ 2\0\ 3\10\"\ 3\10\"1\11\11´{\9e\1f!R­Úó12\8buÓe31é2§\ 1\84Ì\7f\87i\1c\9e\94Ê!\7fÑùm5qØÆVdGáõéWbèd«DíÔ«z»Va\1cFU;\18êNîõØ£ïÆ\8b$˯V_F¶¢ÂÙÛÁfë¦\"\ 5dpJñ@\ 2\0%a;\0\1c±Jöw\95\94(ÞKFè¥(§ò®É^\ 6\0ÏèG\89\12\9fÜ}úÙ5\ f\bµÝ\ 5вQåÕe}YAkçúÈ­\83\11¿ÐcÛ©²»mãôÞ\90«¿êToêò8ßoîÚO×Óo~¦c\8fɤ28Þ_êfqv`\7fò\99öÉí\1c¦ f~³\ 3¾Ñ¿íȶÿ\04þ¾ÿ\0ShåÆG\97×\8cÌLÇó\88þ^ÏÿÄ\0\1f\10\ 1\ 1\0\ 3\0\ 2\ 2\ 3\0\0\0\0\0\0\0\0\ 1\11\0!1 A\10aQq\91ÿÚ\0\b\ 1\ 1\0\ 1?!ð§äþå<Öw\ZÛ*íEWUÀeèý    )7×´\9ceÎu\ f\n»v_#\18Þ\11^oÉÑõÏ4\1e\88»\'\Zà\1es\fÐm\98æ\17¥\817\98\Z ¡\f\bò\ fÔ,\11»\81\8fP\ 4ãe\83\\\ 4\ 6\9f»0\ 1#.\9bf>\8f\10\8aÜ.ú©\ 2©÷\9a\b\ 6\8a\95­êOQê8c\97>\87¦[\fÂTF\8cu\18\7fDú>.\86@\ 2×i\ 4M\ 6:Å)ÃNtê4º²«ráYY¢y|ÿ\0{«çHoaÀ$\ 6f\93Ã\ 2`\8d\ 5Û/ !<\1fhë¨\8a\15 ï&#è[5\ f¢ÕÄ\99ío\12\8e\ eh]ι(Zåè³av\00g\85µ\11\ 2%Bb\9cÒ\85B\98+\'ò\81T       iýùs\9e\a|hvJ\16\9bò\12<M\85\11\80ðQJ\1e{ea\8beÉwÄïÒÙÛC\e\81wEìi\95è\8fÁóÇõ\96<k*\82\a0\9d³Æyia\83Ö(\83J\14!£G3qÎ\v\ 5:öô\'°Ó\93̨¯C\n\'ªÅõ~`B\86KMºFÃÖ\9e¼õt¡\8d\ 4/áCö>?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 1\1cp\0\b£B$\0    8@\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\ 1\0\ 2\ 1\ 4\ 2\ 3\ 1\0\0\0\0\0\0\0\ 1\11\0!1 AQa\10\81q\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ùPå\ fË3¿«M\8e\16\ f\1e]`\9c#x\88ß×X\ 5P?ß\95ôo\nõ¬.;\vÒWç\a\1ddiù{i\96HN}\ e9¬&\14 \9e \80\85V@÷³\\ÄdÁ\e;3ï§Î\90\10·(\ 5\ 5\8b©x\vNéiTÜ@ÞÔãJ\9e|\10`¬+K%¯9\9c®-\8fR\98\8c\8a\98²@Å01ô÷µÌ\15®\94å\8e3\98F´9\17        £6/B\18à½ò9a\ 4á    ø\9aòb\82ø\17|hï\96e2Æ\fe£]7­À½ûÀ\ 6\1cbEè|\89\89E\18q+\ 6¤ÃY§FéG\15\99\83K5;\8e\aró±ÌÑö@à\n¢\ 5\14¬\8f^\v:i=\97î±È\0:\ f\Z\ fç×BaDë\v¨B8X\17·FÝO\80ítâ\81dV\95\9dr\96ºÏ\'8\97\811\91²Ïª\90\bõ´Ò\a\86\8bÉï?\bßÏ!e\89àÝ\8dì\9a{e\1e\11û>\14\17À¿¢á\85#lm\ 1\88Î8§\ 3\"ÖL\91Î[\7f:\86¸0i\80\9f¢%qjx¼Ñ  _\1eB\82\1fDUâ\11\88\0\84\Z\ f\9c÷\r¶sÃǼyXN3Ä$º­\9dQ)2Z+Xjºp\9c`Lp}ÿ\0\\\b\ZÑ\ 1yÓ®u\8fÀ_Q9\ 4\19(   uº\93°\ 1\81v\a\9c\8ep\0-:\8fõª\94h\ 6½TBª½8\81ø\82\88¥øÿÙ',5,1,'','','',''),(9,3,0,'06554cf6760d7bd9','5a6c31caf8e43479b07178eaf39bea94','2015-02-02 12:02:40','2015-02-02 12:02:40','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a  \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\8d÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2lk3®\90!b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!#\a\10\"1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤Þ\84á´Æ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\bçô7¶u\84ï\8fÎ\16æGëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&·XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨Ow@8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]XUÆ¥«bêÙ\nÁ2J^B\93Jµ®\8c\97ÅÑa\87Y0S$+`\81\11HÉO»Pé\9a»~Ðr\ 2î/|í   ÉcÎ-TQ\17Ð6\r}±\1fÑ\ e\92\9f\97\14\91*\9a\87C¶Æ\9cÎã\1c=;\15\e\89¨f©ø [[hîåË®\9b\ 1\1f\83\8cG³L2:Ùÿ\0iÙ\14á+\19Ï$Ô¦«t\8eÛ\99>g\9b\8f\ 3;Tv\eø\96\10X]%Q½ÏÙÈ\92µk\96Þîý\92\97ݱ\ 3ô\ 3,\19ô\82fd\15°ffc\9f»\'\9cÉ·£C\13FÅûlùÌ&²É\87¶>£-»@~ds\ 3\1f>\11¬µ­ËØúy(\e\9a\7fDcí6\8d,v-Þ¥\'g\99XÂÎ[-a\12·XCÝ\14*ÉJb\9eýÛl3\e\8c£A\97\ f«q\95+%\f¶ØçêYbÀMçñ\17ÆÙ\"ø§Ï\99ãLæñ\17Q\8dÕZ/.\19\8c\r«`l¢ùÞ©³\8eÈ\ 2½nÖؤ#ª\9fU$0b\'\12a5r\Z£\eg\1fRaa\93ÈÒ\98Éã1M-¡Ô¶Ål¼º\eçøòÇÂ\10¿RìÕ\ esÂÜ\93\ 6) ,[\0 \80Àãp\98\10ó\82\12\19\89\82\8f\1c¼Ç\19\\`ó\98½oO×hÇ×]\9a\93\11\16\97\95º _´§\9f\ 2\ 3\10\"\"\"#\11Ê\"\"9DD\7fH\8f\97¾Í+J\a\87\96\f\185\ fY)«1\9f\ 4&\ 4BQ>&\'\8d-JÉ\99\9e7´æs2]:ÏrP\133çÓ@,#ô\18âk·ÈI¥\9fä\87-áþë\1fºªªðµDÀÿ\0s#ÿ\0¥ÇÿÄ\0#\10\ 1\0\ 2\ 2\ 1\ 3\ 4\ 3\0\0\0\0\0\0\0\0\ 1\0\11!1ðA\81áQa¡Ñ\10qÁÿÚ\0\b\ 1\ 1\0\ 1?!\98ëß=åH¾kzí\v\10¢LËLâYã2Ð\9aÄ\879\89ç\9dúN\9cçö_àÏ3Èb~\1dÆÊBã¦ÊööM 5ÂþfBøbD\89ÈÒ\1c¢\1co\ 6>9Îó¤B\ e}\rÏ\v\11`¢\"0p\ 1IAͦH9 Ë\0f¡T\7fA\89\ 4×fÝ\97õi$\17\nñÎn\ 2\86¡È(v±\10Ñ\7fO\83Vèãq\1eã¥a\84\8dz5¹X\e\r\8fFD1_8\19\82Ô7{\82è\80\14]óÕ%cTÄn\vÙ/p°Ý\a¤\96.\b³\ 4<3\0\0\Z\ f\9e}üATö¨\9fJĤ#p\90\"\98±\n²[\8e\92\16¶q¼\9dÙÞÕ\ e\9f\9a\9c×9¸éýzCR\8aUPÇÉ?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ²ñ{\96\8a_\v$\1dÔÇL¸YÐ\98mº2g\1e#\8dG+}í\9b×ïò>=Ôp\9c.¿Ý\1d{*Ð=çë#\b\"ÚT\1eÁ§Z\ 3³Qô\rÎ;G¿ \17\'ÝÍÚU¤\96é\15¸¯ß\81¼úó¼S\85±ÃÆô<<_t¯\90L\8d\"4uHÅ0B\8cÌ\9fS¢Exêi\89P\88Ä.Z<\ 6Lzÿ\0c}CÎøèðõÝÍvÇ4»A\86\15§ËÒ8©\81Â.[¸Øãj3ÝÖ\aÐÅèÿ\0B^ÿ\0³\'¤ ¹\82À2;·af±\98ó(\82·Ø g´\r\v\8cbBr駲ä)cÃWÂ\83ª\ 2\ 1\12¿\9a\rÚyg\11i»f½qÃ\9bøéyáS\8fì& £¨Þ\ 5\15Z;º\8b#Pl\b,í`0dÙ´sp¹B\ 1kA\93\8e\96|}ñF­£÷¾ûäÅëç³ù µÔ$\ 3(0øN³7Å\ e|\17Ï PÁã.kÿÙ',6,1,'','','',''),(10,4,0,'75354cf677be64c1','1e68dd1e2c32ae390c21fc6911d10461','2015-02-02 12:03:07','2015-02-02 12:03:07','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0      \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Õà¢ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK\93\1eå¿H®\8eÝrË\8aÏÑ\9e\15\1cqi÷\11·9\18Â+sJG#Hq\9b\18\19ªIÃ\18±\88\90ZYs\19\9cYüça±\82G\8dÎ__\14\94¶=ï\1d\14\r»Jÿ\0,{.1äì\14¯\9eÝÃwd.ÿ\0æ\9f0p\88j|¹Zà\9dÁfx¬\84\fp£x¤)(¦\94\99\9d\93zëÈKx±×-í\0XÛ\r\8fM¢fbtEuæ\98¸2£\7föNÃï\e/4ì·#§ÖN®\nG5æ\9c\89̲OìÜ\86~A\8fdJ¯F¬A,\ 6\ 5úmSç\ 3Z3¥<óXã\1cì6GdÇ\1eà\93\18¤\a¬\14·T\9føÝ\11ßÉÂè[áäÉ\b¼\9aêÕ¸E)þR\9e\96\14L\\t_!\94\8cݠˤp\aøÚeùÑBøq_\9b+D\12VË_¯&\\xl~m\\xÒÊÚzì\84\91Å\91ɧ TÚ¹\v¤È\952t¸>&Æ\8ew´a\83-éU\ 2*\94Øn¢\85G\84\1f+Íîé\94ä/­aX¸|R\9eÕæÂë¡\fDu\96w\1e)\1d·RêtíÜ¥\99a-`\86±3Àôxã® \8d^¹@Ç\ 3\Z¨Ýèçp\16±v\98)\"öÝKíõ(G\b\91±#{<Ç4ÒÚ[N¿\1ey°ð\9a)\10\16¦Ë\8b   ò\9e³R»\91ÄÚL\ eÚ$íþ;\86V5Ú\9f礼\97ïF\Zj\93ðŽÛ\ 4/óìwóÑÜ\93ïµ5=\'×\86{¦1´S?SÕU\94P\9b_\aÿ\0\9b\10w?FÑT³ëZyã\1ceC5{\8d\ eû.ojSÇ}m¥kû?ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0P\10\0\ 1\ 3\ 2\ 2\ 4\ 4\f\12\b\a\0\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14#\a!$0\15 \"1234BCScd\10\16%ADQRTaqst\83\84\93\94³Ã@Ubru\81£ðEP\85¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04ÛîÙÆ1 U\17\943\13\9fØhÐX¹yô\rë¡\ 3kZ\92s4JµRîIèaÀ¿(!\b\12N>ñ³W@µ\8a±`NW\vÊnÌj\98|ì«ñcÈ;|Úü\e6\83swØ\11\ 5õY\84\9e/Dµ?\84ì.j/¬¹mú\11-ËiMäoC\v\9d[;xe\1eäÎÇá\9fW\88ícëÅNêw\856fÎÜKÏJº\96\92r­cºx\\âW¯»\1f\16äTÇ\88\0äôÇJFB\ e\80d,µËM¹I*Â-¹q¦ò´íÏ\1co6Xúr\97XcÜtræ\83L#\ 4;\98Põ_\\/P3I»_\85Ë/°Ã×Ü7Ã\ f_hÃ\1fÐ\9fO\'QS\ eUÐÈ\ 6äð²\8e\86\\¢\17\1f\ 1\1e\Z\15û¯\80;.<¦\9a<\92\92pg\92\ f\8eG/\1d¸V¹Ü8)3JRü\7fßµH«R\16\89SÉ#j¨Ë¦¸\184\16õã÷\\\\Al\n\10Õ§·É©\8b\97\14Ñ\85µ\0Þ\82fÕ5QÜ׺¤\9e\17\f×ï\vÅR\9dÇ­ë5¦KF¼\95½)èV´¦µ}Î\9d\ esÁrØ\ 1j^Ã--1µ1\91\1f\8djH¶û?ÐtKi§²°Ñ)¸,vËn®Úhy\82\80èù6¯@ã;ïM´Rí©NZ\11P¯!\1f§b\96f\8f\8e\86\ f\97láËo\87\9eek\88\95S\eV,zÃJº\8e\89Ëå<1~ãÐð\7f/Aýúð\14è\8dʵ³\8cR\93¼\14$yr\8b\95Çþ!(\"Ö¿\ 36ý#»~ã\8do\'\18øZ¥\ 1\91Ø\13\8e£3bÒ\99Àp\ fb¸oÊ\ezÚ\Z ºî!ß$\8f\1d\8f×íEóØþÐî\94ò\ e¸¨æ\9a4\99\86zhé&\ 6AÚ»n­B\ 5\7fÊ\9d«È×\8bF³5¢\ 34É[\rÀÌ}\88d\ 2\8ao\85O\11 \1eP×Úßµö7;Â\11É\\uny\16Éù8òlbþ\88\ 6\9aUJZ\90\9dòË¥½o\ 1\14Há¡ØGu=úÚ6\10\8aO§6iúYi\n\ 55\92´\96\89æ$Õêöpîe\85ò;     Jããf\ fBjÞª«²ÍÛäs\97Þí\91\ eBP\93ì\1d;çx@\ 2©TëÜo\1f\'\8bÁÉeH\8bþÞ\96àÉÚ×=\10\95~æÞ\1e\9aþ«\9c2=\'\\\99\9aßÁÞz\ f\8eÏ\ fm?YUÞfH\15£@\8fñ~Ë\9d\89¼\ 2>GrG!\9b¢%;´JDn·¿8bV\9f`}\Z»Gljå»\91þøKBÓHÙfª¢ÛJG4\91n¤ö\v\ 3¶Â8ÿ\0ؽ+È!\16\94\98¼\89Ð\96¡J·\88\8f\11\ 4iw?#\91\94Ãë Ó\nuô¬\8c¸ª\19û¥mä^\ 4\89Ô38ñ#Ô\86\ 4ÇÃd\94Î\1d|/6Z÷7;)o`\84I\8fÕ\b\'\nÃs.×7\'¯\8eéÆ%nçÍ\8d\8fÄò6@\ 5\89ÈÙãc\'PÍ\9c\b\99E\11t\r¸ä鬽\98¾\87\11\nVð°åßD¹ÃÅ\ 2\99Ñÿ\0\ 6Æ\1f|t\92s\92EÉc\10ÅÄ\8bÂ{\86í\a\9c_ÃÑõÇ,º¡$VDT~¾¸\"¢ÄBÕ£\10ñùZ\9dÑý\94èÇuëá¢xGº[PÑí\1djÚì\f\9dÃç\8d    ½\94t>:\18\r\8fÉÚ\ 3­WA?½©¥9é\ e\12íô¡¼¼S\\û\89¢S¨9Xö\9eÏùìx:þúj/7¦\8c.hÚ,Â\1f&\95a\9b¨\89(²×\95µ/\95íN\Z\9fØÎ\84\r\"g\18Õua1\1cÒQ\9dH\9dEìò\rDì9\83âãÉ-?¾?Fä 1FÜö\11\89ÕNËg,£B\97ðr?\9e\83\n8ÖU iú] -ö\94M\eCÅ0`-TöY-\84\"\97ãplÓ×åyÅ\10«B\ 4\84ë(\8a\12\8d\r\1f\f§\17\94¨«ªªD¨h\89\11<¬±·&ÿ\0NnëãÑ/bmË_\83û|ýP$n\16ÏÝ>(|cV\86>qúý¿¡­\9aèx[æþ\98\9adôyR-!#¡í¦\8eÇá\e\14\80néþF8îz% Éé\\®j%kr©\89\93\r\7f*-»{ \Z¶\12\0Ù¨Ð\0\0iÕ\18@\14PA\18Çâ¨.*z7t\ 3Af¾4vÝ\1c4öe\7f\12ä2M\e\ fç5i³ý6\81.\18\11¹Æ]ZøÁ\13\1d\"f\19\11%g)\1cÍûR\'¿\ 3¶Â0¿\17\9b{-,ì,#£ÀG/\1d8V \e\80CÍ)Kñh\9b\14\88m§o\12Â:%¦ºd®\"W¬æW\'\rÏ\87Ø;\99¢z§xÖ\98Ñ´ýÖ\16³×\8dR\87 IS\9d\13\ 2O\14Ð&§-xßõ\81þ§³wK\9e·O!~XQëzÉéHòvÝf<Çm\1e\13zíüP\ 5ÛÙ8®ýÓ\16ø¹jç>­1g\\\Z\83\83{ÕØØQ¹\16;jYê¨\0!\ 6\'\1c\97\88\eìvC¸ööO{iJҸҼи2\89sD²\8eÈ\7fr¨jî\87åßÇÆ\13\8f´Ç\83\9e¾.\8e\ eµ[h\vÖy¢kuÜ-\90Vh:w\90°\86íB\17\16éä\88ppëͲ\Z{ë\9a[\9b\8eÎ\8b\9dµøRXé\"ü´\84a\9a¸7Ö\1cWJ0¶§.ȶ\88\e.t³`l?\14Ñ­Ì      ¶íÃóvôÐ\92vMÁoÞ@\12u\95nÜp\8d£¤\94\8f5\90\8c<kw\86ùÇC)¥m~\10áÍaO\8cû\19\béDèV×â\9dç\81»\88SWÎv\86ÞwÇ¥\16\9aÒ©¯T\95\'¾é¤%\\W\ 6ѬÞ>p¯r\ 6\82)\8bøZ!ÔÒ*é\99¤ßÝ÷\ZUÕ\8dm\ 2ëkÙIä\1c¾+F\1f66\98R\94¥?g\9cãÑÍÅ\nÍ\ 2½¡\9b\10\8dH\84ê\12\87½\8bu\87n>\14õ$þùä½ÊçBðgpºY\1c°lG6Ã\87\nßlm+Êá\8bónèií6Ú\Zã\83fÝ7\bN\aZ¥iµe\ 4\95\'Î\9bd~n\97ÅÊ´o\fæ.\11©=ÈÂ#<v?ë4û.~(ѨÉk#uAʶ\18ú\84l\979D\19\11\vÈçº\90\a\ 3|1×´\'ðýñ01\7f+I\17\15§\e˾MTWº\18XD\aþsyþ\bëÇ\84\87¥4«WÍ.×\9f\93Ó\\¬°¢¶»~a®ª»ìæ\ 6\16\90ËÃ\r²NqÒ¿k\97\95\9fþ^\7f\80#×Â:\94Ocú ¡\92üÞ\99À«Mj\14\ 4\16¯ºÍ\1e\96\83J¦©ªE(U%^VvH¼ÿ\0\ 1ïkJr\17\97ç{ã­Ðå~\17O\r\19TU\15\89ÕW{Ê\8c_Íçì×øSÔÇ\13\8aûÜ9\83Óñsô­iLSØþ\95ÿÄ\0)\10\ 1\0\ 1\ 3\ 1\a\ 4\ 3\ 1\ 1\0\0\0\0\0\0\ 1\11\0!1A 0Qaq\81\91\10¡±ð@PÁáñÿÚ\0\b\ 1\ 1\0\ 1?!ý «\91\Z\ 5ËG(\80Må¨ô(MÇÆlxSS¶\ 1/\8eÞ\89ÎjÞ½[\7f©|¨ü\eË%g;        \11I\8a\91j\9a}¤e\0\90\10\84Z!\17ë`\81\18\81\16+p¡\12\ 4\17̬£\"ÒÐ~\r\92\17ÚY   àÙ\84\vN¦¦Y\95*c\84\14\b\90£\9c\16\89t$Â6¨\86\86öy@¥\8eW È\ 4i\ f\19\9c\90\90¦\13\9d¯¿¬Ã\99ݹA£$4Ì\90,3+:\rèF\94b4\11iÎÁ\'Ó]¯`\9dC\84¤ÂÖ}VB\"Vd°&`·W\8ad\8341\\¤\9acb\n£½1\ 5\eXmFd.\12 ×¸ÄZ&\8d\85¨\9dìÔ?Vò\86Oöë ù\ f\ZT¥?\98.®·4fë0L\e\ 5ñ\ 4¯\8b\8cLHo¯\13è¹.\97i\b\8f8Þô\9eR\90»\ 3þÓmåp¾Û]¯.\8b_ÏF\ 6&2[=ü7¼2\f\1d\ 2Ð8ê9\90¿µ\ 5p«¼!\v\9cÞÈG,ì\94U\0\13é\ 3\19\13®,R*   wB¯¹ YRjÍéNÔ\90\ e  °       \98XHQ1£¨Ê\9bÙ³tz]\1dn?)\96γ\83­\83>¼êí\"\9e\8a·\7f¹Äë,(\95\12)f\8fÅe\8b       Ô8\90¨\eÔS\95\82Ø#Æ\81\8e½\9c½ýû   %zdµ-dL¶Ï\82s\98¾rô~-\99Öõ²I<\93^BoYý«i¢#8\17Ém\0±»ë|Z\9d~>f\n\82\96»£\12\'p\8asbÕûÍáâ$R\bN\91¡{µª[À\10c´Ì\85¦\9eÑ×H\80wÅêÃúÑ\nð\ e\ 1b-:z\'M3¼\9e(óq¢\ f@     \83Ñ=«ü\19\96\v\ eïP­\1e±\ e\84¶Jy±«\92\17\84S^\94)\99\Z¼$#UlH1j6\83U:ÿ\0¯ \19&¯AE\98\ 6·\ 2\'¹Ã\ 4±\ 3vîý/\83.\\\11X`\rsÞ®Æ\92\9f#\9d\98\ eâ\1c*v)g^bæÔ\96#Éðì\fè\Z\8a\9f$3\16ý¹y9[\94\19?¹²©\b±Äâ\88õú\16\eXíÂ^W\8asÞÏ2\1c«Ø\0ßcð\e\ 3Ù¹\Z\"¸\92AÞI(Úë°\91 a\19E +FÏ6\9c9J¼ëT\biâï\93E\8d§\93ì#\90È\Z6P/³ÿ\0÷\97j\81Ù½ ÞÏ£~\7f×\84êl¢?º\88çâ¾/Õþ.ÿ\0¿ð(8\e<»­&\95®M\0?\Zïÿ\0Þå\17ï¦Øç\1cãn\7f\85Of.þWÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0â\0\0P\0\0\0\0\18\10\ 2$\0\0\0\0Î0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 3\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 3\ 5\ 1\0\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10\91¡@±ÑáðPÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5تf-:\13Â\ 3\ 6`\8a\"è\88\18\16#J\81Aw\81¨\ 5\ 2\84\10°2Z\Z!cX`åÚúü\1f¡­]\ 5+\eNC\\º    \8e8p\1cpÄòA¡\ 19¹±V\97÷Q\9ea-°\82¿^¥sÚúü\1f¡\95\9f(\86s¸È\ 6²TFâe\"\94\99/\ 5\r\ 6]ò¹^\1cõM®$gî~\'Ñ8\85\ 1\e\8a¾\9b\9dï|áÓÇÀ+\98\\\82§%ãzÁ)E        ´´\ 5-@ÔÆÀG${LñHSVÎ\13\9fÜÈüukò\"\94PQT \ 1ÏÑ\89\8cäú\84#- (|\13æCÐ\ 2÷qú\173a*ä\9dX¸`\80Á:$æNÝ\10\0\r¸\ 3\98Ï¥I*\17\ 5N\88u\14®1onç\ 3tnc\\\16\8f3T¥X<©\ 6¥+fSÑhä\bÀ<;¸RÁiB\92¡           ð÷øÒéßØ­Ç!t     \ 5\b=Dc\95d\\\ 6\0°­¨\"F\9f\14åv\8d\8cñc+ò \87Û\86n̺áïñ­û`C\17\82ª8Õ\ 4à\ e¥ î\ 4\ 4@\ 6ÿ\0* Ú.é\840\8a\7f¥\9dôÏ=â\ 4S\90\85 J@<\ 4\9b¢\13\94X\nL\b@²Zg\15\1fn=ôxÒ ±P[P¥Qê\1cÀO\84 ªîC=\\ês\12jCv \90\95\1cbÂU)E4Î\'³øþ~¢Û>Ìè\97w\80ÊìK¤ºD,¢HËr0\ah$u8\810\r\ 3 }Ù/«ýwÏV{¿\8fãA¬$¤\88Æcd\0:        \9bï+Q\100\13=\95\983ÀÙPàR}Kç\98¼e\ e\ 4ÈA@\80ô!w* &b9ç\ 5ßm/\84å\1c\111\"ÄÆ:\83\94ÑÂ\8b\Z\80\ 3L\1c\ 6A\8a\8d³,\11,\ 36\03º\82\9c\ 4q\ 3rhº-O3@ûÎ\18\13\87L\81\95Ë\"?«\80+\80\9a\n¡jâ»r\n\10\89õÛá\14\9b`=uY\0ëd»\v\18Êãq\1c*,ÎJJ\90±¸Ë\8aàC;¯HÔtZ}!\ 2È3-\1dhÝBù\ 4¡\87¨:`f\ 4B!·($mQ\1f\82{^\'?Ûâø¾4SÝÑÊÇ\n)ÝDí\86c¨\'\84`c- #Éÿ\0lys\9dî:#¼¡aª\81¹T1=\15\ 6Ô\vo8§Ñ_%ªA\94g¨¤Ò\ 3\fÌ9ɯ¶\10n\94\nê¡0ÿ\0\ 6fø\"\n\1343h{a4DkA\ 6\v# @ý\88LKmpµY\99·\88Ñ&%\ fMÌ~ûö08\82J)U.dz\80\ 6Ø,L3¿&<÷~ýLxóaøÞíßíä¬0òG!\ 5\ 4/V\9cú;Æã\83Rl\17ÍóáÌJ\16Ep娲L3\9d\11cÏ\n9\98\13\90\9dm¿_\97B\99-ªõ\91<6\90k\7f×äð°­S2\83w0\84î\ et\8c­É\1d\11ç\18íYpë\ 2\82Û\f£Ü«\8eìÅ\9bþ¿\'\84è\94I\e×2NÇuç ·\9e¹ß\8b\8cÔíöÏ[ÏRVV\8a«Ø\e9\9bëð¼;wÎ\e#¶à¤\99\8dí«Wb\8d\1e\9bl1=Ñ:ò§¥ËÕ\18\8a8\9c\0ñné8ý\9c\'Î\9a\1c(ãæ)\84o\13®W\8cÓ½Æ÷É\8b«Ç\8c\ eø\9dÿ\0\9bó¶Ø:è©\912¤á¾Äól\7fUÿÙ',4,1,'','','',''),(11,4,0,'75354cf677be64c1','1e68dd1e2c32ae390c21fc6911d10461','2015-02-02 12:03:07','2015-02-02 12:03:07','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b  \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà0Ùæ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8c\1cî`Í\0\8dw\ 4§1Ö¦4i\14H\85\ 2A\89\1e\rÄ®öÅ»-W\10\1d÷\84°\93zR\99\93ìm%Øåhô$¶\\Ì\ 1æÑÄÏ×   \"¼6\85ô¸\1c«\17ò¹.\a\8cø>ò¬g¹\ 3\8e\94öË¥=üÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\09\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 2\v\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa$\91%0CRqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þµºSI¦¦[U\0Dݳc\931Ø> ò\ 5±k!\9by\1e\13\aá¹\8a«A\ 1X\93-ëö\rY¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ    ÆÔ±\92°¥ÿ\0m\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɽö\a1\93±\95Ô\16äç¬t\93,¿\93d³Ô[k\89 \19ù]`\vµzT«ª­J¨MjÕ\90\10´¡\b\bZ\92 \1d\84\16°\18\0\18ò\81\88\8eÍÃe\99z¬ñaS¿\8f¶êÖiY\91ø\1d\ 2\f\14Ù\b\9f\9e½\90b\98>[     lcwMä2·2\98üFB+ä°¶ì¾Æ7%\8e>\fUÌpÙ#ð-³Q\81\84tÈH\85vE\90&®ØÌÕ\ 3êQËQ«\91¦ÏI*×\12\16\133\1fIàÈÞ>\93¼{º÷\1dTHì;Mä\18\95\87Ìè¿\19\v\18\8fYgC\84G×~Ù\bw\1e¬é\1c\9f\86ß×\97\8fÅK8þý.^\9f\97\7fiס\10ËHÀàéÝ\15G#+Åâ\1cµÌ\ eó-ð\96)\8eÞs·\11ý»hÌ\1dø!»\8cÓ\98ºÖÀ½W`j®\\¯úY$¯øû¤\ 5\10BQÄ\84£q\91\9f)\89\8f¬LzÇ׶\1fZãë1ú3!\93°ê½\r¾\Z7\84×\97À\9eó\11\16©×q¶\87Rx=aY\9cù.À®\86_\15d.c²U\11v\95¥ü\8f¯`!\8a8ßi\8dÆ|Ä¢\bKq(\82\89\88Ôú \17\ ev\17\ fnåe\1eü\19lC\85@fÛOH¬\9a¡»L~\1f/>Ú\83½MdE\98µ\8dË\ 4Òñ{\18ØÔ/Úëò\ e\r¸OÙê*þ\11;tA\8f\12\ 1\1f\n¨\8frþ Ô\17\17C\15\8eOZÃÏÖ|ø­)\bø\9d\91R\12\11\10\88Ç\9fo¶qÏ>ì{¹a\97ÙÖWR­Íc¨«\89LuÔË˱C\15Q\91\1f\ 5\85UaAy ®/ñ\86­MGIº¸*\115GªîZÏL<Ç\81Ø\15^k*%¤;\8fðÕ\9003\"\"#åÚ½\n\15\91N\95D\85zµ*¨\11\15\1cV\94©q\0µ\80ÆÂ#\11\11\1d³ºfé\12ëg1w1ÆÑ\8eD\89²¢\ 5Ø\ 1\9f\":íàà\89ò\92\b\89òí¨{§ï\ 1q\84·\93Ê\ eSMdìî¬Nm\9d\15Ózhßg\146l)5]P7\16IËë4Wj\ 5\13îh¾ê\18Lû¯\82Ç}ôÕª\ 2!\e\7f\8aÅU¨Þ3\13æ\10\84\fÆÒ!\95s#â\\lªÕÔ  B\16      JT0µ©K\18\15­`1\ 2\0\ 3\10\"\ 3\10\"1\11\11´{\9e\1f!R­Úó12\8buÓe31é2§\ 1\84Ì\7f\87i\1c\9e\94Ê!\7fÑùm5qØÆVdGáõéWbèd«DíÔ«z»Va\1cFU;\18êNîõØ£ïÆ\8b$˯V_F¶¢ÂÙÛÁfë¦\"\ 5dpJñ@\ 2\0%a;\0\1c±Jöw\95\94(ÞKFè¥(§ò®É^\ 6\0ÏèG\89\12\9fÜ}úÙ5\ f\bµÝ\ 5вQåÕe}YAkçúÈ­\83\11¿ÐcÛ©²»mãôÞ\90«¿êToêò8ßoîÚO×Óo~¦c\8fɤ28Þ_êfqv`\7fò\99öÉí\1c¦ f~³\ 3¾Ñ¿íȶÿ\04þ¾ÿ\0ShåÆG\97×\8cÌLÇó\88þ^ÏÿÄ\0\1f\10\ 1\ 1\0\ 3\0\ 2\ 2\ 3\0\0\0\0\0\0\0\0\ 1\11\0!1 A\10aQq\91ÿÚ\0\b\ 1\ 1\0\ 1?!ð§äþå<Öw\ZÛ*íEWUÀeèý    )7×´\9ceÎu\ f\n»v_#\18Þ\11^oÉÑõÏ4\1e\88»\'\Zà\1es\fÐm\98æ\17¥\817\98\Z ¡\f\bò\ fÔ,\11»\81\8fP\ 4ãe\83\\\ 4\ 6\9f»0\ 1#.\9bf>\8f\10\8aÜ.ú©\ 2©÷\9a\b\ 6\8a\95­êOQê8c\97>\87¦[\fÂTF\8cu\18\7fDú>.\86@\ 2×i\ 4M\ 6:Å)ÃNtê4º²«ráYY¢y|ÿ\0{«çHoaÀ$\ 6f\93Ã\ 2`\8d\ 5Û/ !<\1fhë¨\8a\15 ï&#è[5\ f¢ÕÄ\99ío\12\8e\ eh]ι(Zåè³av\00g\85µ\11\ 2%Bb\9cÒ\85B\98+\'ò\81T       iýùs\9e\a|hvJ\16\9bò\12<M\85\11\80ðQJ\1e{ea\8beÉwÄïÒÙÛC\e\81wEìi\95è\8fÁóÇõ\96<k*\82\a0\9d³Æyia\83Ö(\83J\14!£G3qÎ\v\ 5:öô\'°Ó\93̨¯C\n\'ªÅõ~`B\86KMºFÃÖ\9e¼õt¡\8d\ 4/áCö>?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 1\1cp\0\b£B$\0    8@\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\ 1\0\ 2\ 1\ 4\ 2\ 3\ 1\0\0\0\0\0\0\0\ 1\11\0!1 AQa\10\81q\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ùPå\ fË3¿«M\8e\16\ f\1e]`\9c#x\88ß×X\ 5P?ß\95ôo\nõ¬.;\vÒWç\a\1ddiù{i\96HN}\ e9¬&\14 \9e \80\85V@÷³\\ÄdÁ\e;3ï§Î\90\10·(\ 5\ 5\8b©x\vNéiTÜ@ÞÔãJ\9e|\10`¬+K%¯9\9c®-\8fR\98\8c\8a\98²@Å01ô÷µÌ\15®\94å\8e3\98F´9\17        £6/B\18à½ò9a\ 4á    ø\9aòb\82ø\17|hï\96e2Æ\fe£]7­À½ûÀ\ 6\1cbEè|\89\89E\18q+\ 6¤ÃY§FéG\15\99\83K5;\8e\aró±ÌÑö@à\n¢\ 5\14¬\8f^\v:i=\97î±È\0:\ f\Z\ fç×BaDë\v¨B8X\17·FÝO\80ítâ\81dV\95\9dr\96ºÏ\'8\97\811\91²Ïª\90\bõ´Ò\a\86\8bÉï?\bßÏ!e\89àÝ\8dì\9a{e\1e\11û>\14\17À¿¢á\85#lm\ 1\88Î8§\ 3\"ÖL\91Î[\7f:\86¸0i\80\9f¢%qjx¼Ñ  _\1eB\82\1fDUâ\11\88\0\84\Z\ f\9c÷\r¶sÃǼyXN3Ä$º­\9dQ)2Z+Xjºp\9c`Lp}ÿ\0\\\b\ZÑ\ 1yÓ®u\8fÀ_Q9\ 4\19(   uº\93°\ 1\81v\a\9c\8ep\0-:\8fõª\94h\ 6½TBª½8\81ø\82\88¥øÿÙ',5,1,'','','',''),(12,4,0,'75354cf677be64c1','1e68dd1e2c32ae390c21fc6911d10461','2015-02-02 12:03:07','2015-02-02 12:03:07','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\8d÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2lk3®\90!b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!#\a\10\"1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤Þ\84á´Æ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\bçô7¶u\84ï\8fÎ\16æGëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&·XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨Ow@8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]XUÆ¥«bêÙ\nÁ2J^B\93Jµ®\8c\97ÅÑa\87Y0S$+`\81\11HÉO»Pé\9a»~Ðr\ 2î/|í   ÉcÎ-TQ\17Ð6\r}±\1fÑ\ e\92\9f\97\14\91*\9a\87C¶Æ\9cÎã\1c=;\15\e\89¨f©ø [[hîåË®\9b\ 1\1f\83\8cG³L2:Ùÿ\0iÙ\14á+\19Ï$Ô¦«t\8eÛ\99>g\9b\8f\ 3;Tv\eø\96\10X]%Q½ÏÙÈ\92µk\96Þîý\92\97ݱ\ 3ô\ 3,\19ô\82fd\15°ffc\9f»\'\9cÉ·£C\13FÅûlùÌ&²É\87¶>£-»@~ds\ 3\1f>\11¬µ­ËØúy(\e\9a\7fDcí6\8d,v-Þ¥\'g\99XÂÎ[-a\12·XCÝ\14*ÉJb\9eýÛl3\e\8c£A\97\ f«q\95+%\f¶ØçêYbÀMçñ\17ÆÙ\"ø§Ï\99ãLæñ\17Q\8dÕZ/.\19\8c\r«`l¢ùÞ©³\8eÈ\ 2½nÖؤ#ª\9fU$0b\'\12a5r\Z£\eg\1fRaa\93ÈÒ\98Éã1M-¡Ô¶Ål¼º\eçøòÇÂ\10¿RìÕ\ esÂÜ\93\ 6) ,[\0 \80Àãp\98\10ó\82\12\19\89\82\8f\1c¼Ç\19\\`ó\98½oO×hÇ×]\9a\93\11\16\97\95º _´§\9f\ 2\ 3\10\"\"\"#\11Ê\"\"9DD\7fH\8f\97¾Í+J\a\87\96\f\185\ fY)«1\9f\ 4&\ 4BQ>&\'\8d-JÉ\99\9e7´æs2]:ÏrP\133çÓ@,#ô\18âk·ÈI¥\9fä\87-áþë\1fºªªðµDÀÿ\0s#ÿ\0¥ÇÿÄ\0#\10\ 1\0\ 2\ 2\ 1\ 3\ 4\ 3\0\0\0\0\0\0\0\0\ 1\0\11!1ðA\81áQa¡Ñ\10qÁÿÚ\0\b\ 1\ 1\0\ 1?!\98ëß=åH¾kzí\v\10¢LËLâYã2Ð\9aÄ\879\89ç\9dúN\9cçö_àÏ3Èb~\1dÆÊBã¦ÊööM 5ÂþfBøbD\89ÈÒ\1c¢\1co\ 6>9Îó¤B\ e}\rÏ\v\11`¢\"0p\ 1IAͦH9 Ë\0f¡T\7fA\89\ 4×fÝ\97õi$\17\nñÎn\ 2\86¡È(v±\10Ñ\7fO\83Vèãq\1eã¥a\84\8dz5¹X\e\r\8fFD1_8\19\82Ô7{\82è\80\14]óÕ%cTÄn\vÙ/p°Ý\a¤\96.\b³\ 4<3\0\0\Z\ f\9e}üATö¨\9fJĤ#p\90\"\98±\n²[\8e\92\16¶q¼\9dÙÞÕ\ e\9f\9a\9c×9¸éýzCR\8aUPÇÉ?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ²ñ{\96\8a_\v$\1dÔÇL¸YÐ\98mº2g\1e#\8dG+}í\9b×ïò>=Ôp\9c.¿Ý\1d{*Ð=çë#\b\"ÚT\1eÁ§Z\ 3³Qô\rÎ;G¿ \17\'ÝÍÚU¤\96é\15¸¯ß\81¼úó¼S\85±ÃÆô<<_t¯\90L\8d\"4uHÅ0B\8cÌ\9fS¢Exêi\89P\88Ä.Z<\ 6Lzÿ\0c}CÎøèðõÝÍvÇ4»A\86\15§ËÒ8©\81Â.[¸Øãj3ÝÖ\aÐÅèÿ\0B^ÿ\0³\'¤ ¹\82À2;·af±\98ó(\82·Ø g´\r\v\8cbBr駲ä)cÃWÂ\83ª\ 2\ 1\12¿\9a\rÚyg\11i»f½qÃ\9bøéyáS\8fì& £¨Þ\ 5\15Z;º\8b#Pl\b,í`0dÙ´sp¹B\ 1kA\93\8e\96|}ñF­£÷¾ûäÅëç³ù µÔ$\ 3(0øN³7Å\ e|\17Ï PÁã.kÿÙ',6,1,'','','',''),(13,5,0,'51854cf67b60ceec','2943d936c14c4ba3af6d5acdad543952','2015-02-02 12:04:06','2015-02-02 12:04:06','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0      \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Õà¢ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK\93\1eå¿H®\8eÝrË\8aÏÑ\9e\15\1cqi÷\11·9\18Â+sJG#Hq\9b\18\19ªIÃ\18±\88\90ZYs\19\9cYüça±\82G\8dÎ__\14\94¶=ï\1d\14\r»Jÿ\0,{.1äì\14¯\9eÝÃwd.ÿ\0æ\9f0p\88j|¹Zà\9dÁfx¬\84\fp£x¤)(¦\94\99\9d\93zëÈKx±×-í\0XÛ\r\8fM¢fbtEuæ\98¸2£\7föNÃï\e/4ì·#§ÖN®\nG5æ\9c\89̲OìÜ\86~A\8fdJ¯F¬A,\ 6\ 5úmSç\ 3Z3¥<óXã\1cì6GdÇ\1eà\93\18¤\a¬\14·T\9føÝ\11ßÉÂè[áäÉ\b¼\9aêÕ¸E)þR\9e\96\14L\\t_!\94\8cݠˤp\aøÚeùÑBøq_\9b+D\12VË_¯&\\xl~m\\xÒÊÚzì\84\91Å\91ɧ TÚ¹\v¤È\952t¸>&Æ\8ew´a\83-éU\ 2*\94Øn¢\85G\84\1f+Íîé\94ä/­aX¸|R\9eÕæÂë¡\fDu\96w\1e)\1d·RêtíÜ¥\99a-`\86±3Àôxã® \8d^¹@Ç\ 3\Z¨Ýèçp\16±v\98)\"öÝKíõ(G\b\91±#{<Ç4ÒÚ[N¿\1ey°ð\9a)\10\16¦Ë\8b   ò\9e³R»\91ÄÚL\ eÚ$íþ;\86V5Ú\9f礼\97ïF\Zj\93ðŽÛ\ 4/óìwóÑÜ\93ïµ5=\'×\86{¦1´S?SÕU\94P\9b_\aÿ\0\9b\10w?FÑT³ëZyã\1ceC5{\8d\ eû.ojSÇ}m¥kû?ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0P\10\0\ 1\ 3\ 2\ 2\ 4\ 4\f\12\b\a\0\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14#\a!$0\15 \"1234BCScd\10\16%ADQRTaqst\83\84\93\94³Ã@Ubru\81£ðEP\85¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04ÛîÙÆ1 U\17\943\13\9fØhÐX¹yô\rë¡\ 3kZ\92s4JµRîIèaÀ¿(!\b\12N>ñ³W@µ\8a±`NW\vÊnÌj\98|ì«ñcÈ;|Úü\e6\83swØ\11\ 5õY\84\9e/Dµ?\84ì.j/¬¹mú\11-ËiMäoC\v\9d[;xe\1eäÎÇá\9fW\88ícëÅNêw\856fÎÜKÏJº\96\92r­cºx\\âW¯»\1f\16äTÇ\88\0äôÇJFB\ e\80d,µËM¹I*Â-¹q¦ò´íÏ\1co6Xúr\97XcÜtræ\83L#\ 4;\98Põ_\\/P3I»_\85Ë/°Ã×Ü7Ã\ f_hÃ\1fÐ\9fO\'QS\ eUÐÈ\ 6äð²\8e\86\\¢\17\1f\ 1\1e\Z\15û¯\80;.<¦\9a<\92\92pg\92\ f\8eG/\1d¸V¹Ü8)3JRü\7fßµH«R\16\89SÉ#j¨Ë¦¸\184\16õã÷\\\\Al\n\10Õ§·É©\8b\97\14Ñ\85µ\0Þ\82fÕ5QÜ׺¤\9e\17\f×ï\vÅR\9dÇ­ë5¦KF¼\95½)èV´¦µ}Î\9d\ esÁrØ\ 1j^Ã--1µ1\91\1f\8djH¶û?ÐtKi§²°Ñ)¸,vËn®Úhy\82\80èù6¯@ã;ïM´Rí©NZ\11P¯!\1f§b\96f\8f\8e\86\ f\97láËo\87\9eek\88\95S\eV,zÃJº\8e\89Ëå<1~ãÐð\7f/Aýúð\14è\8dʵ³\8cR\93¼\14$yr\8b\95Çþ!(\"Ö¿\ 36ý#»~ã\8do\'\18øZ¥\ 1\91Ø\13\8e£3bÒ\99Àp\ fb¸oÊ\ezÚ\Z ºî!ß$\8f\1d\8f×íEóØþÐî\94ò\ e¸¨æ\9a4\99\86zhé&\ 6AÚ»n­B\ 5\7fÊ\9d«È×\8bF³5¢\ 34É[\rÀÌ}\88d\ 2\8ao\85O\11 \1eP×Úßµö7;Â\11É\\uny\16Éù8òlbþ\88\ 6\9aUJZ\90\9dòË¥½o\ 1\14Há¡ØGu=úÚ6\10\8aO§6iúYi\n\ 55\92´\96\89æ$Õêöpîe\85ò;     Jããf\ fBjÞª«²ÍÛäs\97Þí\91\ eBP\93ì\1d;çx@\ 2©TëÜo\1f\'\8bÁÉeH\8bþÞ\96àÉÚ×=\10\95~æÞ\1e\9aþ«\9c2=\'\\\99\9aßÁÞz\ f\8eÏ\ fm?YUÞfH\15£@\8fñ~Ë\9d\89¼\ 2>GrG!\9b¢%;´JDn·¿8bV\9f`}\Z»Gljå»\91þøKBÓHÙfª¢ÛJG4\91n¤ö\v\ 3¶Â8ÿ\0ؽ+È!\16\94\98¼\89Ð\96¡J·\88\8f\11\ 4iw?#\91\94Ãë Ó\nuô¬\8c¸ª\19û¥mä^\ 4\89Ô38ñ#Ô\86\ 4ÇÃd\94Î\1d|/6Z÷7;)o`\84I\8fÕ\b\'\nÃs.×7\'¯\8eéÆ%nçÍ\8d\8fÄò6@\ 5\89ÈÙãc\'PÍ\9c\b\99E\11t\r¸ä鬽\98¾\87\11\nVð°åßD¹ÃÅ\ 2\99Ñÿ\0\ 6Æ\1f|t\92s\92EÉc\10ÅÄ\8bÂ{\86í\a\9c_ÃÑõÇ,º¡$VDT~¾¸\"¢ÄBÕ£\10ñùZ\9dÑý\94èÇuëá¢xGº[PÑí\1djÚì\f\9dÃç\8d    ½\94t>:\18\r\8fÉÚ\ 3­WA?½©¥9é\ e\12íô¡¼¼S\\û\89¢S¨9Xö\9eÏùìx:þúj/7¦\8c.hÚ,Â\1f&\95a\9b¨\89(²×\95µ/\95íN\Z\9fØÎ\84\r\"g\18Õua1\1cÒQ\9dH\9dEìò\rDì9\83âãÉ-?¾?Fä 1FÜö\11\89ÕNËg,£B\97ðr?\9e\83\n8ÖU iú] -ö\94M\eCÅ0`-TöY-\84\"\97ãplÓ×åyÅ\10«B\ 4\84ë(\8a\12\8d\r\1f\f§\17\94¨«ªªD¨h\89\11<¬±·&ÿ\0NnëãÑ/bmË_\83û|ýP$n\16ÏÝ>(|cV\86>qúý¿¡­\9aèx[æþ\98\9adôyR-!#¡í¦\8eÇá\e\14\80néþF8îz% Éé\\®j%kr©\89\93\r\7f*-»{ \Z¶\12\0Ù¨Ð\0\0iÕ\18@\14PA\18Çâ¨.*z7t\ 3Af¾4vÝ\1c4öe\7f\12ä2M\e\ fç5i³ý6\81.\18\11¹Æ]ZøÁ\13\1d\"f\19\11%g)\1cÍûR\'¿\ 3¶Â0¿\17\9b{-,ì,#£ÀG/\1d8V \e\80CÍ)Kñh\9b\14\88m§o\12Â:%¦ºd®\"W¬æW\'\rÏ\87Ø;\99¢z§xÖ\98Ñ´ýÖ\16³×\8dR\87 IS\9d\13\ 2O\14Ð&§-xßõ\81þ§³wK\9e·O!~XQëzÉéHòvÝf<Çm\1e\13zíüP\ 5ÛÙ8®ýÓ\16ø¹jç>­1g\\\Z\83\83{ÕØØQ¹\16;jYê¨\0!\ 6\'\1c\97\88\eìvC¸ööO{iJҸҼи2\89sD²\8eÈ\7fr¨jî\87åßÇÆ\13\8f´Ç\83\9e¾.\8e\ eµ[h\vÖy¢kuÜ-\90Vh:w\90°\86íB\17\16éä\88ppëͲ\Z{ë\9a[\9b\8eÎ\8b\9dµøRXé\"ü´\84a\9a¸7Ö\1cWJ0¶§.ȶ\88\e.t³`l?\14Ñ­Ì      ¶íÃóvôÐ\92vMÁoÞ@\12u\95nÜp\8d£¤\94\8f5\90\8c<kw\86ùÇC)¥m~\10áÍaO\8cû\19\béDèV×â\9dç\81»\88SWÎv\86ÞwÇ¥\16\9aÒ©¯T\95\'¾é¤%\\W\ 6ѬÞ>p¯r\ 6\82)\8bøZ!ÔÒ*é\99¤ßÝ÷\ZUÕ\8dm\ 2ëkÙIä\1c¾+F\1f66\98R\94¥?g\9cãÑÍÅ\nÍ\ 2½¡\9b\10\8dH\84ê\12\87½\8bu\87n>\14õ$þùä½ÊçBðgpºY\1c°lG6Ã\87\nßlm+Êá\8bónèií6Ú\Zã\83fÝ7\bN\aZ¥iµe\ 4\95\'Î\9bd~n\97ÅÊ´o\fæ.\11©=ÈÂ#<v?ë4û.~(ѨÉk#uAʶ\18ú\84l\979D\19\11\vÈçº\90\a\ 3|1×´\'ðýñ01\7f+I\17\15§\e˾MTWº\18XD\aþsyþ\bëÇ\84\87¥4«WÍ.×\9f\93Ó\\¬°¢¶»~a®ª»ìæ\ 6\16\90ËÃ\r²NqÒ¿k\97\95\9fþ^\7f\80#×Â:\94Ocú ¡\92üÞ\99À«Mj\14\ 4\16¯ºÍ\1e\96\83J¦©ªE(U%^VvH¼ÿ\0\ 1ïkJr\17\97ç{ã­Ðå~\17O\r\19TU\15\89ÕW{Ê\8c_Íçì×øSÔÇ\13\8aûÜ9\83Óñsô­iLSØþ\95ÿÄ\0)\10\ 1\0\ 1\ 3\ 1\a\ 4\ 3\ 1\ 1\0\0\0\0\0\0\ 1\11\0!1A 0Qaq\81\91\10¡±ð@PÁáñÿÚ\0\b\ 1\ 1\0\ 1?!ý «\91\Z\ 5ËG(\80Må¨ô(MÇÆlxSS¶\ 1/\8eÞ\89ÎjÞ½[\7f©|¨ü\eË%g;        \11I\8a\91j\9a}¤e\0\90\10\84Z!\17ë`\81\18\81\16+p¡\12\ 4\17̬£\"ÒÐ~\r\92\17ÚY   àÙ\84\vN¦¦Y\95*c\84\14\b\90£\9c\16\89t$Â6¨\86\86öy@¥\8eW È\ 4i\ f\19\9c\90\90¦\13\9d¯¿¬Ã\99ݹA£$4Ì\90,3+:\rèF\94b4\11iÎÁ\'Ó]¯`\9dC\84¤ÂÖ}VB\"Vd°&`·W\8ad\8341\\¤\9acb\n£½1\ 5\eXmFd.\12 ×¸ÄZ&\8d\85¨\9dìÔ?Vò\86Oöë ù\ f\ZT¥?\98.®·4fë0L\e\ 5ñ\ 4¯\8b\8cLHo¯\13è¹.\97i\b\8f8Þô\9eR\90»\ 3þÓmåp¾Û]¯.\8b_ÏF\ 6&2[=ü7¼2\f\1d\ 2Ð8ê9\90¿µ\ 5p«¼!\v\9cÞÈG,ì\94U\0\13é\ 3\19\13®,R*   wB¯¹ YRjÍéNÔ\90\ e  °       \98XHQ1£¨Ê\9bÙ³tz]\1dn?)\96γ\83­\83>¼êí\"\9e\8a·\7f¹Äë,(\95\12)f\8fÅe\8b       Ô8\90¨\eÔS\95\82Ø#Æ\81\8e½\9c½ýû   %zdµ-dL¶Ï\82s\98¾rô~-\99Öõ²I<\93^BoYý«i¢#8\17Ém\0±»ë|Z\9d~>f\n\82\96»£\12\'p\8asbÕûÍáâ$R\bN\91¡{µª[À\10c´Ì\85¦\9eÑ×H\80wÅêÃúÑ\nð\ e\ 1b-:z\'M3¼\9e(óq¢\ f@     \83Ñ=«ü\19\96\v\ eïP­\1e±\ e\84¶Jy±«\92\17\84S^\94)\99\Z¼$#UlH1j6\83U:ÿ\0¯ \19&¯AE\98\ 6·\ 2\'¹Ã\ 4±\ 3vîý/\83.\\\11X`\rsÞ®Æ\92\9f#\9d\98\ eâ\1c*v)g^bæÔ\96#Éðì\fè\Z\8a\9f$3\16ý¹y9[\94\19?¹²©\b±Äâ\88õú\16\eXíÂ^W\8asÞÏ2\1c«Ø\0ßcð\e\ 3Ù¹\Z\"¸\92AÞI(Úë°\91 a\19E +FÏ6\9c9J¼ëT\biâï\93E\8d§\93ì#\90È\Z6P/³ÿ\0÷\97j\81Ù½ ÞÏ£~\7f×\84êl¢?º\88çâ¾/Õþ.ÿ\0¿ð(8\e<»­&\95®M\0?\Zïÿ\0Þå\17ï¦Øç\1cãn\7f\85Of.þWÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0â\0\0P\0\0\0\0\18\10\ 2$\0\0\0\0Î0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 3\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 3\ 5\ 1\0\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10\91¡@±ÑáðPÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5تf-:\13Â\ 3\ 6`\8a\"è\88\18\16#J\81Aw\81¨\ 5\ 2\84\10°2Z\Z!cX`åÚúü\1f¡­]\ 5+\eNC\\º    \8e8p\1cpÄòA¡\ 19¹±V\97÷Q\9ea-°\82¿^¥sÚúü\1f¡\95\9f(\86s¸È\ 6²TFâe\"\94\99/\ 5\r\ 6]ò¹^\1cõM®$gî~\'Ñ8\85\ 1\e\8a¾\9b\9dï|áÓÇÀ+\98\\\82§%ãzÁ)E        ´´\ 5-@ÔÆÀG${LñHSVÎ\13\9fÜÈüukò\"\94PQT \ 1ÏÑ\89\8cäú\84#- (|\13æCÐ\ 2÷qú\173a*ä\9dX¸`\80Á:$æNÝ\10\0\r¸\ 3\98Ï¥I*\17\ 5N\88u\14®1onç\ 3tnc\\\16\8f3T¥X<©\ 6¥+fSÑhä\bÀ<;¸RÁiB\92¡           ð÷øÒéßØ­Ç!t     \ 5\b=Dc\95d\\\ 6\0°­¨\"F\9f\14åv\8d\8cñc+ò \87Û\86n̺áïñ­û`C\17\82ª8Õ\ 4à\ e¥ î\ 4\ 4@\ 6ÿ\0* Ú.é\840\8a\7f¥\9dôÏ=â\ 4S\90\85 J@<\ 4\9b¢\13\94X\nL\b@²Zg\15\1fn=ôxÒ ±P[P¥Qê\1cÀO\84 ªîC=\\ês\12jCv \90\95\1cbÂU)E4Î\'³øþ~¢Û>Ìè\97w\80ÊìK¤ºD,¢HËr0\ah$u8\810\r\ 3 }Ù/«ýwÏV{¿\8fãA¬$¤\88Æcd\0:        \9bï+Q\100\13=\95\983ÀÙPàR}Kç\98¼e\ e\ 4ÈA@\80ô!w* &b9ç\ 5ßm/\84å\1c\111\"ÄÆ:\83\94ÑÂ\8b\Z\80\ 3L\1c\ 6A\8a\8d³,\11,\ 36\03º\82\9c\ 4q\ 3rhº-O3@ûÎ\18\13\87L\81\95Ë\"?«\80+\80\9a\n¡jâ»r\n\10\89õÛá\14\9b`=uY\0ëd»\v\18Êãq\1c*,ÎJJ\90±¸Ë\8aàC;¯HÔtZ}!\ 2È3-\1dhÝBù\ 4¡\87¨:`f\ 4B!·($mQ\1f\82{^\'?Ûâø¾4SÝÑÊÇ\n)ÝDí\86c¨\'\84`c- #Éÿ\0lys\9dî:#¼¡aª\81¹T1=\15\ 6Ô\vo8§Ñ_%ªA\94g¨¤Ò\ 3\fÌ9ɯ¶\10n\94\nê¡0ÿ\0\ 6fø\"\n\1343h{a4DkA\ 6\v# @ý\88LKmpµY\99·\88Ñ&%\ fMÌ~ûö08\82J)U.dz\80\ 6Ø,L3¿&<÷~ýLxóaøÞíßíä¬0òG!\ 5\ 4/V\9cú;Æã\83Rl\17ÍóáÌJ\16Ep娲L3\9d\11cÏ\n9\98\13\90\9dm¿_\97B\99-ªõ\91<6\90k\7f×äð°­S2\83w0\84î\ et\8c­É\1d\11ç\18íYpë\ 2\82Û\f£Ü«\8eìÅ\9bþ¿\'\84è\94I\e×2NÇuç ·\9e¹ß\8b\8cÔíöÏ[ÏRVV\8a«Ø\e9\9bëð¼;wÎ\e#¶à¤\99\8dí«Wb\8d\1e\9bl1=Ñ:ò§¥ËÕ\18\8a8\9c\0ñné8ý\9c\'Î\9a\1c(ãæ)\84o\13®W\8cÓ½Æ÷É\8b«Ç\8c\ eø\9dÿ\0\9bó¶Ø:è©\912¤á¾Äól\7fUÿÙ',4,1,'','','',''),(14,5,0,'51854cf67b60ceec','2943d936c14c4ba3af6d5acdad543952','2015-02-02 12:04:06','2015-02-02 12:04:06','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b  \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà0Ùæ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8c\1cî`Í\0\8dw\ 4§1Ö¦4i\14H\85\ 2A\89\1e\rÄ®öÅ»-W\10\1d÷\84°\93zR\99\93ìm%Øåhô$¶\\Ì\ 1æÑÄÏ×   \"¼6\85ô¸\1c«\17ò¹.\a\8cø>ò¬g¹\ 3\8e\94öË¥=üÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\09\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 2\v\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa$\91%0CRqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þµºSI¦¦[U\0Dݳc\931Ø> ò\ 5±k!\9by\1e\13\aá¹\8a«A\ 1X\93-ëö\rY¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ    ÆÔ±\92°¥ÿ\0m\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɽö\a1\93±\95Ô\16äç¬t\93,¿\93d³Ô[k\89 \19ù]`\vµzT«ª­J¨MjÕ\90\10´¡\b\bZ\92 \1d\84\16°\18\0\18ò\81\88\8eÍÃe\99z¬ñaS¿\8f¶êÖiY\91ø\1d\ 2\f\14Ù\b\9f\9e½\90b\98>[     lcwMä2·2\98üFB+ä°¶ì¾Æ7%\8e>\fUÌpÙ#ð-³Q\81\84tÈH\85vE\90&®ØÌÕ\ 3êQËQ«\91¦ÏI*×\12\16\133\1fIàÈÞ>\93¼{º÷\1dTHì;Mä\18\95\87Ìè¿\19\v\18\8fYgC\84G×~Ù\bw\1e¬é\1c\9f\86ß×\97\8fÅK8þý.^\9f\97\7fiס\10ËHÀàéÝ\15G#+Åâ\1cµÌ\ eó-ð\96)\8eÞs·\11ý»hÌ\1dø!»\8cÓ\98ºÖÀ½W`j®\\¯úY$¯øû¤\ 5\10BQÄ\84£q\91\9f)\89\8f¬LzÇ׶\1fZãë1ú3!\93°ê½\r¾\Z7\84×\97À\9eó\11\16©×q¶\87Rx=aY\9cù.À®\86_\15d.c²U\11v\95¥ü\8f¯`!\8a8ßi\8dÆ|Ä¢\bKq(\82\89\88Ôú \17\ ev\17\ fnåe\1eü\19lC\85@fÛOH¬\9a¡»L~\1f/>Ú\83½MdE\98µ\8dË\ 4Òñ{\18ØÔ/Úëò\ e\r¸OÙê*þ\11;tA\8f\12\ 1\1f\n¨\8frþ Ô\17\17C\15\8eOZÃÏÖ|ø­)\bø\9d\91R\12\11\10\88Ç\9fo¶qÏ>ì{¹a\97ÙÖWR­Íc¨«\89LuÔË˱C\15Q\91\1f\ 5\85UaAy ®/ñ\86­MGIº¸*\115GªîZÏL<Ç\81Ø\15^k*%¤;\8fðÕ\9003\"\"#åÚ½\n\15\91N\95D\85zµ*¨\11\15\1cV\94©q\0µ\80ÆÂ#\11\11\1d³ºfé\12ëg1w1ÆÑ\8eD\89²¢\ 5Ø\ 1\9f\":íàà\89ò\92\b\89òí¨{§ï\ 1q\84·\93Ê\ eSMdìî¬Nm\9d\15Ózhßg\146l)5]P7\16IËë4Wj\ 5\13îh¾ê\18Lû¯\82Ç}ôÕª\ 2!\e\7f\8aÅU¨Þ3\13æ\10\84\fÆÒ!\95s#â\\lªÕÔ  B\16      JT0µ©K\18\15­`1\ 2\0\ 3\10\"\ 3\10\"1\11\11´{\9e\1f!R­Úó12\8buÓe31é2§\ 1\84Ì\7f\87i\1c\9e\94Ê!\7fÑùm5qØÆVdGáõéWbèd«DíÔ«z»Va\1cFU;\18êNîõØ£ïÆ\8b$˯V_F¶¢ÂÙÛÁfë¦\"\ 5dpJñ@\ 2\0%a;\0\1c±Jöw\95\94(ÞKFè¥(§ò®É^\ 6\0ÏèG\89\12\9fÜ}úÙ5\ f\bµÝ\ 5вQåÕe}YAkçúÈ­\83\11¿ÐcÛ©²»mãôÞ\90«¿êToêò8ßoîÚO×Óo~¦c\8fɤ28Þ_êfqv`\7fò\99öÉí\1c¦ f~³\ 3¾Ñ¿íȶÿ\04þ¾ÿ\0ShåÆG\97×\8cÌLÇó\88þ^ÏÿÄ\0\1f\10\ 1\ 1\0\ 3\0\ 2\ 2\ 3\0\0\0\0\0\0\0\0\ 1\11\0!1 A\10aQq\91ÿÚ\0\b\ 1\ 1\0\ 1?!ð§äþå<Öw\ZÛ*íEWUÀeèý    )7×´\9ceÎu\ f\n»v_#\18Þ\11^oÉÑõÏ4\1e\88»\'\Zà\1es\fÐm\98æ\17¥\817\98\Z ¡\f\bò\ fÔ,\11»\81\8fP\ 4ãe\83\\\ 4\ 6\9f»0\ 1#.\9bf>\8f\10\8aÜ.ú©\ 2©÷\9a\b\ 6\8a\95­êOQê8c\97>\87¦[\fÂTF\8cu\18\7fDú>.\86@\ 2×i\ 4M\ 6:Å)ÃNtê4º²«ráYY¢y|ÿ\0{«çHoaÀ$\ 6f\93Ã\ 2`\8d\ 5Û/ !<\1fhë¨\8a\15 ï&#è[5\ f¢ÕÄ\99ío\12\8e\ eh]ι(Zåè³av\00g\85µ\11\ 2%Bb\9cÒ\85B\98+\'ò\81T       iýùs\9e\a|hvJ\16\9bò\12<M\85\11\80ðQJ\1e{ea\8beÉwÄïÒÙÛC\e\81wEìi\95è\8fÁóÇõ\96<k*\82\a0\9d³Æyia\83Ö(\83J\14!£G3qÎ\v\ 5:öô\'°Ó\93̨¯C\n\'ªÅõ~`B\86KMºFÃÖ\9e¼õt¡\8d\ 4/áCö>?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 1\1cp\0\b£B$\0    8@\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\ 1\0\ 2\ 1\ 4\ 2\ 3\ 1\0\0\0\0\0\0\0\ 1\11\0!1 AQa\10\81q\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ùPå\ fË3¿«M\8e\16\ f\1e]`\9c#x\88ß×X\ 5P?ß\95ôo\nõ¬.;\vÒWç\a\1ddiù{i\96HN}\ e9¬&\14 \9e \80\85V@÷³\\ÄdÁ\e;3ï§Î\90\10·(\ 5\ 5\8b©x\vNéiTÜ@ÞÔãJ\9e|\10`¬+K%¯9\9c®-\8fR\98\8c\8a\98²@Å01ô÷µÌ\15®\94å\8e3\98F´9\17        £6/B\18à½ò9a\ 4á    ø\9aòb\82ø\17|hï\96e2Æ\fe£]7­À½ûÀ\ 6\1cbEè|\89\89E\18q+\ 6¤ÃY§FéG\15\99\83K5;\8e\aró±ÌÑö@à\n¢\ 5\14¬\8f^\v:i=\97î±È\0:\ f\Z\ fç×BaDë\v¨B8X\17·FÝO\80ítâ\81dV\95\9dr\96ºÏ\'8\97\811\91²Ïª\90\bõ´Ò\a\86\8bÉï?\bßÏ!e\89àÝ\8dì\9a{e\1e\11û>\14\17À¿¢á\85#lm\ 1\88Î8§\ 3\"ÖL\91Î[\7f:\86¸0i\80\9f¢%qjx¼Ñ  _\1eB\82\1fDUâ\11\88\0\84\Z\ f\9c÷\r¶sÃǼyXN3Ä$º­\9dQ)2Z+Xjºp\9c`Lp}ÿ\0\\\b\ZÑ\ 1yÓ®u\8fÀ_Q9\ 4\19(   uº\93°\ 1\81v\a\9c\8ep\0-:\8fõª\94h\ 6½TBª½8\81ø\82\88¥øÿÙ',5,1,'','','',''),(15,5,0,'51854cf67b60ceec','2943d936c14c4ba3af6d5acdad543952','2015-02-02 12:04:06','2015-02-02 12:04:06','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\8d÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2lk3®\90!b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!#\a\10\"1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤Þ\84á´Æ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\bçô7¶u\84ï\8fÎ\16æGëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&·XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨Ow@8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]XUÆ¥«bêÙ\nÁ2J^B\93Jµ®\8c\97ÅÑa\87Y0S$+`\81\11HÉO»Pé\9a»~Ðr\ 2î/|í   ÉcÎ-TQ\17Ð6\r}±\1fÑ\ e\92\9f\97\14\91*\9a\87C¶Æ\9cÎã\1c=;\15\e\89¨f©ø [[hîåË®\9b\ 1\1f\83\8cG³L2:Ùÿ\0iÙ\14á+\19Ï$Ô¦«t\8eÛ\99>g\9b\8f\ 3;Tv\eø\96\10X]%Q½ÏÙÈ\92µk\96Þîý\92\97ݱ\ 3ô\ 3,\19ô\82fd\15°ffc\9f»\'\9cÉ·£C\13FÅûlùÌ&²É\87¶>£-»@~ds\ 3\1f>\11¬µ­ËØúy(\e\9a\7fDcí6\8d,v-Þ¥\'g\99XÂÎ[-a\12·XCÝ\14*ÉJb\9eýÛl3\e\8c£A\97\ f«q\95+%\f¶ØçêYbÀMçñ\17ÆÙ\"ø§Ï\99ãLæñ\17Q\8dÕZ/.\19\8c\r«`l¢ùÞ©³\8eÈ\ 2½nÖؤ#ª\9fU$0b\'\12a5r\Z£\eg\1fRaa\93ÈÒ\98Éã1M-¡Ô¶Ål¼º\eçøòÇÂ\10¿RìÕ\ esÂÜ\93\ 6) ,[\0 \80Àãp\98\10ó\82\12\19\89\82\8f\1c¼Ç\19\\`ó\98½oO×hÇ×]\9a\93\11\16\97\95º _´§\9f\ 2\ 3\10\"\"\"#\11Ê\"\"9DD\7fH\8f\97¾Í+J\a\87\96\f\185\ fY)«1\9f\ 4&\ 4BQ>&\'\8d-JÉ\99\9e7´æs2]:ÏrP\133çÓ@,#ô\18âk·ÈI¥\9fä\87-áþë\1fºªªðµDÀÿ\0s#ÿ\0¥ÇÿÄ\0#\10\ 1\0\ 2\ 2\ 1\ 3\ 4\ 3\0\0\0\0\0\0\0\0\ 1\0\11!1ðA\81áQa¡Ñ\10qÁÿÚ\0\b\ 1\ 1\0\ 1?!\98ëß=åH¾kzí\v\10¢LËLâYã2Ð\9aÄ\879\89ç\9dúN\9cçö_àÏ3Èb~\1dÆÊBã¦ÊööM 5ÂþfBøbD\89ÈÒ\1c¢\1co\ 6>9Îó¤B\ e}\rÏ\v\11`¢\"0p\ 1IAͦH9 Ë\0f¡T\7fA\89\ 4×fÝ\97õi$\17\nñÎn\ 2\86¡È(v±\10Ñ\7fO\83Vèãq\1eã¥a\84\8dz5¹X\e\r\8fFD1_8\19\82Ô7{\82è\80\14]óÕ%cTÄn\vÙ/p°Ý\a¤\96.\b³\ 4<3\0\0\Z\ f\9e}üATö¨\9fJĤ#p\90\"\98±\n²[\8e\92\16¶q¼\9dÙÞÕ\ e\9f\9a\9c×9¸éýzCR\8aUPÇÉ?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ²ñ{\96\8a_\v$\1dÔÇL¸YÐ\98mº2g\1e#\8dG+}í\9b×ïò>=Ôp\9c.¿Ý\1d{*Ð=çë#\b\"ÚT\1eÁ§Z\ 3³Qô\rÎ;G¿ \17\'ÝÍÚU¤\96é\15¸¯ß\81¼úó¼S\85±ÃÆô<<_t¯\90L\8d\"4uHÅ0B\8cÌ\9fS¢Exêi\89P\88Ä.Z<\ 6Lzÿ\0c}CÎøèðõÝÍvÇ4»A\86\15§ËÒ8©\81Â.[¸Øãj3ÝÖ\aÐÅèÿ\0B^ÿ\0³\'¤ ¹\82À2;·af±\98ó(\82·Ø g´\r\v\8cbBr駲ä)cÃWÂ\83ª\ 2\ 1\12¿\9a\rÚyg\11i»f½qÃ\9bøéyáS\8fì& £¨Þ\ 5\15Z;º\8b#Pl\b,í`0dÙ´sp¹B\ 1kA\93\8e\96|}ñF­£÷¾ûäÅëç³ù µÔ$\ 3(0øN³7Å\ e|\17Ï PÁã.kÿÙ',6,1,'','','',''),(16,6,0,'84554cf67cd393c4','c80c222d7c06a142719eb8b2df65808f','2015-02-02 12:04:29','2015-02-02 12:04:29','','','Profile Photos','person-175.jpg','image/jpeg',175,175,5531,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0      \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Õà¢ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK\93\1eå¿H®\8eÝrË\8aÏÑ\9e\15\1cqi÷\11·9\18Â+sJG#Hq\9b\18\19ªIÃ\18±\88\90ZYs\19\9cYüça±\82G\8dÎ__\14\94¶=ï\1d\14\r»Jÿ\0,{.1äì\14¯\9eÝÃwd.ÿ\0æ\9f0p\88j|¹Zà\9dÁfx¬\84\fp£x¤)(¦\94\99\9d\93zëÈKx±×-í\0XÛ\r\8fM¢fbtEuæ\98¸2£\7föNÃï\e/4ì·#§ÖN®\nG5æ\9c\89̲OìÜ\86~A\8fdJ¯F¬A,\ 6\ 5úmSç\ 3Z3¥<óXã\1cì6GdÇ\1eà\93\18¤\a¬\14·T\9føÝ\11ßÉÂè[áäÉ\b¼\9aêÕ¸E)þR\9e\96\14L\\t_!\94\8cݠˤp\aøÚeùÑBøq_\9b+D\12VË_¯&\\xl~m\\xÒÊÚzì\84\91Å\91ɧ TÚ¹\v¤È\952t¸>&Æ\8ew´a\83-éU\ 2*\94Øn¢\85G\84\1f+Íîé\94ä/­aX¸|R\9eÕæÂë¡\fDu\96w\1e)\1d·RêtíÜ¥\99a-`\86±3Àôxã® \8d^¹@Ç\ 3\Z¨Ýèçp\16±v\98)\"öÝKíõ(G\b\91±#{<Ç4ÒÚ[N¿\1ey°ð\9a)\10\16¦Ë\8b   ò\9e³R»\91ÄÚL\ eÚ$íþ;\86V5Ú\9f礼\97ïF\Zj\93ðŽÛ\ 4/óìwóÑÜ\93ïµ5=\'×\86{¦1´S?SÕU\94P\9b_\aÿ\0\9b\10w?FÑT³ëZyã\1ceC5{\8d\ eû.ojSÇ}m¥kû?ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0P\10\0\ 1\ 3\ 2\ 2\ 4\ 4\f\12\b\a\0\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14#\a!$0\15 \"1234BCScd\10\16%ADQRTaqst\83\84\93\94³Ã@Ubru\81£ðEP\85¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04ÛîÙÆ1 U\17\943\13\9fØhÐX¹yô\rë¡\ 3kZ\92s4JµRîIèaÀ¿(!\b\12N>ñ³W@µ\8a±`NW\vÊnÌj\98|ì«ñcÈ;|Úü\e6\83swØ\11\ 5õY\84\9e/Dµ?\84ì.j/¬¹mú\11-ËiMäoC\v\9d[;xe\1eäÎÇá\9fW\88ícëÅNêw\856fÎÜKÏJº\96\92r­cºx\\âW¯»\1f\16äTÇ\88\0äôÇJFB\ e\80d,µËM¹I*Â-¹q¦ò´íÏ\1co6Xúr\97XcÜtræ\83L#\ 4;\98Põ_\\/P3I»_\85Ë/°Ã×Ü7Ã\ f_hÃ\1fÐ\9fO\'QS\ eUÐÈ\ 6äð²\8e\86\\¢\17\1f\ 1\1e\Z\15û¯\80;.<¦\9a<\92\92pg\92\ f\8eG/\1d¸V¹Ü8)3JRü\7fßµH«R\16\89SÉ#j¨Ë¦¸\184\16õã÷\\\\Al\n\10Õ§·É©\8b\97\14Ñ\85µ\0Þ\82fÕ5QÜ׺¤\9e\17\f×ï\vÅR\9dÇ­ë5¦KF¼\95½)èV´¦µ}Î\9d\ esÁrØ\ 1j^Ã--1µ1\91\1f\8djH¶û?ÐtKi§²°Ñ)¸,vËn®Úhy\82\80èù6¯@ã;ïM´Rí©NZ\11P¯!\1f§b\96f\8f\8e\86\ f\97láËo\87\9eek\88\95S\eV,zÃJº\8e\89Ëå<1~ãÐð\7f/Aýúð\14è\8dʵ³\8cR\93¼\14$yr\8b\95Çþ!(\"Ö¿\ 36ý#»~ã\8do\'\18øZ¥\ 1\91Ø\13\8e£3bÒ\99Àp\ fb¸oÊ\ezÚ\Z ºî!ß$\8f\1d\8f×íEóØþÐî\94ò\ e¸¨æ\9a4\99\86zhé&\ 6AÚ»n­B\ 5\7fÊ\9d«È×\8bF³5¢\ 34É[\rÀÌ}\88d\ 2\8ao\85O\11 \1eP×Úßµö7;Â\11É\\uny\16Éù8òlbþ\88\ 6\9aUJZ\90\9dòË¥½o\ 1\14Há¡ØGu=úÚ6\10\8aO§6iúYi\n\ 55\92´\96\89æ$Õêöpîe\85ò;     Jããf\ fBjÞª«²ÍÛäs\97Þí\91\ eBP\93ì\1d;çx@\ 2©TëÜo\1f\'\8bÁÉeH\8bþÞ\96àÉÚ×=\10\95~æÞ\1e\9aþ«\9c2=\'\\\99\9aßÁÞz\ f\8eÏ\ fm?YUÞfH\15£@\8fñ~Ë\9d\89¼\ 2>GrG!\9b¢%;´JDn·¿8bV\9f`}\Z»Gljå»\91þøKBÓHÙfª¢ÛJG4\91n¤ö\v\ 3¶Â8ÿ\0ؽ+È!\16\94\98¼\89Ð\96¡J·\88\8f\11\ 4iw?#\91\94Ãë Ó\nuô¬\8c¸ª\19û¥mä^\ 4\89Ô38ñ#Ô\86\ 4ÇÃd\94Î\1d|/6Z÷7;)o`\84I\8fÕ\b\'\nÃs.×7\'¯\8eéÆ%nçÍ\8d\8fÄò6@\ 5\89ÈÙãc\'PÍ\9c\b\99E\11t\r¸ä鬽\98¾\87\11\nVð°åßD¹ÃÅ\ 2\99Ñÿ\0\ 6Æ\1f|t\92s\92EÉc\10ÅÄ\8bÂ{\86í\a\9c_ÃÑõÇ,º¡$VDT~¾¸\"¢ÄBÕ£\10ñùZ\9dÑý\94èÇuëá¢xGº[PÑí\1djÚì\f\9dÃç\8d    ½\94t>:\18\r\8fÉÚ\ 3­WA?½©¥9é\ e\12íô¡¼¼S\\û\89¢S¨9Xö\9eÏùìx:þúj/7¦\8c.hÚ,Â\1f&\95a\9b¨\89(²×\95µ/\95íN\Z\9fØÎ\84\r\"g\18Õua1\1cÒQ\9dH\9dEìò\rDì9\83âãÉ-?¾?Fä 1FÜö\11\89ÕNËg,£B\97ðr?\9e\83\n8ÖU iú] -ö\94M\eCÅ0`-TöY-\84\"\97ãplÓ×åyÅ\10«B\ 4\84ë(\8a\12\8d\r\1f\f§\17\94¨«ªªD¨h\89\11<¬±·&ÿ\0NnëãÑ/bmË_\83û|ýP$n\16ÏÝ>(|cV\86>qúý¿¡­\9aèx[æþ\98\9adôyR-!#¡í¦\8eÇá\e\14\80néþF8îz% Éé\\®j%kr©\89\93\r\7f*-»{ \Z¶\12\0Ù¨Ð\0\0iÕ\18@\14PA\18Çâ¨.*z7t\ 3Af¾4vÝ\1c4öe\7f\12ä2M\e\ fç5i³ý6\81.\18\11¹Æ]ZøÁ\13\1d\"f\19\11%g)\1cÍûR\'¿\ 3¶Â0¿\17\9b{-,ì,#£ÀG/\1d8V \e\80CÍ)Kñh\9b\14\88m§o\12Â:%¦ºd®\"W¬æW\'\rÏ\87Ø;\99¢z§xÖ\98Ñ´ýÖ\16³×\8dR\87 IS\9d\13\ 2O\14Ð&§-xßõ\81þ§³wK\9e·O!~XQëzÉéHòvÝf<Çm\1e\13zíüP\ 5ÛÙ8®ýÓ\16ø¹jç>­1g\\\Z\83\83{ÕØØQ¹\16;jYê¨\0!\ 6\'\1c\97\88\eìvC¸ööO{iJҸҼи2\89sD²\8eÈ\7fr¨jî\87åßÇÆ\13\8f´Ç\83\9e¾.\8e\ eµ[h\vÖy¢kuÜ-\90Vh:w\90°\86íB\17\16éä\88ppëͲ\Z{ë\9a[\9b\8eÎ\8b\9dµøRXé\"ü´\84a\9a¸7Ö\1cWJ0¶§.ȶ\88\e.t³`l?\14Ñ­Ì      ¶íÃóvôÐ\92vMÁoÞ@\12u\95nÜp\8d£¤\94\8f5\90\8c<kw\86ùÇC)¥m~\10áÍaO\8cû\19\béDèV×â\9dç\81»\88SWÎv\86ÞwÇ¥\16\9aÒ©¯T\95\'¾é¤%\\W\ 6ѬÞ>p¯r\ 6\82)\8bøZ!ÔÒ*é\99¤ßÝ÷\ZUÕ\8dm\ 2ëkÙIä\1c¾+F\1f66\98R\94¥?g\9cãÑÍÅ\nÍ\ 2½¡\9b\10\8dH\84ê\12\87½\8bu\87n>\14õ$þùä½ÊçBðgpºY\1c°lG6Ã\87\nßlm+Êá\8bónèií6Ú\Zã\83fÝ7\bN\aZ¥iµe\ 4\95\'Î\9bd~n\97ÅÊ´o\fæ.\11©=ÈÂ#<v?ë4û.~(ѨÉk#uAʶ\18ú\84l\979D\19\11\vÈçº\90\a\ 3|1×´\'ðýñ01\7f+I\17\15§\e˾MTWº\18XD\aþsyþ\bëÇ\84\87¥4«WÍ.×\9f\93Ó\\¬°¢¶»~a®ª»ìæ\ 6\16\90ËÃ\r²NqÒ¿k\97\95\9fþ^\7f\80#×Â:\94Ocú ¡\92üÞ\99À«Mj\14\ 4\16¯ºÍ\1e\96\83J¦©ªE(U%^VvH¼ÿ\0\ 1ïkJr\17\97ç{ã­Ðå~\17O\r\19TU\15\89ÕW{Ê\8c_Íçì×øSÔÇ\13\8aûÜ9\83Óñsô­iLSØþ\95ÿÄ\0)\10\ 1\0\ 1\ 3\ 1\a\ 4\ 3\ 1\ 1\0\0\0\0\0\0\ 1\11\0!1A 0Qaq\81\91\10¡±ð@PÁáñÿÚ\0\b\ 1\ 1\0\ 1?!ý «\91\Z\ 5ËG(\80Må¨ô(MÇÆlxSS¶\ 1/\8eÞ\89ÎjÞ½[\7f©|¨ü\eË%g;        \11I\8a\91j\9a}¤e\0\90\10\84Z!\17ë`\81\18\81\16+p¡\12\ 4\17̬£\"ÒÐ~\r\92\17ÚY   àÙ\84\vN¦¦Y\95*c\84\14\b\90£\9c\16\89t$Â6¨\86\86öy@¥\8eW È\ 4i\ f\19\9c\90\90¦\13\9d¯¿¬Ã\99ݹA£$4Ì\90,3+:\rèF\94b4\11iÎÁ\'Ó]¯`\9dC\84¤ÂÖ}VB\"Vd°&`·W\8ad\8341\\¤\9acb\n£½1\ 5\eXmFd.\12 ×¸ÄZ&\8d\85¨\9dìÔ?Vò\86Oöë ù\ f\ZT¥?\98.®·4fë0L\e\ 5ñ\ 4¯\8b\8cLHo¯\13è¹.\97i\b\8f8Þô\9eR\90»\ 3þÓmåp¾Û]¯.\8b_ÏF\ 6&2[=ü7¼2\f\1d\ 2Ð8ê9\90¿µ\ 5p«¼!\v\9cÞÈG,ì\94U\0\13é\ 3\19\13®,R*   wB¯¹ YRjÍéNÔ\90\ e  °       \98XHQ1£¨Ê\9bÙ³tz]\1dn?)\96γ\83­\83>¼êí\"\9e\8a·\7f¹Äë,(\95\12)f\8fÅe\8b       Ô8\90¨\eÔS\95\82Ø#Æ\81\8e½\9c½ýû   %zdµ-dL¶Ï\82s\98¾rô~-\99Öõ²I<\93^BoYý«i¢#8\17Ém\0±»ë|Z\9d~>f\n\82\96»£\12\'p\8asbÕûÍáâ$R\bN\91¡{µª[À\10c´Ì\85¦\9eÑ×H\80wÅêÃúÑ\nð\ e\ 1b-:z\'M3¼\9e(óq¢\ f@     \83Ñ=«ü\19\96\v\ eïP­\1e±\ e\84¶Jy±«\92\17\84S^\94)\99\Z¼$#UlH1j6\83U:ÿ\0¯ \19&¯AE\98\ 6·\ 2\'¹Ã\ 4±\ 3vîý/\83.\\\11X`\rsÞ®Æ\92\9f#\9d\98\ eâ\1c*v)g^bæÔ\96#Éðì\fè\Z\8a\9f$3\16ý¹y9[\94\19?¹²©\b±Äâ\88õú\16\eXíÂ^W\8asÞÏ2\1c«Ø\0ßcð\e\ 3Ù¹\Z\"¸\92AÞI(Úë°\91 a\19E +FÏ6\9c9J¼ëT\biâï\93E\8d§\93ì#\90È\Z6P/³ÿ\0÷\97j\81Ù½ ÞÏ£~\7f×\84êl¢?º\88çâ¾/Õþ.ÿ\0¿ð(8\e<»­&\95®M\0?\Zïÿ\0Þå\17ï¦Øç\1cãn\7f\85Of.þWÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0â\0\0P\0\0\0\0\18\10\ 2$\0\0\0\0Î0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 3\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 3\ 5\ 1\0\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10\91¡@±ÑáðPÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5تf-:\13Â\ 3\ 6`\8a\"è\88\18\16#J\81Aw\81¨\ 5\ 2\84\10°2Z\Z!cX`åÚúü\1f¡­]\ 5+\eNC\\º    \8e8p\1cpÄòA¡\ 19¹±V\97÷Q\9ea-°\82¿^¥sÚúü\1f¡\95\9f(\86s¸È\ 6²TFâe\"\94\99/\ 5\r\ 6]ò¹^\1cõM®$gî~\'Ñ8\85\ 1\e\8a¾\9b\9dï|áÓÇÀ+\98\\\82§%ãzÁ)E        ´´\ 5-@ÔÆÀG${LñHSVÎ\13\9fÜÈüukò\"\94PQT \ 1ÏÑ\89\8cäú\84#- (|\13æCÐ\ 2÷qú\173a*ä\9dX¸`\80Á:$æNÝ\10\0\r¸\ 3\98Ï¥I*\17\ 5N\88u\14®1onç\ 3tnc\\\16\8f3T¥X<©\ 6¥+fSÑhä\bÀ<;¸RÁiB\92¡           ð÷øÒéßØ­Ç!t     \ 5\b=Dc\95d\\\ 6\0°­¨\"F\9f\14åv\8d\8cñc+ò \87Û\86n̺áïñ­û`C\17\82ª8Õ\ 4à\ e¥ î\ 4\ 4@\ 6ÿ\0* Ú.é\840\8a\7f¥\9dôÏ=â\ 4S\90\85 J@<\ 4\9b¢\13\94X\nL\b@²Zg\15\1fn=ôxÒ ±P[P¥Qê\1cÀO\84 ªîC=\\ês\12jCv \90\95\1cbÂU)E4Î\'³øþ~¢Û>Ìè\97w\80ÊìK¤ºD,¢HËr0\ah$u8\810\r\ 3 }Ù/«ýwÏV{¿\8fãA¬$¤\88Æcd\0:        \9bï+Q\100\13=\95\983ÀÙPàR}Kç\98¼e\ e\ 4ÈA@\80ô!w* &b9ç\ 5ßm/\84å\1c\111\"ÄÆ:\83\94ÑÂ\8b\Z\80\ 3L\1c\ 6A\8a\8d³,\11,\ 36\03º\82\9c\ 4q\ 3rhº-O3@ûÎ\18\13\87L\81\95Ë\"?«\80+\80\9a\n¡jâ»r\n\10\89õÛá\14\9b`=uY\0ëd»\v\18Êãq\1c*,ÎJJ\90±¸Ë\8aàC;¯HÔtZ}!\ 2È3-\1dhÝBù\ 4¡\87¨:`f\ 4B!·($mQ\1f\82{^\'?Ûâø¾4SÝÑÊÇ\n)ÝDí\86c¨\'\84`c- #Éÿ\0lys\9dî:#¼¡aª\81¹T1=\15\ 6Ô\vo8§Ñ_%ªA\94g¨¤Ò\ 3\fÌ9ɯ¶\10n\94\nê¡0ÿ\0\ 6fø\"\n\1343h{a4DkA\ 6\v# @ý\88LKmpµY\99·\88Ñ&%\ fMÌ~ûö08\82J)U.dz\80\ 6Ø,L3¿&<÷~ýLxóaøÞíßíä¬0òG!\ 5\ 4/V\9cú;Æã\83Rl\17ÍóáÌJ\16Ep娲L3\9d\11cÏ\n9\98\13\90\9dm¿_\97B\99-ªõ\91<6\90k\7f×äð°­S2\83w0\84î\ et\8c­É\1d\11ç\18íYpë\ 2\82Û\f£Ü«\8eìÅ\9bþ¿\'\84è\94I\e×2NÇuç ·\9e¹ß\8b\8cÔíöÏ[ÏRVV\8a«Ø\e9\9bëð¼;wÎ\e#¶à¤\99\8dí«Wb\8d\1e\9bl1=Ñ:ò§¥ËÕ\18\8a8\9c\0ñné8ý\9c\'Î\9a\1c(ãæ)\84o\13®W\8cÓ½Æ÷É\8b«Ç\8c\ eø\9dÿ\0\9bó¶Ø:è©\912¤á¾Äól\7fUÿÙ',4,1,'','','',''),(17,6,0,'84554cf67cd393c4','c80c222d7c06a142719eb8b2df65808f','2015-02-02 12:04:29','2015-02-02 12:04:29','','','Profile Photos','person-175.jpg','image/jpeg',80,80,2854,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b  \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà0Ùæ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8c\1cî`Í\0\8dw\ 4§1Ö¦4i\14H\85\ 2A\89\1e\rÄ®öÅ»-W\10\1d÷\84°\93zR\99\93ìm%Øåhô$¶\\Ì\ 1æÑÄÏ×   \"¼6\85ô¸\1c«\17ò¹.\a\8cø>ò¬g¹\ 3\8e\94öË¥=üÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\09\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 2\v\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa$\91%0CRqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þµºSI¦¦[U\0Dݳc\931Ø> ò\ 5±k!\9by\1e\13\aá¹\8a«A\ 1X\93-ëö\rY¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ    ÆÔ±\92°¥ÿ\0m\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɽö\a1\93±\95Ô\16äç¬t\93,¿\93d³Ô[k\89 \19ù]`\vµzT«ª­J¨MjÕ\90\10´¡\b\bZ\92 \1d\84\16°\18\0\18ò\81\88\8eÍÃe\99z¬ñaS¿\8f¶êÖiY\91ø\1d\ 2\f\14Ù\b\9f\9e½\90b\98>[     lcwMä2·2\98üFB+ä°¶ì¾Æ7%\8e>\fUÌpÙ#ð-³Q\81\84tÈH\85vE\90&®ØÌÕ\ 3êQËQ«\91¦ÏI*×\12\16\133\1fIàÈÞ>\93¼{º÷\1dTHì;Mä\18\95\87Ìè¿\19\v\18\8fYgC\84G×~Ù\bw\1e¬é\1c\9f\86ß×\97\8fÅK8þý.^\9f\97\7fiס\10ËHÀàéÝ\15G#+Åâ\1cµÌ\ eó-ð\96)\8eÞs·\11ý»hÌ\1dø!»\8cÓ\98ºÖÀ½W`j®\\¯úY$¯øû¤\ 5\10BQÄ\84£q\91\9f)\89\8f¬LzÇ׶\1fZãë1ú3!\93°ê½\r¾\Z7\84×\97À\9eó\11\16©×q¶\87Rx=aY\9cù.À®\86_\15d.c²U\11v\95¥ü\8f¯`!\8a8ßi\8dÆ|Ä¢\bKq(\82\89\88Ôú \17\ ev\17\ fnåe\1eü\19lC\85@fÛOH¬\9a¡»L~\1f/>Ú\83½MdE\98µ\8dË\ 4Òñ{\18ØÔ/Úëò\ e\r¸OÙê*þ\11;tA\8f\12\ 1\1f\n¨\8frþ Ô\17\17C\15\8eOZÃÏÖ|ø­)\bø\9d\91R\12\11\10\88Ç\9fo¶qÏ>ì{¹a\97ÙÖWR­Íc¨«\89LuÔË˱C\15Q\91\1f\ 5\85UaAy ®/ñ\86­MGIº¸*\115GªîZÏL<Ç\81Ø\15^k*%¤;\8fðÕ\9003\"\"#åÚ½\n\15\91N\95D\85zµ*¨\11\15\1cV\94©q\0µ\80ÆÂ#\11\11\1d³ºfé\12ëg1w1ÆÑ\8eD\89²¢\ 5Ø\ 1\9f\":íàà\89ò\92\b\89òí¨{§ï\ 1q\84·\93Ê\ eSMdìî¬Nm\9d\15Ózhßg\146l)5]P7\16IËë4Wj\ 5\13îh¾ê\18Lû¯\82Ç}ôÕª\ 2!\e\7f\8aÅU¨Þ3\13æ\10\84\fÆÒ!\95s#â\\lªÕÔ  B\16      JT0µ©K\18\15­`1\ 2\0\ 3\10\"\ 3\10\"1\11\11´{\9e\1f!R­Úó12\8buÓe31é2§\ 1\84Ì\7f\87i\1c\9e\94Ê!\7fÑùm5qØÆVdGáõéWbèd«DíÔ«z»Va\1cFU;\18êNîõØ£ïÆ\8b$˯V_F¶¢ÂÙÛÁfë¦\"\ 5dpJñ@\ 2\0%a;\0\1c±Jöw\95\94(ÞKFè¥(§ò®É^\ 6\0ÏèG\89\12\9fÜ}úÙ5\ f\bµÝ\ 5вQåÕe}YAkçúÈ­\83\11¿ÐcÛ©²»mãôÞ\90«¿êToêò8ßoîÚO×Óo~¦c\8fɤ28Þ_êfqv`\7fò\99öÉí\1c¦ f~³\ 3¾Ñ¿íȶÿ\04þ¾ÿ\0ShåÆG\97×\8cÌLÇó\88þ^ÏÿÄ\0\1f\10\ 1\ 1\0\ 3\0\ 2\ 2\ 3\0\0\0\0\0\0\0\0\ 1\11\0!1 A\10aQq\91ÿÚ\0\b\ 1\ 1\0\ 1?!ð§äþå<Öw\ZÛ*íEWUÀeèý    )7×´\9ceÎu\ f\n»v_#\18Þ\11^oÉÑõÏ4\1e\88»\'\Zà\1es\fÐm\98æ\17¥\817\98\Z ¡\f\bò\ fÔ,\11»\81\8fP\ 4ãe\83\\\ 4\ 6\9f»0\ 1#.\9bf>\8f\10\8aÜ.ú©\ 2©÷\9a\b\ 6\8a\95­êOQê8c\97>\87¦[\fÂTF\8cu\18\7fDú>.\86@\ 2×i\ 4M\ 6:Å)ÃNtê4º²«ráYY¢y|ÿ\0{«çHoaÀ$\ 6f\93Ã\ 2`\8d\ 5Û/ !<\1fhë¨\8a\15 ï&#è[5\ f¢ÕÄ\99ío\12\8e\ eh]ι(Zåè³av\00g\85µ\11\ 2%Bb\9cÒ\85B\98+\'ò\81T       iýùs\9e\a|hvJ\16\9bò\12<M\85\11\80ðQJ\1e{ea\8beÉwÄïÒÙÛC\e\81wEìi\95è\8fÁóÇõ\96<k*\82\a0\9d³Æyia\83Ö(\83J\14!£G3qÎ\v\ 5:öô\'°Ó\93̨¯C\n\'ªÅõ~`B\86KMºFÃÖ\9e¼õt¡\8d\ 4/áCö>?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 1\1cp\0\b£B$\0    8@\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\ 1\0\ 2\ 1\ 4\ 2\ 3\ 1\0\0\0\0\0\0\0\ 1\11\0!1 AQa\10\81q\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ùPå\ fË3¿«M\8e\16\ f\1e]`\9c#x\88ß×X\ 5P?ß\95ôo\nõ¬.;\vÒWç\a\1ddiù{i\96HN}\ e9¬&\14 \9e \80\85V@÷³\\ÄdÁ\e;3ï§Î\90\10·(\ 5\ 5\8b©x\vNéiTÜ@ÞÔãJ\9e|\10`¬+K%¯9\9c®-\8fR\98\8c\8a\98²@Å01ô÷µÌ\15®\94å\8e3\98F´9\17        £6/B\18à½ò9a\ 4á    ø\9aòb\82ø\17|hï\96e2Æ\fe£]7­À½ûÀ\ 6\1cbEè|\89\89E\18q+\ 6¤ÃY§FéG\15\99\83K5;\8e\aró±ÌÑö@à\n¢\ 5\14¬\8f^\v:i=\97î±È\0:\ f\Z\ fç×BaDë\v¨B8X\17·FÝO\80ítâ\81dV\95\9dr\96ºÏ\'8\97\811\91²Ïª\90\bõ´Ò\a\86\8bÉï?\bßÏ!e\89àÝ\8dì\9a{e\1e\11û>\14\17À¿¢á\85#lm\ 1\88Î8§\ 3\"ÖL\91Î[\7f:\86¸0i\80\9f¢%qjx¼Ñ  _\1eB\82\1fDUâ\11\88\0\84\Z\ f\9c÷\r¶sÃǼyXN3Ä$º­\9dQ)2Z+Xjºp\9c`Lp}ÿ\0\\\b\ZÑ\ 1yÓ®u\8fÀ_Q9\ 4\19(   uº\93°\ 1\81v\a\9c\8ep\0-:\8fõª\94h\ 6½TBª½8\81ø\82\88¥øÿÙ',5,1,'','','',''),(18,6,0,'84554cf67cd393c4','c80c222d7c06a142719eb8b2df65808f','2015-02-02 12:04:29','2015-02-02 12:04:29','','','Profile Photos','person-175.jpg','image/jpeg',48,48,2070,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\8d÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2lk3®\90!b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!#\a\10\"1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤Þ\84á´Æ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\bçô7¶u\84ï\8fÎ\16æGëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&·XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨Ow@8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]XUÆ¥«bêÙ\nÁ2J^B\93Jµ®\8c\97ÅÑa\87Y0S$+`\81\11HÉO»Pé\9a»~Ðr\ 2î/|í   ÉcÎ-TQ\17Ð6\r}±\1fÑ\ e\92\9f\97\14\91*\9a\87C¶Æ\9cÎã\1c=;\15\e\89¨f©ø [[hîåË®\9b\ 1\1f\83\8cG³L2:Ùÿ\0iÙ\14á+\19Ï$Ô¦«t\8eÛ\99>g\9b\8f\ 3;Tv\eø\96\10X]%Q½ÏÙÈ\92µk\96Þîý\92\97ݱ\ 3ô\ 3,\19ô\82fd\15°ffc\9f»\'\9cÉ·£C\13FÅûlùÌ&²É\87¶>£-»@~ds\ 3\1f>\11¬µ­ËØúy(\e\9a\7fDcí6\8d,v-Þ¥\'g\99XÂÎ[-a\12·XCÝ\14*ÉJb\9eýÛl3\e\8c£A\97\ f«q\95+%\f¶ØçêYbÀMçñ\17ÆÙ\"ø§Ï\99ãLæñ\17Q\8dÕZ/.\19\8c\r«`l¢ùÞ©³\8eÈ\ 2½nÖؤ#ª\9fU$0b\'\12a5r\Z£\eg\1fRaa\93ÈÒ\98Éã1M-¡Ô¶Ål¼º\eçøòÇÂ\10¿RìÕ\ esÂÜ\93\ 6) ,[\0 \80Àãp\98\10ó\82\12\19\89\82\8f\1c¼Ç\19\\`ó\98½oO×hÇ×]\9a\93\11\16\97\95º _´§\9f\ 2\ 3\10\"\"\"#\11Ê\"\"9DD\7fH\8f\97¾Í+J\a\87\96\f\185\ fY)«1\9f\ 4&\ 4BQ>&\'\8d-JÉ\99\9e7´æs2]:ÏrP\133çÓ@,#ô\18âk·ÈI¥\9fä\87-áþë\1fºªªðµDÀÿ\0s#ÿ\0¥ÇÿÄ\0#\10\ 1\0\ 2\ 2\ 1\ 3\ 4\ 3\0\0\0\0\0\0\0\0\ 1\0\11!1ðA\81áQa¡Ñ\10qÁÿÚ\0\b\ 1\ 1\0\ 1?!\98ëß=åH¾kzí\v\10¢LËLâYã2Ð\9aÄ\879\89ç\9dúN\9cçö_àÏ3Èb~\1dÆÊBã¦ÊööM 5ÂþfBøbD\89ÈÒ\1c¢\1co\ 6>9Îó¤B\ e}\rÏ\v\11`¢\"0p\ 1IAͦH9 Ë\0f¡T\7fA\89\ 4×fÝ\97õi$\17\nñÎn\ 2\86¡È(v±\10Ñ\7fO\83Vèãq\1eã¥a\84\8dz5¹X\e\r\8fFD1_8\19\82Ô7{\82è\80\14]óÕ%cTÄn\vÙ/p°Ý\a¤\96.\b³\ 4<3\0\0\Z\ f\9e}üATö¨\9fJĤ#p\90\"\98±\n²[\8e\92\16¶q¼\9dÙÞÕ\ e\9f\9a\9c×9¸éýzCR\8aUPÇÉ?ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ²ñ{\96\8a_\v$\1dÔÇL¸YÐ\98mº2g\1e#\8dG+}í\9b×ïò>=Ôp\9c.¿Ý\1d{*Ð=çë#\b\"ÚT\1eÁ§Z\ 3³Qô\rÎ;G¿ \17\'ÝÍÚU¤\96é\15¸¯ß\81¼úó¼S\85±ÃÆô<<_t¯\90L\8d\"4uHÅ0B\8cÌ\9fS¢Exêi\89P\88Ä.Z<\ 6Lzÿ\0c}CÎøèðõÝÍvÇ4»A\86\15§ËÒ8©\81Â.[¸Øãj3ÝÖ\aÐÅèÿ\0B^ÿ\0³\'¤ ¹\82À2;·af±\98ó(\82·Ø g´\r\v\8cbBr駲ä)cÃWÂ\83ª\ 2\ 1\12¿\9a\rÚyg\11i»f½qÃ\9bøéyáS\8fì& £¨Þ\ 5\15Z;º\8b#Pl\b,í`0dÙ´sp¹B\ 1kA\93\8e\96|}ñF­£÷¾ûäÅëç³ù µÔ$\ 3(0øN³7Å\ e|\17Ï PÁã.kÿÙ',6,1,'','','',''),(19,3,8,'43554cfc4ec523d0','1f4766db71f0f2d503287947c1d67dcd','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0   \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(20,3,8,'43554cfc4ec523d0','1f4766db71f0f2d503287947c1d67dcd','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b    \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(21,3,8,'43554cfc4ec523d0','1f4766db71f0f2d503287947c1d67dcd','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a        \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(22,4,7,'32554cfc4ecad9ed','343e3e9f0f5a36ea763c101490db9ca6','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0 \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(23,4,7,'32554cfc4ecad9ed','343e3e9f0f5a36ea763c101490db9ca6','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b    \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(24,4,7,'32554cfc4ecad9ed','343e3e9f0f5a36ea763c101490db9ca6','2015-02-02 18:41:48','2015-02-02 18:41:48','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a        \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(25,6,9,'79554cfc5ca68cdc','75b60a2a1e6b2cdf2eb3637955a7a5c2','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0 \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(26,6,9,'79554cfc5ca68cdc','75b60a2a1e6b2cdf2eb3637955a7a5c2','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b    \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(27,6,9,'79554cfc5ca68cdc','75b60a2a1e6b2cdf2eb3637955a7a5c2','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a        \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(28,5,10,'57054cfc5cac8e5c','d04134664ffd0d558b08ee01f6859f3a','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(29,5,10,'57054cfc5cac8e5c','d04134664ffd0d558b08ee01f6859f3a','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(30,5,10,'57054cfc5cac8e5c','d04134664ffd0d558b08ee01f6859f3a','2015-02-02 18:45:30','2015-02-02 18:45:30','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(31,2,16,'49454cfc71b75a4e','01072618a17425401fafdeb40fcd79ac','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(32,2,16,'49454cfc71b75a4e','01072618a17425401fafdeb40fcd79ac','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(33,2,16,'49454cfc71b75a4e','01072618a17425401fafdeb40fcd79ac','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','5.jpg?rev=2015-02-02+12%3A04%3A06','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(34,5,15,'27554cfc71bcb2e8','73de577b8bcc76d9358ab8536f0a5cca','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(35,5,15,'27554cfc71bcb2e8','73de577b8bcc76d9358ab8536f0a5cca','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(36,5,15,'27554cfc71bcb2e8','73de577b8bcc76d9358ab8536f0a5cca','2015-02-02 18:51:07','2015-02-02 18:51:07','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(37,2,12,'58354cfc7369ebdb','b18ee0c7f160fdbf8f5d91a56a07a13c','2015-02-02 18:51:34','2015-02-02 18:51:34','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(38,2,12,'58354cfc7369ebdb','b18ee0c7f160fdbf8f5d91a56a07a13c','2015-02-02 18:51:34','2015-02-02 18:51:34','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(39,2,12,'58354cfc7369ebdb','b18ee0c7f160fdbf8f5d91a56a07a13c','2015-02-02 18:51:34','2015-02-02 18:51:34','','','Contact Photos','3.jpg?rev=2015-02-02+12%3A02%3A40','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(40,3,11,'21254cfc73701af6','389cca68d9a2e64538a81680925703b8','2015-02-02 18:51:35','2015-02-02 18:51:35','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(41,3,11,'21254cfc73701af6','389cca68d9a2e64538a81680925703b8','2015-02-02 18:51:35','2015-02-02 18:51:35','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(42,3,11,'21254cfc73701af6','389cca68d9a2e64538a81680925703b8','2015-02-02 18:51:35','2015-02-02 18:51:35','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(43,2,14,'83254cfc7681d1da','1fc6596c195944666e18cbd313795942','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(44,2,14,'83254cfc7681d1da','1fc6596c195944666e18cbd313795942','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(45,2,14,'83254cfc7681d1da','1fc6596c195944666e18cbd313795942','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','4.jpg?rev=2015-02-02+12%3A03%3A07','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(46,4,13,'69454cfc7686a537','ba266e976726cba185c218750c545814','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(47,4,13,'69454cfc7686a537','ba266e976726cba185c218750c545814','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(48,4,13,'69454cfc7686a537','ba266e976726cba185c218750c545814','2015-02-02 18:52:24','2015-02-02 18:52:24','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(49,2,18,'48654cfc78f98728','0f1ac566d253bcd264437b7f7a347f88','2015-02-02 18:53:03','2015-02-02 18:53:03','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(50,2,18,'48654cfc78f98728','0f1ac566d253bcd264437b7f7a347f88','2015-02-02 18:53:03','2015-02-02 18:53:03','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(51,2,18,'48654cfc78f98728','0f1ac566d253bcd264437b7f7a347f88','2015-02-02 18:53:03','2015-02-02 18:53:03','','','Contact Photos','6.jpg?rev=2015-02-02+12%3A04%3A29','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','',''),(52,6,17,'52754cfc79010af9','b4cbb73d1178aab3424a788419bbe016','2015-02-02 18:53:04','2015-02-02 18:53:04','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',175,175,5559,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0¯\0¯\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1d\0\ 1\0\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0        \n\a\b\ 3\ 4\ 6\ 2\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1\9fÀ\0\0\0\0\0\0\0\0\0\0\"¤Þ¸°¯în$RY¿WoGÐ\0\0\0\0\0\ZuN¹[\88\137\\Z5¦\84\ 2\19ðLÞÔd´vÒÐöß&æ\80\0\0\0\nYk\ 6Ö`\92ìù<\0F´\94à\82\8f\93\e\ eRÞZ,\0\0\0\0Vz\1fn]M²õÞ®*åHú\ 2.äN\98f¹Û\ e?¬dr\80\0\0\0èF)(ð\99ï¶ØªÅÌô\93}\8fÚ\ 4qÔ¾çTË//\93üg³\0\0\0\1eWÕW`Àr\8bøòìqr\80\0q×\82Ä\7f%~l\ 1¬ýódZ\13\82      mu» \0yz\9bY&/Iãç\0\0\0\08ã\nPxÈ-\9d*¾Z\fä\0\ZÙ£òM¤$\95\80\0\0\0\0 \ e~\"R[O qò\aãéþêb30\0\0\0\0\04sxðþ`\0\ 1ÇÈ\0\0\0\0\0\ e¿`\0ÿÄ\0&\10\0\ 1\ 3\ 4\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\ 5\ 4\ 6\a\ 1\ 2\ 3\b\00\11 \10\14\13@A\15PÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ÿ\0¨ì}´Ø¨\1c\9b¦ÙK~=Ë~\91]\1dºå\97\15\9f£=l*8âÓî#nr1\84\94\8eF\90ã60Cú3T\93\861c\11 ´²æ38³ùÎÃc\ 4\8f\e\9c¾¾))l{Þ:(\ev\95þXö\\cÉØ)_=»\86îÈ]ÿ\0Í>`á\10ÔùrµÁ;\82ÌñY\b¥Ú\18áFñHRQM)3;&õ×\90\96ñc®[Ú\0±¶\e\1e\9bDÌÄè\8aëÍ1pfFÿ\0ì\9d\87Þ6^iÙnGO¬\9d\\\14\8ekÍ9\13\99d\9fÙ¹\fü\83\1eÈ\95^\8dX\82X\f\vôÚ§Î\ 6´gJyæ±Æ9Øl\8eÉ\8e=Á&1H\ fZ)n©?ñº#¿\93\85зÃÉ\92\11y5Õ«p\8aSü¥<wm,(\98¸è¾C)\19»A\97\ fñ´Ëó¢\85ðâ¿6V\88\96¿^L¸ðØüÚ¸ñ¥\95´õÙ       #\8b#\93N@©µr\17I\91*dép|M\8d\1cïhÃ\ 6[Òª\ 4U)°ÝE\n\8f\b>W\9bÝÓ)È_Z±pø¥=«Í\85×B\18\88ë,î<R;n¥ÔéÛ¹K2ÂZÁ\rbg\81èñÇ\\A\Z½r\81\8e\ 65Q»ÑÎà-bí0REíº\97ÛêP\8e\11#bFöy\8ei¥´¶\9d~<óaá4R -M\97\16\13å=f¥w#\89´\98\1d´IÛüw\f¬kµ?ÏIy/Ý\8c4Õ\'á\8b\b_çØï磹\'ßjjzO¯\f÷Lch¦~§ª«(¡6¾\ fÿ\06 î~\8d¢©gÖ´óÆ8Ê\86j÷\Z\1dö\\ÞÔ§\8eúÛJ×ö\7fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1sÿÄ\0Q\10\0\ 1\ 3\ 1\ 3\ 5\a\f\ e\b\a\ 1\0\0\0\0\ 3\ 2\ 4\ 5\ 1\ 6\11\13\0\12\14!#\a\15 $013\"24BCDScdqst\10\16%QRTa\81\83\84\93\94³Ã@AUbru£ðEP\85\91¡±´ÄÿÚ\0\b\ 1\ 1\0\ 6?\ 2ÿ\04Óílã\18\90*\8bÂ\19\89\9cíÏî4h+ܼú\ 6õÈ\81²ÖRNf\89Vj]É=\f8\17ã\ 4!\ 2IÇÞ4jä\16±V\16\ 4åp¼&ìÆ©\87ÎÊ¿\ 6<\a\rñkòhÙ\rͯ°\116Q\82ú¬BO\17|³?\94è.j/¬¹mú\11\9aSy\ehag\17\13«gg\86QìLì}Ùõu\1d¬}uS²\9dÝM\19³·\12óÒ®¥¤\9c«8î\9e\17\18\95ë¶cÕ±\15/Ô\0qz_\95#!\a@2\16\Zå¦Ü¤\95a\16Ü·ÓiZtÏ\1cm4Xúq\97W_Øtræ\83L#\ 4;\98Pó_Z\17¨\19¤Ý¯ºá\97¼ÃÏ°ou߯Hçý    ôòs\150é[Ù\0Ü\9dÖQÐË\84BßÜ#ÃB¿uò\aE¿\8cÓ\'\92RN\fòAñÈåã·\nÏ;\87\ 5&)J_?÷ïR*ÊBÑ*y$lÕ\19\ 3\ 6\82Ú¼~ëV ¶\ 5\bjÓßâÔ½Ë\8adÂÍ@7 YµMTw5ì©\'\85»\15ûÂê©Nâ¿3Z`´kÅAJ{\15­)\9d_\83\96÷9ܹl\0µ/A\96\96\98Ò\98È\8fµ$[}\1fè7ËI§}]\92Sh,;e·WJhy\82\80èôm^\81Æ7Þ\9bd¥Ù©N:\11P¯!\1f§B\96f\8f\ZÖúÐÁñí\9c9mòò̬¸\89U1²±cÎ\ZU³ß9|\'\87/Üw¼\1f7°þÞ¼\ 57ÆÒ­lã\14¤í\ 5  \1e\\\"ákÿ\0\10\94\11k_\91\9b~\ 3»?hã[ÉÆ>\16i@du\84×Q\99±iL`8\az¸oÆ\e\8d\10\\÷\10ï\92G\96~G7²ãóú\"ùl\7f\94ñ\ eµQÍ2i3\fôÑÒL\f\83µvÝY\84\nþjt^&º²k3Z 3L\95 Ú\ 6cëC \14Sl*x      \0ñ\86¾öݯ{r»¡\1c\95¿6ÓȶO£\8f&\86\87$\r4ª\94µ iM;e\97+=g\80\8a$pÐì#º\9eÝm\e\bE\'Ó\9b\14ü\19i\n\ 55\92²KDó\12fõz8v2Âô:    JãÎÌ\1eÄÕ\9eª«¢ÍÙò:ÃítÈ\87!(Iö\ e\9dò» \ 2´ªsí\eÇÉÕÜä°¤Eÿ\0¯+82td\9e\88J¿\83O\ f\nßUÍØ\1eÓ­&&wòw\9eÃÙ4ߣÃÙ§ë*»LI\ 2´h\11þ/Ùr±6À#âv\929\fÝ\11)Ù¢R#eµõ\86%iö\aÉ«´t\8d\\·r?ã      hZe\e,ÕT[iHæ\92\9e±`vØG\17ü\17\82ò\bE¥&-\917¥¨R­¢#ÄA\Z]Ï¡ÀÂaõÐeu9ò¬\8c¸ª\19ûR¶ò/\ 2\19\9cx\91îK\ 2_Ý°Jg\ e½ê¼ÑkØܬ¥\9e¹\b\93\1fº\10N\15vÆ]®.\ f=û\'\17\95»\9f&5þgq²\0+WìNFÏ\e\199\86làDÂ(\8b\90\93¦²ö1{ÜD)[BÃ\97m\12æï\ 4\ncGü\9a\18~1À\93\9c\92.\v\18\86.$^\13à7h<bþ\1e\1c²ê\84\91X\11Qùùà\8a\8b\11\vV\8cC¯ÆÔî\8fßN\8cw_®ì\93º=©mCG´u\9b\19\e\aÏ\Z\13k(èzè`6?\17h\ ejº       þ-L©ËHn\97\86òñMqí\13D§0r±í;ÿ\0×cÁÏñ¦¢òzdÂÓFÑf\10ø´«\f\\ÄIE\96¼m©|oDá©ûÙÐ\81\94Lã\Z®¬&#\9aJ3©\13\98½\1e\9d\87\10zµà\96\9fÞ¿fÒP\17£N{\bÄê§]£\96Q¡Kø8\1f>C\n5¬ª@Óô¹@Yö\94M\eCÅ0`,ÔêV\va\b¥ó¸6)ëéy¹E\10«B\ 4\84ç(\8aVb\12\8c\8d\1f\f§\16ÊTUÍU\"T4D\88\9e6XÛ\13\7f§7uçÉ/blå\97ÜþÏ\9fª\ 4\8d¡lýÓâ\87Â5hcã\1f\9f§ÞÖÍy²<-¹·Ó\13L\9e\8f\nE¤$t=\9ajì}ѱH\ 6î\9fà_~Ç|¼ù\f\9eÕÊæ¢Vw\Z\98\990×éE§mr\ 3VÂ@\e5\Z\0\0\r9£\b\ 2\8a\b#\18ü\15\ 5ª\9eÍ®\80h,WÆ\8eÓ£\86\9e¼¯â\\\86I£aúÍZhÿ\0M\90KuÄnq\97\10D¿(\99\86DIYÊG3~Ø\89íÀí°\8c/ÅäÞËK;\v\bèð\11ËÇN\15\98\ 6à\10ñJRù¿ß$Øû\Z)\10Ù§o\12Â:%¦zd­\11+ÌæW\ 6í\8fwÐ;\19¢z§wÖ\97Ñ´ý«\vYëcT¡ÂRTãDÀ\93Á4        ©Ç^7ý \7f©èÝ\92ç\9b\87!o,\14zÞ²zR<\9d³¬Ç\88í£Âm]¿\8a\0ºvN+·tŽîZ¹Ç«KÙÖæ ÜÞÚ»\e\n7\"Çf¥\9eª\80\ 2\10bk\86~Rê\ 6Úý\10î=ý\13âÙR´­ô¯$-Ì¢\\ÜÊ;\ 1ý¥PÕÙ\ fË·\8f\8c\86<\18OÜóÞèàæ«l\81mg\9a&¶®Ð¶AY éÚBÂ\e¢\10µl\9eH\86ç\ e¼\9b\ 1§Æ¹%¹´v:-ãÒt¯Â\92ÇI\17ÓHF\19«\83}aÅr£\v59k\"Ú!9 l¹ÒÍ\81°ü\13\98\13\87ÕÛÓ\"IØ\9bAgí\90\ 4\9cåYÛG\bÚ:IHòY\bÃÆ·xoXÞÊe[/º\1c\14øÏ¡\90\8e\94MêÒü\13¼p7q\njùN\90ÛÊõåE¦´ªkÕ%Ií¸R\12®+shÖo\1f8WÁ\ 3A\14Åü,\90êi\15tÌÒoí}£Jº±­ ]iz)<C\97ÅhÃÕ\8d\95Ô¥)OÝå5äæÑB³@­´3b\11©\10\9cÂO4\10ö±n®é\8fu=É?Æx¯b¹È»\99Ú\17K#\96\r\88æÌ8p­¶\86Ò¼n\18¾­Ù\r=æÚC[îlÛ\85º\13\81Ö©Zl¬ \92¤ùSl\ fÍÊÜZU£hg1p\8dIðF\11\19ã±ÿ\0Y§ÙrñF\8dF\vY\eU\a*Øcê\11¢Zr\882\"\17\89Çu \ e\16è\rî¿>ÈOæÿ\0\18\98\18¿\95\94\8b\8aÓ[Ë_&ª+á\f,\"\ 3ÿ\0x¼¾äu×t\87µ4«7É-kÏÉáZV7QZ]\9f\98k\9a®Û\19\81\85\941.»L\93\9ct¯Þãågÿ\0ËËî\ 4z÷GR\89ë\7fd\142_\9bÂp*Ó:\85\ 1\ 5\9bð±G\95\90iTÕ*H¥\n¤«ÇNÉ\17\97Ü=íiN\"òÞv¾\ZÎ\87\vð¸pÑ\95EQV­È\9cÕv¼hÅüÞ^Æ?º\9eæ8\9cWÞáÌ\1e\1e®^\95­)zzßÒ¿ÿÄ\0)\10\ 1\0\ 2\ 2\0\ 3\b\ 3\ 1\ 1\ 1\0\0\0\0\0\ 1\11!\010AQ\10 aq\81\91¡ð@±ÁáPÑÿÚ\0\b\ 1\ 1\0\ 1?!ÿ\0¨*Ø\8d\ 2ËG\84@&åÈü(M×ÆèòQ9;`\12ú?)\13½åzõ÷tû<?\ 6å\92³\9d       \11\11sM>Ò\12\80H\bB*!\17ë`\81\18\81\16+a\82$\91B\b/2²\8c\8a\94Áø4\90\9eåd\'£f\10\93\14-:\9a\99fT©®\90`\"B\8ePZ-ÐL3h\86\87vr\ 2\96\83 \11¤<fvBB\98N÷>þ³\ eg«f\ 6\8d\90Ót\15\86eO!Å\bÒ\8a\81@\15;Ú$ösÚö     Ô:JL.sÚò\11\12¦K\ 6f\v\19 Í\rWi\',h\82ÈïLAF¨j\8cÈ]&A¯q¨¹&\8d¥ÌO\16j\1f«y\ 6lÿ\0n²\ fØ{rÉJ\7f0ZºÙ£6º&\ eá<A+Å\8dLHo\\ObÁt=$\"=ñÅé>¥\82\17 =±¶÷\1c/Ç{Òòè«ùØÐÄÆËg×Ó\8bÓ Áä\11 ëÌw!\7fj\nÃ!á\b6qt\84xoºQT\ 2\fdO=ZÄX\12î\85_w@¥O38¥:¤\80pM\0\99¥\84\86\11Z:\8c¡ºi´|­\1dn?)¶Þ§GZ\föøÕÚe=£ñ¬®ÿ\0s©ÖP¢THÅ4~\v*°\'\98u\86@â£\1cªÝì\15\82<r\fyôåïòØI+¦JŬ\89\96³à\9cî/}§â³<ïVÉ\'Á==ÂoSû\95¦\88¶À¾å´\ 5\1c?;âÔë:é¯9\83 ¥®èÔ\89Ý\"\9dÑrûÍáâ\ 12\bn\95\86÷k\\· A\8e¦ÁSOhóÒ \1e¸¼¡ýh\85x\a\0±\15\13§,ï\'ª=ã\9e\10|\80&\ f\92|gø3-\16\ e\18\15£Û±\ e©öKIO6)É\90­\"\9aé\82\99\91«ÂB9ªÄ\83\17\1cØëþ¼\80d\9aº\f,Ð5¸\11=\9d0K\108nî_|¬¹tEa 9ã½]\8d%>Gz`<\btÉØ¥:ø\8b\9aı\1eO\87 ³È9\15?Hf«öË\93·e&OîlªB(êuDzý\n=ívá.W·Ñ\9c÷³Ì\85v/ \ 1ÆÇà6\a³r4EbI\arIF×]   \13\ 6\11\94R\ 39;¾-8r\97ßï<kT      iêñ\93\85\8dËÉö\11à2\a\ eê\rø{ç¼½2\aföÁ¾\1fG\1cÿ\0¯     ýøáÝD_u\11ßë?Wjÿ\0\17\8fëý\f\ e\87wúÒi\9cò`\ 1ý+Çÿ\0{\96\91ß\1e1Î6Ï\1dýñ\8eúýOýãü1uü¯ÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\0\0\0\0\0\0\0\0\0\0\04Ò\0\0\0\0\0\ 2\ 4\10\13À\0\0\0\0Â\0\0P\0\0\0\0\18\10\ 24\0\0\0\0Ê0\0\ 2\0\0\0\0\ 2\0\0\13À\0\0\f\0\0\0\0\0C\0\ 1\0\0\0\0\0\ 1@\0ð\0\0\0\0\0\0\0\0\0\0\0\0\0 \ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 3\ 1\ 1?\10sÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0`ÿÚ\0\b\ 1\ 2\ 1\ 1?\10sÿÄ\0)\10\ 1\ 1\0\ 1\ 3\ 2\ 5\ 4\ 3\ 1\ 1\0\0\0\0\0\ 1\11!\01A0Q aq\81Á\10@\91¡±ÑáPðÿÚ\0\b\ 1\ 1\0\ 1?\10ÿ\0¨\ 5Hªf=:\13Â\ 3·\ 6`\8a\"è\88\10\16\86\95\ 2\84ï-\0\15\"öE\f4°\"-\r\10±¬(rí}~\ f±­]\ 5+\eNC\\º\b\8e8p\fpÄò@4@NnlU¥ýÔg¸Kl ¯×©^ö¾¿\aØÊN\94CyÜd\ 3Y\"#q2\91JL\97\82\86\83.ýL¯\ e{S\1d¤\8c}ÏÄú%P¡+6Cq\97Ós½ï\9c;<|\ 2¹\85È*r^7¬\12\94P\9bK@RÔ\rLl\ 4r\8fÜ\1cR\14Õ³\98çù\"?\1e¾}J|\88¨ (¤H\0sôbc9>¡\bÊ\8c\ 5\ f\82<Èz\0^æ?Bæl%\\\93«\17\f\10\18\'D\9cÉÛ¢\0\ 1·\0{\99t©5Bà©Ú\1dE+\8cRÛ¹ÀÝ\9b\98×\ 5£ÌÕ)V\ eåA5)[3\9e\8bG0V\0ðïáK\ 5¥\nKä$\'ÃßãJ¥}b·\1c\85¨\12\n\10z\88Í*Êp\f\ 2¶¡\11\9a}\85«\nr½\9a½Ï&x±\95ùPCñÃ7f]p÷øÖý°!\8bÁU\1cj\82p\aR\90w\ 2\ 2 \ 6ÿ\05A´]Ó\bn(ÿ\0èɾ\99ç½\ 1\nÈBÐ% \1e\0MÑ\ 4í\16\12\90\12\10,\96°mS~qøãßG\8d\"\v0BÚ\81:ÏP¦\ 2|%\ 5Wr\19êæs\98\93v\eµ\ 4\82\1d,¨ã\16\12©J)¦q=\9f×÷õ\17ÙöcD¸^\ 3+±.\92é\10²\89#-ÈÀ\1d \91äâ\11\80h\n\81\8f\92_Wüï\9dº³Ýý\7fZ   a%$L3\e AÐLß{Z\88\81\80\99ìª?\8cÁ\9e\ 6Ê\97\ 2\91})\9e\948\13!\ 5\ 2\Z=\b]ʨ  \98\8eyÁwÛKá9C\ 4\\H \98GPr\9a9*Æ\80\ 3L8\f\83\15\efX\"X\ 6l\0gu\858DP\'\ 1µÐjy\9e\a^pÀ\94:d\f®Y\11ýX\ 1X\814\15BÕÅvä\14!\13ë¶Â)3Àzæ²\ 3­\92ì,c+\8dÀ2¨³9)*ÂÆã.\e\81\ 6î½+ è£é\b\16A\89\98ëFê\17È\n8} °3\n!PÛ\94\12\8fÁ=¯\13\9fõñ|_\Z)ïèåc\85\15ë4\9d°Ìu\ 4ð\8c\f\ 4C¿·èòçÎã¢:º\16\1cT\8dË¡\89èª÷ð6 [yÅ>\8aù-R\f£=E&\90\18fAÎM}°\83T WU      \87x\13\10P\99¡y å\84Á\11­\ 4\18,\8e\81\ 3ö$1*Úáj³=¼B\891(znc÷ß³\ 3\88\95\v³ìá\ 1\v\13\fñ¹ùÝüã§g\1el;ñ½Û¿ãÉXaä\8eB\n\b^­9ôw\8d\87CRl\17ÍóáÌJ\16Er娲L3Lüb,qáE3\ 3\99\8e¶ß¯Ë¡L\96ÕzÈ\9e\eH5¿ëòxXÖ¨åî0Â\13¸9Ò2·$h\8f,Çj¥Ã¬\n\vl2Ïr®;Æìßõù<\'@¢HÞ¹\92v;¯=\ 5¬õÎü\\r\97oÅzÙÜÜVV\8a«À\r\9cÍõú^\1d»çM\91ÛpRLÆöÕ«\91Ä\ e¦\r\86#\9d\94N¼«èrì\95\88£\89À\1e-ÝÇ\1fÃDùôóhp£\8f\98\83\0o\13®W\fÛ\97\98¼*³\1e0;âwÿ\0_>\98:è©\912¡Æ}\89æÙ÷_ÿÙ',4,0,'','','',''),(53,6,17,'52754cfc79010af9','b4cbb73d1178aab3424a788419bbe016','2015-02-02 18:53:04','2015-02-02 18:53:04','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',80,80,2858,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\0P\0P\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\1e\0\ 1\0\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\0\0\0\a\ 1\b   \n\ 2\ 3\ 6\ 4\ 5ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1Ïà\14bLËc^üí\1eÝÃ\98\0\116¡ÛWà4Ùâ\13¸\ 1©FÖ\Z¹ìxO\0\11ùîµ\93ÉÕÝ\12Äy(øã\ 2»\18àó8G5*S\11Ùq°²ú~À\ 3ñ¡©ú\85\8b_M\87_\89Hfhê;@\0\10ÜÉÓÜ\7fÿÄ\0\"\10\0\ 1\ 3\ 3\ 4\ 3\ 1\0\0\0\0\0\0\0\0\0\ 5\ 4\ 6\a\ 2\b \ 1\ 3\10\12\0\11\130ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2ýgk\95O\1eª\8aÚ\93DÑP \88Û£ýé\93íãM\99\185\95ÊÒ\82$IG¥\91c°Ò8!2\14\93o¯ð¥R\1d\11\84Î+|ÔUfº§ÒSâí÷\91­\98¢ðªÛ\91Þ\15Ó¥t<\9b\ 4m¶f\ eY\ 1Ñ\92#£V[&×\18´È\8e\8d0s¹\834\ 2\12\9cÇZ\98ѤQ\"\14   \ 6$x7\12»Û\16ìµ\\@wÞ\12ÂMéJfO±´\97c\95£Ð\92Ùs0\a\9bG\13?\\$\8aðÚ\17Òàr¬_Êä¸\1e3àûʱ\9eä\ e:SÛ.\94÷óÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1OÿÄ\0:\10\0\ 2\ 2\ 1\ 3\ 1\ 5\ 5\ 6\ 1\r\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\11\12\13\0\a\14!1\10 \"2A\15\16#BQa\91$%0CRbqrs\81\82\83£ÿÚ\0\b\ 1\ 1\0\ 6?\ 2þ\95ºSI¦¦[U\0DÞ³c\931Ø> r\ 5±k!\9by\1e\13\aáù\8a«Á\ 1X\93-ëö\rW¬»ÂÕ\98=&ÆIW^.û1Vrü\ fc\8ce:q^\95:bC+\9bÇ]\9c\88x!-øØ  ÆÔ±\92°¥ÿ\0]\97ÊßËÜazI\1d¼\8d\8b\ e\9dýx      \n\86~E\84yvõ÷µ>¥Ú\b°\98\ 5\ 1z\1d\84W2¬¹ý\99\1fïÛ\15\8aɹö\a1\93±\95Ô\16äç¬t\93,¿\93d·Ô[k\89 \19ù\\ð.ÕéR®ªµ*¡5«V@BÒ\84 !jJ\80v\10ZÀ`\0cÊ\ 6\";7\r\96eê³Å\85Nþ>Û«Y¥fGàt\b0Sd\"~zöA\8a`ùl%±\8dÝ7\90ÊÜÊcñ\19\b¯\92ÂÛ²û\18Ü\968ø1W1Ãd\8fÀ¶ÍF\ 5\9aÖ\11Ó!\"\15Ù\16@\9a»c3T\ f©G-F®F\9b=$«\\HXLÌyí<\ e7\8f¤ï\1eî½ÇU\12;\ eÓy\ 6%aó0ê/ÆBÆ#ÖYÐá\11õ߶B\1dÇ«:G\'á·õåãñRÎ?¿K\97§åßÚuèD2Ò08:wEQÈÊñx\87-s\ 3¼Ë|%\8a\9cíÄ\7fnÚ/\a~\n.ã4æ*µ°/UØ\Z«\97\96I+þ>é\ 4Ä\10\94H\90\94n3\13å11õ\89\8fXúöÃë\\}f?Fd2v\1dS¡·ÃFð\9aòø\13Þb\"Õ:î6PêO\a¬+³\9f\15ÐËâ¬\85ÌvJ¢.Ò´¿\91õì\ 41G\eí1¸Ï\98\94A      n%\10Q1\Z\9fT\ 2áÎÂáíܬ£ß\83-\88\fÛié\15\93T7i\8fÃåçÛPw©¬\88³\16±¹`\9a^/c\e\Z\85û]~AÁ·  û=E_Â\'n\881â@#áU\11î_Ô\Z\82âèb±ÉëXyúÏ\9f\15¥!\1f\13¬<äT\84\84\84\"1çÛí\9csÏ»\1eîXeöu\95Ô«sXê*âS\1du2òìPÅTdGÁaUXP^H+\8büa«SQÒn®\n\84MQê»\96³Ó\ f!àv\ 5W\9aÊ\89i\ eãü\9a²\ 6\ 6dDD|»W¡B²)Ò¨\90¯V¥U\ 2+×B£\8aÒ\95\16°\18ØDb\"#¶wLÝ\"]læ.æ8Ú1\ 4H\9b* ]\80\19ò#®Þ\ e\b\9f\88\9f\87º~ð\17\18Ky< å4ÖNÎêÄæÛÑ]7¦\8döqCfÂ\93\ 3qd\9c¾³Ev Q>æ\8bî¡\84Ϻø,wßMZ \"\11·ø¬UZ\8dã1>a\b@Ìm\"\19W2>%ÆÊ­]@\94!`\94¥C\vZ\94±\81\ 3\10 \01\ 2 1\ 2#\11\11\eG¹áò\15*ݯ3\13(·]6S3\1e\93*p\18LÇøv\90Æ]Éé<¢\17üß\96ÓW\1d\8cefD~\1f^\95v/\1f\92­\13·R­êîY\84q\19Tìc©{»×\82\8f¿\Z,\93.½Y}\ZÚ\8b\vgo\ 5\9b®\98\88\15\91Á+Å\0\b\80\95\84ì rÅ+ÙÞVP£y-\e¢\94¢\9fÊ»\ 5x\18\ 3\1e$J\7f¼>ýl\9a\87\84\82èY\98\8dº¬¯«(-|ÿ\0Y\15°b7óØcÛ©²»mãôÞ\90«¿êTr\Z¼\8e=?³i?_M½ú\99\8e?&\90Èãy\7f©\99ÅÙ\81ÿ\0ÊgÛÏhå1\ 3\98\1dö\8dÿ\0Hä[\7f\9a\7f_\7f©´rã#ËëÆf&cøÄ\7f\ fgÿÄ\0\1f\10\ 1\0\ 2\ 2\ 2\ 3\ 1\ 1\0\0\0\0\0\0\0\0\ 1\11!\01 A\10Qaq\91ÿÚ\0\b\ 1\ 1\0\ 1?!á\'³û\92sXÞMo\91Ù\ 5V×àdõ:\84\92Eõï\11\8c¹ÍAá+¶Ëäc\17\84/WÉÑó\9eh;\116G\Zè\1ek\fPkë\98^\96\ 4Þ`h\82\84\18\11ä\ fÔ,\11w\ 3\1e\90\ 4ãe\83.\ 2\ 3\98\0\91\9eÏ\94S\\B+p·Ö\15D\f£ÞP@(\96êº\93·ÄpÇ\'>\87¦[\fÂJ\"\8cm\bÆü\7f  ðñ4r\0<º\90D ÃX¥8$×N£É\9d\9dZ\97\nÅf\86òùüî¯\9d\ e\ 1 1\94\9c\18\13\ 2(.l¼\81\ 4p]¢\97Q\e\n¡\9e\98\87ЬÔ>\8b+\893µ¼Ê<9áw:ä¡k\97¢Í\85Ø\0Èg\85² \11*,ÁÊP¨R\ 5dþP*\81&Oï\975àwÅ\ eÉBÓ?!#ÄØV~Q\18\ e\n$¡ç¬¬0³\'\"ç\bïÑhæÀÆàI¢ö2%úcáùÓù\93\9e5Õm\ 3TOcc\1c½Ì0ÎQ\ 6\94 \9a(Ö\\9¥`£ÛVÉØSS\99H§a\82DêX_\'Í\90\10d\9am²¬&\98v\9eUiC\n\b_J\1f£ÇÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10\ 1Æ\b\0\ 2\1cp\0\f£B$\0    8\0\0\0\ 3ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 3\ 1\ 1?\10OÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@ÿÚ\0\b\ 1\ 2\ 1\ 1?\10OÿÄ\0\"\10\ 1\0\ 2\ 2\ 1\ 4\ 3\ 1\ 1\0\0\0\0\0\0\0\ 1\0\11!1A\10 Qaq\81\91±ðÿÚ\0\b\ 1\ 1\0\ 1?\10ê¡´>Z\9cø°Ý4´;åÁåÄ\13HÞ©\eüï\0ª\83ýò¾\8cƼ)\ 1\87a{­\\À×äº\7f\85É\vÏ°ÛºÂB\84\13\98z)\95¬\1eòctÝT\11ºá¯¾ß:@BÜ°\n\nCi\e\16\92ái\\f ojq¥O>\b ¬+K*×\9cÌ®-\8fR\98\8c\8a\91d\81\8e`CèÎwd\vnÔå\8a3\98[\Z\ eG   f\93\15cAµ®-\94A4\85|V<\91\ 5ΰs.e2Æ\fe£n\9b[\'+öà\ 1£Xª^ÇÌ\10\96`g\10°\nH{4­\97A\87o@¥º\9dÇ\93*¼éå`û p\ 5¨\81E*\1fn\ 2Î\9a§§û¬5\0/\ 1 Æ8Ö\8f]\8d\95\17ØÊ´\12\vË£n§Àvºb\83`F¥é(\9dr\16ºÏ\'8\97\811\16Ë.*a\11ïld\ f\r\15\'¼ì#\7f^Qut¯\ 6n\9bá0ñ,t\8fÙÑP¾\ 5ü.\18R2ÆÐ\11\19Ç\14àdZÉ\929Ëo®!®\f\Z`\'ìR[\16\85\8bͤ\85ã\88PDhªø\94B\101\ 6Áó=Ã,\9bÓ¯q«°\98\n\bQv§p\89eJtVàÅ0ñ0Ð#Gßõ\81A¶Ä\ 5Þ\1co\12 âû\ 3+l`PIAÞêN\0\f\vÈ\1e´÷zn\0&\93\88ß\\T\86\0÷«\10ª¯N ~(QJ_OÿÙ',5,0,'','','',''),(54,6,17,'52754cfc79010af9','b4cbb73d1178aab3424a788419bbe016','2015-02-02 18:53:04','2015-02-02 18:53:04','','','Contact Photos','2.jpg?rev=2015-02-02+12%3A02%3A11','image/jpeg',48,48,2064,'ÿØÿà\0\10JFIF\0\ 1\ 1\0\0\ 1\0\ 1\0\0ÿþ\0<CREATOR: gd-jpeg v1.0 (using IJG JPEG v80), quality = 100\nÿÛ\0C\0\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÛ\0C\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1\ 1ÿÂ\0\11\b\00\00\ 3\ 1\"\0\ 2\11\ 1\ 3\11\ 1ÿÄ\0\Z\0\0\ 1\ 5\ 1\0\0\0\0\0\0\0\0\0\0\0\0\b\0\ 1\ 5\a       \ 6ÿÄ\0\14\ 1\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0ÿÚ\0\f\ 3\ 1\0\ 2\10\ 3\10\0\0\ 1ߦp\90\96,rÎÉ4Y\rd âÝò/\9c\ f\'¡Ã©Ü_\14;\ f\ 4\\l¨é\"6\91 #\ fÿÄ\0\1f\10\0\ 2\ 2\ 2\ 3\0\ 3\0\0\0\0\0\0\0\0\0\ 4\ 6\ 5\a\ 2\ 3\ 1\b\10\0\17 ÿÚ\0\b\ 1\ 1\0\ 1\ 5\ 2òvô@\86\9f\ f~e\rïa\9c\ fIªº¡]\81\ 4\8bØ\12l%Eú\89÷ì¤/.tm¶%uÖ¦]R\95¿fYKáv³F\12¹Jù;2\nô2dk3® !b\"³³ë}\8e¹É7p·\1d«n½úí\98ì¥Ñ0Ç\1c0ðÁG8J°R\ 2¯\8c\13Y£þ\ 2\17XBÿ\0ÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\ 1\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\ 1\1fÿÄ\02\10\0\ 2\ 2\ 1\ 2\ 5\ 1\ 5\ 6\a\0\0\0\0\0\0\ 2\ 3\ 1\ 4\ 5\ 6\12\0\11\13\14!\"\a\10#1B\15 2Aab4CQ\81\82¢±ÿÚ\0\b\ 1\ 1\0\ 6?\ 2÷\ 6\94¯nþ£Ô¤î\84átÆ9ù\8b+oæ\ ej i¬Ãù«îz\89å2à\\G       °Ê¶(\9bB\fªÛèw\b\99ú\eÛ:ÂwÇçÓqÇëÏîj\1c®)§_%k¶ÃS²¹ÚʬÊ3·e\95\14y\a&¿XÒqä\e\0Q<ã\8aÚÚâ\ 5Ú\8fWw\16\87{ëb\86ÓUZ²\98\\Ê\"Ô§¾°Q1-&¨OwD8/h\Z\1fSÙ¦½?5ç1§\9dV\95¼mÚ-°\b+C\r¯/\ 6¤Ü\13`zÛJ¶ó_I\8aæx]VUÆ¥«bêÙ\nÁ2K^B\93Jµ®\8c\97«¢Ã\ e²`¦HVÁ\ 2\"\91\92\9fv¡Ó5vý ä\ 5Ü^ùÚ\13\92Ç\9cZ¨¢/ l\Zûb?¢\1d%?.(i»\"U5\ e\87m\8d9\9dÆ8zv*2½«\13PÍsê\81mm£ºc\97]6\ 2?\a\18\8ff\98du³ÞÓ²)ÂV3\9eI©MVé\1d·2|Ï6É©\1e\ 6v¨ì7ñ, °ºJ£{\8f³\91%j×-½Ýû%/»b\aè\ 6X3é\ 4ÌÈ*\0fg\97?vO9\93oF\86&\8d\8böÙó\98Me\93\ fl}F[v\80üÈæ\ 6>|#Yk[\97±ôòP74þ\88¡i´ic±nø\94\9d\9feb\v9lµ\84JÝa\ ftP«%)\8a{÷r°Ìn2\8d\ 6\\>­ÆT¬\942Û=_\12Ë\16\ 2o?QzÛ$^©óæxÓ9¼EÔcuV\8bË\86c\ 3\e(¾wªlã²\0¯\8dÚÛ\14\84uSñRC\ 6\"q&\13W!ª1¶qõ&\16\19<\8d)\8c\9e3\14ÒÚ\1dKlVËË¡¾\7f\8f,|!\vø\97f¨s\9e\16ä\981M\ 1\ 5\ 4\ 6\a\e\84À\87\9c\10\90ÌL\14xåæ8Êã\a\9cÅëz~»F>ºìÔ\98\88´¹ý¬­Õ\ 2ý¥<ø\10\18\81\11\11\11\18\8eQ\11\11Ê\"#úD|½öiZP:µ´:µ\84°`Á¨zÉMY\8cø!0\"\12\89ñ1<ijVLÍ´ñ½§3\99\92éÖ{\92\80\99\9f?\r\0°\8fÐc\89®ß!&\96\7f\92\1c·\87û¬~ꪫÂÕ\13\ 3ýÌ\8fþ\97\1fÿÄ\0#\10\ 1\0\ 2\ 2\ 2\ 1\ 4\ 3\ 1\0\0\0\0\0\0\0\ 1\0\11!1Að\81Qaqá\10¡ÑÁÿÚ\0\b\ 1\ 1\0\ 1?!\98çÎ|Ï\99\17\85}±c\14I\9c´Î,ã>\0ÚÄ\87{\89÷ß<N;ßö_âÏ3Ècn\1dÆÊBã¦ÊööD(5ÂþfBøbD\88ÉÒ\1dª\1coV\7f\99ÄB\ 6}/Ï\v\10 \82(áÀ\ 5-\ fv\81\83\9a\f°\86j\15Gì`\90MwmÙ\7fVÒAa¯®÷p\12g$5\ eACµ\88\82Ëû|Ly£\8d³Üp­PH×£[\95Á°ØôdC\15ó\81\97O\88-Cw¸.\88\ 1Eß=RV5LFà½\92÷\v\rÐzIbà\8b0CÃ0\0\ 1 ôü}÷ûú\82©íQ>\95\89HFá E1b\15\1cHZÙÅ^Nðïj\87\1fÏiÝNë½ÜtüzCR\8aUPÇì\9fÿÚ\0\f\ 3\ 1\0\ 2\0\ 3\0\0\0\10SÍ\0\ 3\ e4ÃÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 3\ 1\ 1?\10\1fÿÄ\0\14\11\ 1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\00ÿÚ\0\b\ 1\ 2\ 1\ 1?\10\1fÿÄ\0%\10\ 1\0\ 1\ 4\ 2\ 1\ 3\ 5\ 1\0\0\0\0\0\0\0\ 1\11\0!1AQa\81\91Áð\10q¡Ñá±ÿÚ\0\b\ 1\ 1\0\ 1?\105Ñ´ÕÅ,ÇS\18{T\v\0\ 6N\0Jm\89ºólZ¡âå+T\9e\14H;©\8e\910\8fTNvb\8c\99Ç\88ãQÊß{fõûü\8f\8fu\1c\'\v¯÷G^Ê(ë\1cédd\84[J\83æM:Ðvú>\91¹Çh÷ô\ 2äú½»NÔÒÝ2£\ 5ûð7\9f^w\8ap¶8xÞ\87\87\8bî\90Ö\bÈ)\ 6ÌÆ= \8a\14vtÚ\94&S\8e·\9a\85\18\84\87\80Í\8f_üo¨qï\1d\1e\1e»¹®Øæ\97h0´ùzG\15\128IË-\9b\1cf³=Íc5\r^\8fô\ 5ïû2zJ\v\98,\ 3#»v\16k\19\8f2\88+}\8a\ 6{@иÆ$\'.\9a{.B\96<5|(:  \11+ù Ý§\96q\16\9b¶k×\1c9¿\8e\97\9e\158þÂj\n:\8dàQU£»¨²5\ 6À\82ÎÖ\ 6 \9b6\8eo\17(@-h2qÒÏ\8f¾(Õ´~÷ß|\98½|ö\7f4\16º\84\80e\ 6\1f       Öfø¡Ï\82ùä\n\18<eÍ\7fÿÙ',6,0,'','','','');
+/*!40000 ALTER TABLE `photo` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `poll`
+--
+
+DROP TABLE IF EXISTS `poll`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `poll` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `q0` mediumtext NOT NULL,
+  `q1` mediumtext NOT NULL,
+  `q2` mediumtext NOT NULL,
+  `q3` mediumtext NOT NULL,
+  `q4` mediumtext NOT NULL,
+  `q5` mediumtext NOT NULL,
+  `q6` mediumtext NOT NULL,
+  `q7` mediumtext NOT NULL,
+  `q8` mediumtext NOT NULL,
+  `q9` mediumtext NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `poll`
+--
+
+LOCK TABLES `poll` WRITE;
+/*!40000 ALTER TABLE `poll` DISABLE KEYS */;
+/*!40000 ALTER TABLE `poll` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `poll_result`
+--
+
+DROP TABLE IF EXISTS `poll_result`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `poll_result` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `poll_id` int(11) NOT NULL DEFAULT '0',
+  `choice` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `poll_id` (`poll_id`),
+  KEY `choice` (`choice`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `poll_result`
+--
+
+LOCK TABLES `poll_result` WRITE;
+/*!40000 ALTER TABLE `poll_result` DISABLE KEYS */;
+/*!40000 ALTER TABLE `poll_result` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `profile`
+--
+
+DROP TABLE IF EXISTS `profile`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `profile` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `profile-name` varchar(255) NOT NULL DEFAULT '',
+  `is-default` tinyint(1) NOT NULL DEFAULT '0',
+  `hide-friends` tinyint(1) NOT NULL DEFAULT '0',
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `pdesc` varchar(255) NOT NULL DEFAULT '',
+  `dob` varchar(32) NOT NULL DEFAULT '0000-00-00',
+  `address` varchar(255) NOT NULL DEFAULT '',
+  `locality` varchar(255) NOT NULL DEFAULT '',
+  `region` varchar(255) NOT NULL DEFAULT '',
+  `postal-code` varchar(32) NOT NULL DEFAULT '',
+  `country-name` varchar(255) NOT NULL DEFAULT '',
+  `hometown` varchar(255) NOT NULL DEFAULT '',
+  `gender` varchar(32) NOT NULL DEFAULT '',
+  `marital` varchar(255) NOT NULL DEFAULT '',
+  `with` text NOT NULL,
+  `howlong` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `sexual` varchar(255) NOT NULL DEFAULT '',
+  `politic` varchar(255) NOT NULL DEFAULT '',
+  `religion` varchar(255) NOT NULL DEFAULT '',
+  `pub_keywords` text NOT NULL,
+  `prv_keywords` text NOT NULL,
+  `likes` text NOT NULL,
+  `dislikes` text NOT NULL,
+  `about` text NOT NULL,
+  `summary` varchar(255) NOT NULL DEFAULT '',
+  `music` text NOT NULL,
+  `book` text NOT NULL,
+  `tv` text NOT NULL,
+  `film` text NOT NULL,
+  `interest` text NOT NULL,
+  `romance` text NOT NULL,
+  `work` text NOT NULL,
+  `education` text NOT NULL,
+  `contact` text NOT NULL,
+  `homepage` varchar(255) NOT NULL DEFAULT '',
+  `photo` varchar(255) NOT NULL DEFAULT '',
+  `thumb` varchar(255) NOT NULL DEFAULT '',
+  `publish` tinyint(1) NOT NULL DEFAULT '0',
+  `net-publish` tinyint(1) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `hometown` (`hometown`)
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `profile`
+--
+
+LOCK TABLES `profile` WRITE;
+/*!40000 ALTER TABLE `profile` DISABLE KEYS */;
+INSERT INTO `profile` VALUES (1,1,'default',1,0,'admin','','0000-00-00','','','','','','','','','','0000-00-00 00:00:00','','','','','','','','','','','','','','','','','','','','http://192.168.22.10/photo/profile/1.jpg','http://192.168.22.10/photo/avatar/1.jpg',0,0),(2,2,'default',1,0,'friendica1','','0000-00-00','','','','','','','','','','0000-00-00 00:00:00','','','','','','','','','','','','','','','','','','','','http://192.168.22.10/photo/profile/2.jpg','http://192.168.22.10/photo/avatar/2.jpg',0,0),(3,3,'default',1,0,'friendica2','','0000-00-00','','','','','','','','','','0000-00-00 00:00:00','','','','','','','','','','','','','','','','','','','','http://192.168.22.10/photo/profile/3.jpg','http://192.168.22.10/photo/avatar/3.jpg',0,0),(4,4,'default',1,0,'friendica3','','0000-00-00','','','','','','','','','','0000-00-00 00:00:00','','','','','','','','','','','','','','','','','','','','http://192.168.22.10/photo/profile/4.jpg','http://192.168.22.10/photo/avatar/4.jpg',0,0),(5,5,'default',1,0,'friendica5','','0000-00-00','','','','','','','','','','0000-00-00 00:00:00','','','','','','','','','','','','','','','','','','','','http://192.168.22.10/photo/profile/5.jpg','http://192.168.22.10/photo/avatar/5.jpg',0,0),(6,6,'default',1,0,'friendica4','','0000-00-00','','','','','','','','','','0000-00-00 00:00:00','','','','','','','','','','','','','','','','','','','','http://192.168.22.10/photo/profile/6.jpg','http://192.168.22.10/photo/avatar/6.jpg',0,0);
+/*!40000 ALTER TABLE `profile` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `profile_check`
+--
+
+DROP TABLE IF EXISTS `profile_check`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `profile_check` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `cid` int(10) unsigned NOT NULL DEFAULT '0',
+  `dfrn_id` varchar(255) NOT NULL DEFAULT '',
+  `sec` varchar(255) NOT NULL DEFAULT '',
+  `expire` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `profile_check`
+--
+
+LOCK TABLES `profile_check` WRITE;
+/*!40000 ALTER TABLE `profile_check` DISABLE KEYS */;
+/*!40000 ALTER TABLE `profile_check` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `push_subscriber`
+--
+
+DROP TABLE IF EXISTS `push_subscriber`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `push_subscriber` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `callback_url` varchar(255) NOT NULL DEFAULT '',
+  `topic` varchar(255) NOT NULL DEFAULT '',
+  `nickname` varchar(255) NOT NULL DEFAULT '',
+  `push` int(11) NOT NULL DEFAULT '0',
+  `last_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `secret` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `push_subscriber`
+--
+
+LOCK TABLES `push_subscriber` WRITE;
+/*!40000 ALTER TABLE `push_subscriber` DISABLE KEYS */;
+/*!40000 ALTER TABLE `push_subscriber` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `queue`
+--
+
+DROP TABLE IF EXISTS `queue`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `queue` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `cid` int(11) NOT NULL DEFAULT '0',
+  `network` varchar(32) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `last` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `content` mediumtext NOT NULL,
+  `batch` tinyint(1) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `cid` (`cid`),
+  KEY `created` (`created`),
+  KEY `last` (`last`),
+  KEY `network` (`network`),
+  KEY `batch` (`batch`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `queue`
+--
+
+LOCK TABLES `queue` WRITE;
+/*!40000 ALTER TABLE `queue` DISABLE KEYS */;
+/*!40000 ALTER TABLE `queue` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `register`
+--
+
+DROP TABLE IF EXISTS `register`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `register` (
+  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
+  `hash` varchar(255) NOT NULL DEFAULT '',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `uid` int(11) unsigned NOT NULL DEFAULT '0',
+  `password` varchar(255) NOT NULL DEFAULT '',
+  `language` varchar(16) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `register`
+--
+
+LOCK TABLES `register` WRITE;
+/*!40000 ALTER TABLE `register` DISABLE KEYS */;
+/*!40000 ALTER TABLE `register` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `search`
+--
+
+DROP TABLE IF EXISTS `search`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `search` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `term` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`),
+  KEY `term` (`term`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `search`
+--
+
+LOCK TABLES `search` WRITE;
+/*!40000 ALTER TABLE `search` DISABLE KEYS */;
+/*!40000 ALTER TABLE `search` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `session`
+--
+
+DROP TABLE IF EXISTS `session`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `session` (
+  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
+  `sid` varchar(255) NOT NULL DEFAULT '',
+  `data` text NOT NULL,
+  `expire` int(10) unsigned NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`),
+  KEY `sid` (`sid`),
+  KEY `expire` (`expire`)
+) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `session`
+--
+
+LOCK TABLES `session` WRITE;
+/*!40000 ALTER TABLE `session` DISABLE KEYS */;
+INSERT INTO `session` VALUES (1,'e5uo85hrg47l37eitmp1603f55','last_login_date|s:19:\"2015-02-02 18:52:53\";new_member|b:1;post-random|s:12:\"677482169573\";sysmsg|a:0:{}uid|s:1:\"6\";theme|s:0:\"\";mobile-theme|b:0;authenticated|i:1;page_flags|s:1:\"0\";my_url|s:39:\"http://192.168.22.10/profile/friendica4\";my_address|s:24:\"friendica4@192.168.22.10\";addr|s:12:\"192.168.22.1\";cid|s:1:\"6\";return_url|s:7:\"network\";sysmsg_info|a:0:{}',1423084041),(2,'1eer3br92tt8r1bg3ru6sci2u5','sysmsg|a:0:{}return_url|s:0:\"\";sysmsg_info|a:0:{}',1423069427),(6,'msfi6i2c9pb1ru7o27m19ibve7','last_login_date|s:19:\"2015-02-02 18:59:46\";new_member|b:1;sysmsg|a:0:{}post-random|s:12:\"997226815254\";return_url|s:0:\"\";',1423083643),(10,'ijeq5r2aikdklvn958lvjpg0g2','sysmsg|a:0:{}last_login_date|s:19:\"2015-02-02 18:48:19\";new_member|b:1;post-random|s:12:\"475784340921\";return_url|s:0:\"\";',1423083738),(103,'qp6tfioltietrj8mvj2nadp3c2','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903903),(104,'k1lmm7fs2tsn6oe4g49ursv365','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903903),(105,'cnj2j5coti8bfvid93mkg55m83','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903903),(106,'v1cti2smq40h8j2flpfvobq765','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903905),(107,'cej2cukgbn8uahkt9i9ju82q90','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903906),(108,'uqrh60tnl04d07tt96lbv1va56','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903906),(109,'t0svkrr59ghr6gln091icjsss1','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903908),(110,'gqqf2ddltfc8unfhu6q3v9ldj6','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903909),(111,'a65jg21e2urroebfg14c6ucvj7','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903909),(112,'ervddehh0rneh1svmmkss0ai32','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903911),(113,'13qmbsjvq2gn5tgcieu954bdf1','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903912),(114,'ehhlnovkjl34mart97ipl5or24','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903914),(115,'oijspnp9vbama2fv95e17g5be5','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903915),(116,'vk8smnnp185mm4f4ka56tokan4','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903915),(117,'darku8a6m7renp4p1umva24g15','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903917),(118,'3rktto33uq0rf1c0ukpmi572a6','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903918),(119,'bnh0ctaih79fjm42skdr451ef2','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903920),(120,'pq6hs2qjs1kntlb8v35quqlem0','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903921),(121,'fmmck608369tjsqq7eidojs532','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903923),(122,'hc6c408uofhm2le3knfim1cha2','sysmsg|a:0:{}sysmsg_info|a:0:{}',1422903924);
+/*!40000 ALTER TABLE `session` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `sign`
+--
+
+DROP TABLE IF EXISTS `sign`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `sign` (
+  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `iid` int(10) unsigned NOT NULL DEFAULT '0',
+  `retract_iid` int(10) unsigned NOT NULL DEFAULT '0',
+  `signed_text` mediumtext NOT NULL,
+  `signature` text NOT NULL,
+  `signer` varchar(255) NOT NULL DEFAULT '',
+  PRIMARY KEY (`id`),
+  KEY `iid` (`iid`),
+  KEY `retract_iid` (`retract_iid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `sign`
+--
+
+LOCK TABLES `sign` WRITE;
+/*!40000 ALTER TABLE `sign` DISABLE KEYS */;
+/*!40000 ALTER TABLE `sign` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `spam`
+--
+
+DROP TABLE IF EXISTS `spam`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `spam` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `uid` int(11) NOT NULL DEFAULT '0',
+  `spam` int(11) NOT NULL DEFAULT '0',
+  `ham` int(11) NOT NULL DEFAULT '0',
+  `term` varchar(255) NOT NULL DEFAULT '',
+  `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  PRIMARY KEY (`id`),
+  KEY `uid` (`uid`),
+  KEY `spam` (`spam`),
+  KEY `ham` (`ham`),
+  KEY `term` (`term`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `spam`
+--
+
+LOCK TABLES `spam` WRITE;
+/*!40000 ALTER TABLE `spam` DISABLE KEYS */;
+/*!40000 ALTER TABLE `spam` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `term`
+--
+
+DROP TABLE IF EXISTS `term`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `term` (
+  `tid` int(10) unsigned NOT NULL AUTO_INCREMENT,
+  `oid` int(10) unsigned NOT NULL DEFAULT '0',
+  `otype` tinyint(3) unsigned NOT NULL DEFAULT '0',
+  `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
+  `term` varchar(255) NOT NULL DEFAULT '',
+  `url` varchar(255) NOT NULL DEFAULT '',
+  `aid` int(10) unsigned NOT NULL DEFAULT '0',
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  PRIMARY KEY (`tid`),
+  KEY `oid_otype_type_term` (`oid`,`otype`,`type`,`term`),
+  KEY `uid_term_tid` (`uid`,`term`,`tid`),
+  KEY `type_term` (`type`,`term`),
+  KEY `uid_otype_type_term_tid` (`uid`,`otype`,`type`,`term`,`tid`),
+  KEY `otype_type_term_tid` (`otype`,`type`,`term`,`tid`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `term`
+--
+
+LOCK TABLES `term` WRITE;
+/*!40000 ALTER TABLE `term` DISABLE KEYS */;
+/*!40000 ALTER TABLE `term` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `thread`
+--
+
+DROP TABLE IF EXISTS `thread`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `thread` (
+  `iid` int(10) unsigned NOT NULL DEFAULT '0',
+  `uid` int(10) unsigned NOT NULL DEFAULT '0',
+  `contact-id` int(11) unsigned NOT NULL DEFAULT '0',
+  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `edited` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `commented` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `received` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `changed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `wall` tinyint(1) NOT NULL DEFAULT '0',
+  `private` tinyint(1) NOT NULL DEFAULT '0',
+  `pubmail` tinyint(1) NOT NULL DEFAULT '0',
+  `moderated` tinyint(1) NOT NULL DEFAULT '0',
+  `visible` tinyint(1) NOT NULL DEFAULT '0',
+  `spam` tinyint(1) NOT NULL DEFAULT '0',
+  `starred` tinyint(1) NOT NULL DEFAULT '0',
+  `ignored` tinyint(1) NOT NULL DEFAULT '0',
+  `bookmark` tinyint(1) NOT NULL DEFAULT '0',
+  `unseen` tinyint(1) NOT NULL DEFAULT '1',
+  `deleted` tinyint(1) NOT NULL DEFAULT '0',
+  `origin` tinyint(1) NOT NULL DEFAULT '0',
+  `forum_mode` tinyint(1) NOT NULL DEFAULT '0',
+  `mention` tinyint(1) NOT NULL DEFAULT '0',
+  `network` varchar(32) NOT NULL DEFAULT '',
+  PRIMARY KEY (`iid`),
+  KEY `created` (`created`),
+  KEY `commented` (`commented`),
+  KEY `uid_network_commented` (`uid`,`network`,`commented`),
+  KEY `uid_network_created` (`uid`,`network`,`created`),
+  KEY `uid_contactid_commented` (`uid`,`contact-id`,`commented`),
+  KEY `uid_contactid_created` (`uid`,`contact-id`,`created`),
+  KEY `wall_private_received` (`wall`,`private`,`received`),
+  KEY `uid_created` (`uid`,`created`),
+  KEY `uid_commented` (`uid`,`commented`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `thread`
+--
+
+LOCK TABLES `thread` WRITE;
+/*!40000 ALTER TABLE `thread` DISABLE KEYS */;
+INSERT INTO `thread` VALUES (1,1,1,'2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38','2015-02-02 11:31:38',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(2,3,3,'2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:34:31',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(3,4,4,'2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:35:41',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(4,6,6,'2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:37:25',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(5,5,5,'2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:43:51',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(6,3,8,'2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 18:50:03','2015-02-02 18:50:03','2015-02-02 18:50:03',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(7,6,9,'2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 18:50:05','2015-02-02 18:50:05','2015-02-02 18:50:05',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(8,4,7,'2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 18:50:08','2015-02-02 18:50:08','2015-02-02 18:50:08',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(9,5,10,'2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 18:50:11','2015-02-02 18:50:11','2015-02-02 18:50:11',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(10,2,2,'2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 18:50:30',1,0,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(11,2,2,'2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:13','2015-02-02 18:56:43','2015-02-02 19:00:13',1,1,0,0,1,0,0,0,0,1,0,1,0,1,'dfrn'),(12,3,11,'2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:13','2015-02-02 18:56:44','2015-02-02 19:00:13',0,1,0,0,1,0,0,0,0,1,0,0,0,1,'dfrn'),(13,6,17,'2015-02-02 18:56:43','2015-02-02 18:56:43','2015-02-02 19:00:16','2015-02-02 18:56:46','2015-02-02 19:00:16',0,1,0,0,1,0,0,0,0,1,0,0,0,1,'dfrn'),(14,2,2,'2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:21',1,1,0,0,1,0,0,0,0,1,0,1,0,0,'dfrn'),(15,4,13,'2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:22','2015-02-02 18:58:22','2015-02-02 18:58:22',0,1,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(16,5,15,'2015-02-02 18:58:21','2015-02-02 18:58:21','2015-02-02 18:58:24','2015-02-02 18:58:24','2015-02-02 18:58:24',0,1,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(17,6,6,'2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16','2015-02-02 18:59:16',0,1,0,0,0,0,0,0,0,1,0,1,0,0,'dfrn'),(20,6,17,'2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:03','2015-02-02 19:00:03','2015-02-02 19:00:03',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(21,5,15,'2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:06','2015-02-02 19:00:06','2015-02-02 19:00:06',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(22,3,11,'2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:09','2015-02-02 19:00:09','2015-02-02 19:00:09',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(23,2,14,'2015-02-02 18:35:41','2015-02-02 18:35:41','2015-02-02 19:00:12','2015-02-02 19:00:12','2015-02-02 19:00:12',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(24,3,3,'2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13','2015-02-02 19:00:13',0,1,0,0,0,0,0,0,0,1,0,1,0,0,'dfrn'),(26,4,13,'2015-02-02 18:50:30','2015-02-02 18:50:30','2015-02-02 19:00:15','2015-02-02 19:00:15','2015-02-02 19:00:15',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(28,2,16,'2015-02-02 18:43:51','2015-02-02 18:43:51','2015-02-02 19:00:18','2015-02-02 19:00:18','2015-02-02 19:00:18',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(29,2,12,'2015-02-02 18:34:31','2015-02-02 18:34:31','2015-02-02 19:00:21','2015-02-02 19:00:21','2015-02-02 19:00:21',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn'),(30,2,18,'2015-02-02 18:37:25','2015-02-02 18:37:25','2015-02-02 19:00:24','2015-02-02 19:00:24','2015-02-02 19:00:24',0,0,0,0,1,0,0,0,0,1,0,0,0,0,'dfrn');
+/*!40000 ALTER TABLE `thread` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `tokens`
+--
+
+DROP TABLE IF EXISTS `tokens`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `tokens` (
+  `id` varchar(40) NOT NULL,
+  `secret` text NOT NULL,
+  `client_id` varchar(20) NOT NULL DEFAULT '',
+  `expires` int(11) NOT NULL DEFAULT '0',
+  `scope` varchar(200) NOT NULL DEFAULT '',
+  `uid` int(11) NOT NULL DEFAULT '0',
+  PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `tokens`
+--
+
+LOCK TABLES `tokens` WRITE;
+/*!40000 ALTER TABLE `tokens` DISABLE KEYS */;
+/*!40000 ALTER TABLE `tokens` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `unique_contacts`
+--
+
+DROP TABLE IF EXISTS `unique_contacts`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `unique_contacts` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `url` varchar(255) NOT NULL DEFAULT '',
+  `nick` varchar(255) NOT NULL DEFAULT '',
+  `name` varchar(255) NOT NULL DEFAULT '',
+  `avatar` varchar(255) NOT NULL DEFAULT '',
+  `location` varchar(255) NOT NULL DEFAULT '',
+  `about` text NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `url` (`url`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `unique_contacts`
+--
+
+LOCK TABLES `unique_contacts` WRITE;
+/*!40000 ALTER TABLE `unique_contacts` DISABLE KEYS */;
+/*!40000 ALTER TABLE `unique_contacts` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `user`
+--
+
+DROP TABLE IF EXISTS `user`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `user` (
+  `uid` int(11) NOT NULL AUTO_INCREMENT,
+  `guid` varchar(64) NOT NULL DEFAULT '',
+  `username` varchar(255) NOT NULL DEFAULT '',
+  `password` varchar(255) NOT NULL DEFAULT '',
+  `nickname` varchar(255) NOT NULL DEFAULT '',
+  `email` varchar(255) NOT NULL DEFAULT '',
+  `openid` varchar(255) NOT NULL DEFAULT '',
+  `timezone` varchar(128) NOT NULL DEFAULT '',
+  `language` varchar(32) NOT NULL DEFAULT 'en',
+  `register_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `login_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `default-location` varchar(255) NOT NULL DEFAULT '',
+  `allow_location` tinyint(1) NOT NULL DEFAULT '0',
+  `theme` varchar(255) NOT NULL DEFAULT '',
+  `pubkey` text NOT NULL,
+  `prvkey` text NOT NULL,
+  `spubkey` text NOT NULL,
+  `sprvkey` text NOT NULL,
+  `verified` tinyint(1) unsigned NOT NULL DEFAULT '0',
+  `blocked` tinyint(1) unsigned NOT NULL DEFAULT '0',
+  `blockwall` tinyint(1) unsigned NOT NULL DEFAULT '0',
+  `hidewall` tinyint(1) unsigned NOT NULL DEFAULT '0',
+  `blocktags` tinyint(1) unsigned NOT NULL DEFAULT '0',
+  `unkmail` tinyint(1) NOT NULL DEFAULT '0',
+  `cntunkmail` int(11) NOT NULL DEFAULT '10',
+  `notify-flags` int(11) unsigned NOT NULL DEFAULT '65535',
+  `page-flags` int(11) unsigned NOT NULL DEFAULT '0',
+  `prvnets` tinyint(1) NOT NULL DEFAULT '0',
+  `pwdreset` varchar(255) NOT NULL DEFAULT '',
+  `maxreq` int(11) NOT NULL DEFAULT '10',
+  `expire` int(11) unsigned NOT NULL DEFAULT '0',
+  `account_removed` tinyint(1) NOT NULL DEFAULT '0',
+  `account_expired` tinyint(1) NOT NULL DEFAULT '0',
+  `account_expires_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `expire_notification_sent` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+  `service_class` varchar(32) NOT NULL DEFAULT '',
+  `def_gid` int(11) NOT NULL DEFAULT '0',
+  `allow_cid` mediumtext NOT NULL,
+  `allow_gid` mediumtext NOT NULL,
+  `deny_cid` mediumtext NOT NULL,
+  `deny_gid` mediumtext NOT NULL,
+  `openidserver` text NOT NULL,
+  PRIMARY KEY (`uid`),
+  KEY `nickname` (`nickname`)
+) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `user`
+--
+
+LOCK TABLES `user` WRITE;
+/*!40000 ALTER TABLE `user` DISABLE KEYS */;
+INSERT INTO `user` VALUES (1,'a76680835da79303','admin','6a4e012bd9583858a5a6fa15f58bd86a25af266d3a4344f1ec2018b778f29ba83be86eb45e6dc204e11276f4a99eff4e2144fbe15e756c2c88e999649aae7d94','admin','vagrant@friendica.dev','','UTC','en','2015-02-02 11:24:17','2015-02-02 11:26:23','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAoPnn8yXCAdkLCgHLlA7I\nMZZH4XnzS93NgpoaFWpGgdX9hbHjmHpbY+0rD1Q0FsOC9W+R3qsDypkstJ4CqPZ9\nSHDs2QupZHVa6LrZFYAZaAd8ViR2KJVFl3Ssb4voGnmexkVQfKJnOZRbMxDJylUD\n1xYwnQRRRH89MMAA8m2gMnHzE/wMbIOiDBO9hbZZVYVmcV7G1YPPp250Tsn+O5c8\nWrIG7Wcq4+gWzzXNJiJdqZinD8FrpHEnmxypRzrvuTnZ71zDhRKFiXBRdBL05fMk\nKsyImSwGQMwzRNnVGlpYRVROuJSS2UEPi/VK6k73srNKteD5TN1tJoZyRKCiyOx6\nnohglwzuj69aCsONf+FezF1jpjtTqvqRAJ4PQgMIVW5UMYXLXYt5Ukk4WQi1OI1x\nrj65v1vnpyYRpdULOe7yyizZNxMmlrzom6TaJyBQjg9lyLwQzbIdBPOmC7KViV/h\nwhYVo14m1aCmL/dM8Cn2USdL0cKyxwhBrdgFX+Amm2JD1Umu1IBPxzAIT8++s8JY\nlre707vkZENvGErINnokQp9uZlQHm03NgiPAIHcp7PURyVvnDeT7B9bZ4WQXrIXR\njhiYau/pZ976IRpKw1E8jVdI/Q+JvWzX4vS+jbwikd9pqQ/q7EoG5OMhYf2xkI7m\nmQj4WxHDsvNm37bilj3zAZECAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQCg+efzJcIB2QsK\nAcuUDsgxlkfhefNL3c2CmhoVakaB1f2FseOYeltj7SsPVDQWw4L1b5HeqwPKmSy0\nngKo9n1IcOzZC6lkdVroutkVgBloB3xWJHYolUWXdKxvi+gaeZ7GRVB8omc5lFsz\nEMnKVQPXFjCdBFFEfz0wwADybaAycfMT/Axsg6IME72FtllVhWZxXsbVg8+nbnRO\nyf47lzxasgbtZyrj6BbPNc0mIl2pmKcPwWukcSebHKlHOu+5OdnvXMOFEoWJcFF0\nEvTl8yQqzIiZLAZAzDNE2dUaWlhFVE64lJLZQQ+L9UrqTveys0q14PlM3W0mhnJE\noKLI7HqeiGCXDO6Pr1oKw41/4V7MXWOmO1Oq+pEAng9CAwhVblQxhctdi3lSSThZ\nCLU4jXGuPrm/W+enJhGl1Qs57vLKLNk3EyaWvOibpNonIFCOD2XIvBDNsh0E86YL\nspWJX+HCFhWjXibVoKYv90zwKfZRJ0vRwrLHCEGt2AVf4CabYkPVSa7UgE/HMAhP\nz76zwliWt7vTu+RkQ28YSsg2eiRCn25mVAebTc2CI8Agdyns9RHJW+cN5PsH1tnh\nZBeshdGOGJhq7+ln3vohGkrDUTyNV0j9D4m9bNfi9L6NvCKR32mpD+rsSgbk4yFh\n/bGQjuaZCPhbEcOy82bftuKWPfMBkQIDAQABAoICAQCfhulxkeKQmDoTYbIQ+RE1\n6vszHPqaHaYTHopo3JghBSMoQiENs3wsLBY3K7gvMvPuLPH/G7U3KtMd71UtgpCn\noJlnguIM1ywPZVPKtdb3vCtg5uNd1ohPzuUv6hNLYWmSjZB04zCu5DH5ClMfu16B\n4dCtWmD7I6lNTYnitfdC5qABFxBs3YpSs6FnCE3BreDWyxj68ZRxFcoXZqAXCApc\nyv6IeGwNzawFDwlOGFJ/xvMQbxswrJ6WXjH3kBWPlyA90M1GbBOAH5npEPw3gdw+\nudFJElLkFjlcqw8//XZqxmD5FOvud0Zj6eOjDjz0kC+izN/iZ7FKs4Q8NID94zSj\nojaEc3/wkrj1+Yi03dLZAmYUjk6o65R0v8ZesE2RguaAD4KHkVXT/B2UGFHHn02+\nzJbj1H+gok3yMs5kpty19yeH2HpVUApprH5vEwjqq1CRcJR44DK41B5IfzJN+won\n7lfjdk+X+3uOQR0e176IKeaPckVe1k7iZrocCGgU+ls7ARBTXCjSb6CD0dJX0HnK\n/3xrS2KvLcz9ZXY4u0ucBM9W6jn4bdNxIVsrbRaUeqeXjhZJ6gdCQw6cVoMGl0xe\nL0+V5RtvQp5L6/2QQ6Q6S0zS87z65eeADw1ZyZiH18Xr2Lg1zbw71S2hYfrvnQLZ\nxh1qJmdYKdz1PkeH0uA4AQKCAQEA1H9z0vrOO2vxaimP3totO63a9GZyY5D0QWMv\nleiTKQezdxGgTY96b3lfzq+Jpcmh7YaN5ID6Uhj3NAU4dj06UuqsUwZzVsFEZ1mp\nzvnP47EQkA1JykRgkPGROCy9V8QwQLzYjeGvJyJ6eaLDI+HxRoX5ZAC3SHpPtt8o\nSkDE9OnIY2k96ohzkozosGL1P68zAhsQwLc9/C11NZpLOTJy5kiQc80p4zx38BuS\n38EjtLRmpw1dtPvgTpEnqdX9Yw3EAkYqa/p6hH99sDzxAF8wxt0tjmm7mtXvl7Nt\nlu4QXSDxrjKma3oxL5HsyQxitQ9U7+DFxRGgqxNjUCaBq6ImgQKCAQEAwe5Q4fr1\n9RGvh20s3P+VNKA5spe4pWPHffyaPvE/cdPutuodd3DODD+a+EKA5bg5bqpMFD4T\nSMTT0da6PI7N2baK6HrONsmi7r8u/qqKRA1/reNqmPKD4xfCSSSlDRXeJGrlqdiw\no1JcNpZEQq1sGXWLRHfm0/MN7wZhk/9Zvgp9fQUYx9hWJ+DfIiP7lFl6YIB88jya\nRKNx652sLk+ZMUPXL61aJDhRHP8mQGOQq/PZrukt07+9VqOhfFvoXh5kDuVl3CmX\n9vcfSMO+oFvEde/B1RtMWZmFIN1BxaBICcCiq2zLsH6z7KlfRI96U9mEfkk4PMLq\neIU/ygrKkKLzEQKCAQEAjXTmup0BKqdZxw0x2+0rTV4Xsrh8D3HQV7LaW5W+WQLq\nYioWp2sK2yhWMfXC0N1f8QmwbVu6x2odLcEH7BYoPEhCPOa/YxI3IgGbO9Aqpu0Z\nFHv0EjTgf7x/qoCF7uYIJSBRnGmPOqMGGvDRrJJdFlBbS0n6uMHLTPZTENL7CfqS\nzjKh5/27yeQJhlnp3uIXN6Ciz1dsaPIt42f6CXJe8JN/rcb2ynFXejww0sj0pves\nmioYpkFB+atBVxq/me/w+n6RAN52LrvcBLUczd2QT+Gu0O3r2E/wNfFY069Yr1Yd\n7JOFG2j1UzB2CwQ2tUcmiKT9oolwhlHau+FWUtYXgQKCAQEArs/oUQwsElFy7JzZ\nSA2LrfiQihCB/XRIK6U8VWiaTD1Cfdfj3/rrgdcEFq28C1dZTgxssAKU14+1cP4i\nutvva0VFSfMJWBHCsXvdHOsV3+pbIaBSQrS5dkfAdrZ1oaoIqMNDaytNbqubPAmQ\nVpqFSx3OAFYk2QHLmZ8i7onLl6dVHxEtGVhFsYTfHqNY8I0H511rQ+ClHyJGWqGy\nx7ww11vT6cJV8zhgxcap8HjPvHD/1M+U479/KU4vDy65871pbJQUkbVcqt5wcOMi\nPuL54WXSUAtfc5UTkGBiHYcx6Lig6e4UXnCYN8kle2PqXRNCf6P48ayyNxnGOpYn\nquF4QQKCAQAjlYJvGcWRxpYrmydnp5ZxkDQhHe+yGjRkarvYv6N78u8hi5mLZhkC\nRcYZOdJd+Oo5QxRxIqoReDStwFscJnswtH4oyPkrg0v/Qlde5+giu26LouAG3edD\nKrj5sGPJxRFUFHczs6Qoj2gd2phc2sNUVcsZcDMeqKzcit8lBO/dTGDoQBsGv63b\n3iwXvorXK5T20QmpDCgDcgNVjCTCXwVHqJhUL0PzGpoROG0+Izt1AE2NQMpwSIWB\nT7g/+ulqim88wxkqdXgaK0B4/JA3u72G1CL+aYiSRCxZBzMVWjrwGFH7FEefMdlp\n2BhqpyDqneDnzk0bxsH7Igoz2hCH+fMv\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKlFbwaAOe6kwcpj8W+IsEKN1iFGOcno\nbzRNnlH0/WaH5e62Kx3Y4lfl2SLoKNVd4eNTR/y0pmIPIlISSZ46sBsCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAqUVvBoA57qTBymPx\nb4iwQo3WIUY5yehvNE2eUfT9Zofl7rYrHdjiV+XZIugo1V3h41NH/LSmYg8iUhJJ\nnjqwGwIDAQABAkAl8HMXEOxrKbBpzYbSyd8/u4yv/o57S8aJAZCnq/KT5Spolsoj\n5FUtU9BHEmDdiyaFizpRbd7BQo2oZRPGoDEhAiEA2Fjcj5mCi0s5Fd6K+kEeRz0i\neuqHQF1DXUr1EENJAqsCIQDIS74g1E5fzeY60z6qpoNCLCoBrLnCrmHuR+GZkCKI\nUQIgF1NtZGYutwoDO6Jk5ZqDwzaKMyp6LqxfiP198qTuiEUCID2lqlgaYCD2k3Tp\njbEiXOXiB+/KBMaZu4SGVTZZeXdxAiEAo0RKX6prYeQ+rXTpuxMczrHkZuD+DTSB\nRRHgZxABlf4=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,'',10,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','',1,'','','','',''),(2,'ea011657ce99b36d','friendica1','dbfada587308ebdfd1da52a5acd46c889d8467ea5051e16fe3dd034d153f897d4878f4b99f43282c2b7425c5136482833a79070ed1846fe40804aecd77738435','friendica1','friendica1@friendica.dev','','UTC','en','2015-02-02 12:02:11','2015-02-02 18:48:19','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA8/tIxRBs81u0V6ug4VXh\nG8omo+8YIckQqL5m7jWJqQ3v0fCrjyO8EcrjXhKC6esafSOlVhgxzFOkqNH8rRGF\ntF00suNJXy/0fh6EFFvifX1hQw1ZCXXlHxmmM4yNkGOzbRXPeVuSxyn1OtQNGRnB\nSGeqdCZc4QMtgPbVPwTTWYB4rSbVGYbEa5vpqY0OFnlIwC+BtQrd0xFEO7+FGfmv\n2jRt7ImRiyFazef0NhZL890IFeB5+rF8fifC3o7OP0kzB75+z5LkBfnsveZCriaj\nwHjUmMOa/hTOVHw4qYIq6XY4Q2OgaGTs2xqBz4/gniKjNSBbRyYy45prFOuJTLmO\ns07078nfg3NbWq5JkszwPen+gcvc4Pv38z2DBc2RxjgU0YbY4ZV053GIzd8hutA4\nm+eD1Cl0NZcEd9OYi3dtXWACPsf2C0/FsouAj1juXWxeRZ9exHphs0tCXt/RPgyK\nOqFPaPRCBL6MUvM0N1yR2TVk3s3Uq0k/4AExcplJGuZt8bMDIGR6g3RF+bXn3eLb\n9SnpnLSIMpHS/N/JVQzMs4W8tkdwi2OiIeNWhYrFH/stfU7KPYXdwVfduDTAv9LA\nY5Yk8oMomfL5b097eKDdzXFJ3rKUXktobl74REtgAfXEA3OgqCXUGPLbS45I8gsZ\nxBFRmmPH3SuOCQSRkY0gb/UCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDz+0jFEGzzW7RX\nq6DhVeEbyiaj7xghyRCovmbuNYmpDe/R8KuPI7wRyuNeEoLp6xp9I6VWGDHMU6So\n0fytEYW0XTSy40lfL/R+HoQUW+J9fWFDDVkJdeUfGaYzjI2QY7NtFc95W5LHKfU6\n1A0ZGcFIZ6p0JlzhAy2A9tU/BNNZgHitJtUZhsRrm+mpjQ4WeUjAL4G1Ct3TEUQ7\nv4UZ+a/aNG3siZGLIVrN5/Q2Fkvz3QgV4Hn6sXx+J8Lejs4/STMHvn7PkuQF+ey9\n5kKuJqPAeNSYw5r+FM5UfDipgirpdjhDY6BoZOzbGoHPj+CeIqM1IFtHJjLjmmsU\n64lMuY6zTvTvyd+Dc1tarkmSzPA96f6By9zg+/fzPYMFzZHGOBTRhtjhlXTncYjN\n3yG60Dib54PUKXQ1lwR305iLd21dYAI+x/YLT8Wyi4CPWO5dbF5Fn17EemGzS0Je\n39E+DIo6oU9o9EIEvoxS8zQ3XJHZNWTezdSrST/gATFymUka5m3xswMgZHqDdEX5\ntefd4tv1KemctIgykdL838lVDMyzhby2R3CLY6Ih41aFisUf+y19Tso9hd3BV924\nNMC/0sBjliTygyiZ8vlvT3t4oN3NcUnespReS2huXvhES2AB9cQDc6CoJdQY8ttL\njkjyCxnEEVGaY8fdK44JBJGRjSBv9QIDAQABAoICAQDacXCs59D0bnXgTM0lE1QS\nIoNIIYj0ruXYf2j+/DY9gznmONoRtYfsUkAR+Pb3YsT7p8+fbtgfPgBeGmxltBuG\n6jCFvdPygqgfx0iwRbhabMiJVUkTnFfA6aER5FTXIz0BfRaebGvVH+7tdfAoOhQA\ntLg7eCGOYN776YPyAWsNZmYleXAwg6YXRqgFY0JqwrptP9uc8Za8JGh4KjiMki5t\naqXEs0L5U6rOUlAnoPzt4Ucc9zefSgvRk934j9l/dhVXaKp3ROgdpa/eMmwfKn9Q\nk56dC/0YYh5+LB47Pk0Xa/5h77At57bdUTVKVmJgk1iW91piMIQ9ngMj3uK2LCjj\nCFQJSd2I5LccaTrCuNRZNLfG4QzMY9CD14haWtxmHBDk1MZLL0mpe7bPCJApoLUO\nfDzkQ7uxSJfw5OIARmgWsjwy55ZiMSLGdimBp3sFtjVGwmG4PYfIeJrDoQ+VcDTy\nJMlEufHvYZNNN9FO9hT7DBUjdwmBrlc70ogV1ea9wV7yUAmExGvRcr9GIOuPwqsF\n4Uok2H31BROWdUUuTd8OoZiAkG9kZqnQyNDxBRxeWo801y8AcdhQYu97QDdwD2DY\nGHNy4lIbD1xtpyodUStXqS4xuTpXU0qcePrnOgv+w4l8ysIDDLV/zifMSJYs2NBU\n/Iot1uCdR2do87A+h1ZLgQKCAQEA+8s0zjVC9pX2lIxiw6S7I0jQxlzs020IceqK\nFtlKaUeKBTpG10dqbAAcxkhn6Ba2GZhzT2ySlSaOk0E34Ttc1jqFyr1wAAkFHzue\nP4QF1nblbl0qveRbHmR8/qGRTwMD2mVdNO1VTBPq70Q4mWthSrsd31jIkon1t0FL\n/QAPZokNHkfwse0NzoqwY62TJsdOPCOb1LJxxi3BykS4Txg9oSeyBIvv3oaPCm+F\n5X/tyddO+LqVseVe7Zy3MoY8oqyyELQazvJqNoVcCeq5ha7m77I//HlHu0RsKNF8\nkNSF6Qqfp+sRh1MUnWz1tBKHDutSQty4jPtIhqNmUgpu5USqlQKCAQEA+A6rUQIE\nMz98PkBIhuE7McC1oSIpyvSGuDlBY9ceq/FKdz59nAacoiEMcNjcTYJnSeSfVpt7\nLomKNP+EzE5vOQYg4y2LHT7l0DJSZmdrDTpx5KC3Sg0vDtKvqwvlpoeiuWjMTTeU\nSB3zrdImVg+2DWZB94zSz81E11bLXrE0nWEyXdsUaZBIbH3x7YDm6CscFoAvEMzg\ndgae6nMJP+v/ZQHDyYAxRDRp8VBT41JZHBz7aB6oIBcbU00r0YgWX9MXI89+WVv+\nUN8nMKRhtYMtvagQZIvLyhoEyZNU8R1ZYmfLRe57ImHhmjjZWzUdqphS0UzpjEnB\nR9cpmecqXv634QKCAQAychHQRmd2E7FlLYMUA0ri1NHPDAr+iNeqSv0DeuEnmoeS\naIyM0OgHXzZkm1kF7JbrJdnkTbJIY4MpCWXyn/wHh44Kgk2QFD6MdVtNClxJDWUF\n6XCIvtlqi2NneGMuW0JIXQqBchMmvM7SxO45/oNtf3OKrbTxduZdop1gwMRVHJwe\nNveIDiA4Ax03uyzCFigccF3mDSIyPDSZG495eTfPs648rvSNtpOt2Y4P3sN7LsHJ\nn0gibfvIyx8A5lf7l3HNWugMEhEpfypjaj1lBReLakDbikjOwfSRcPbt5UY23EQE\nVloarJBywcOwIg4g9RB0CNiIlkd/gfkb8q8pC8rJAoIBAQCAeGh1vgua1yhrvTNS\n19emft4So/TtLhOP2edp5AH4nzEn7O91HV+GAIPG9imy4vTHqmZznnb/tTAlHqkS\nfxTPfcMOpYnFDcxMNaPDcZBZ+4j9FdeXvJhAnxFoDvNTei/mwsX8v+pGJ20K+ynr\nrJtm+Sz1HrQX94HN3R/a3QAY+jvxrAM4YQeBWQExNm9gkuMrLBw0IUenGOq5FfcW\nag2NrIpQE9pwLo0n86hetUl9a+0xEZ+VbyIx1Gf7TvX3jwYO/+m6MhDWpZxQbvJD\n5bqM3TwQNu7Grw8HrwxxC/g9JPB8OXUAa51CGGtJ94pzzgwmZiUXCSPXJzJeiQDC\nzj1BAoIBAQDLbKMPtVrmZY82tZvETtM6hcAJsdhZGHVIMkV3QysrMdgxV+pTBUmR\nGALfZtI/OrQggWCtH4StNseDuq7dRi+AKdMnFGkVp34wcIxQyugHp3yn5/q0ZPCS\nbBP6bi+oh8AJ+FCtkwkIMP3DtTK0j7XuQh+r3XBGl/2yFg0zjsxnNx8tiWa6iTXD\nfai6tjup3C3Dz3hn0oIkSHtk0cbDEYODQFOm+yxU5LmMQ10lPpKf0//q5gOMwgqe\nEk81drQ0dOIvjtf9wV3gNG+1YsIK0H8DsWolySmnjPZ8BP2CusBGIrdUY9Q/ukDo\nvmU1V1rzKCbc8QX/G36jwrNistIgKWf8\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBALg2gbuc+ZJFLmGwm4gzIJ5Lu6yci9rm\nRr6KGQS5FZ5ELZzqABX/hAi1psB3UvzywfVgus/3Al65CTCI+CdH5nMCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVgIBADANBgkqhkiG9w0BAQEFAASCAUAwggE8AgEAAkEAuDaBu5z5kkUuYbCb\niDMgnku7rJyL2uZGvooZBLkVnkQtnOoAFf+ECLWmwHdS/PLB9WC6z/cCXrkJMIj4\nJ0fmcwIDAQABAkEAiiS+F275rdpZlQL3MCV/UZZjsGdZbhgAd4Vii6ss7hjXCA2l\n/74l9K0YiP3R2gg3pepvONN0ohXbzxflkIKs2QIhANyzg9YTIUKolr0xoOjVkjrf\nAPhdbQWgkHz/GVB2XFAPAiEA1az/r0XRIsTkImmI+FicYmfocH1kCHm+HDqVnngj\nH10CIQClg2dCm5QdBowNlPOEye5hgi6bFI2XY8QYScO1SR6P1wIgOPmnN9IzAMVl\nW3OujSH7mRXB2fTlbokf0yEf8iBwpRUCIQC94ofddRjyue2GlUcnNjLjJ9aNVkz7\njdZ8ohUKgtkFJw==\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,'',10,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','',2,'','','','',''),(3,'9e44e9d0b279a4a3','friendica2','2d8912fdf66ea84e9904308bc9fe9e1e6e822af2028749ef2f63e25189f30880fb0378912d08ddbfd100a900d3df2d1a40ca1f1f3a0fcf3571de7a8e9dba6beb','friendica2','friendica2@friendica.dev','','UTC','en','2015-02-02 12:02:40','2015-02-02 18:59:46','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4QpA4flE9v17fh+yrMpR\nU4iKSxLOF/8ROTotrdQsk8HcHkPS7E60QUaRK45gDc9O+7FU1+90V+oo0BqdkJFL\nbFtTogP5fdNSD3ApHz7s03oBX9JenU/8JhxaH1VwEs3lLDlFrywngiYcEDZIeLGZ\nIFK1GWP79+ZwJ9WWoBhzCD4hg4excOWPwwQMjCLYAzI5INEPTw+R3CKD6EsnVLu0\nS+u3zBBsL/A+bgDDfgZoD6igJQlvenK5jStgfbiuVp1mqdXKJ8D+rYz5FQ72Yn3r\nn6AvrXcPQMbLSaUK5m1Ug7beasuhRJ5Z7TVtJ/RLNgA3mOX2A2Vy1i38VYmcTaG5\nom8AYeI/nSvMzJt7FYXOBdxKnSW0UhkXsjBQavefz7sp2Lhcw5U+7eaPi2fIkYio\nVHKU2r8uiJPFfUMAbHA2+rScBjn2lYZH0nfMKrZTzva7y6d19EOsO2aP5e4XNjU8\n0tX/C1iy6LPMCf7xG844iROXi7NPJJoTgx/Sl6+o0oqBl9J5wJDK5U33rUSqYI/p\nsPEfaStqA5CgBAvAsq0N+NQQndJzGfuYaIdfleyUSLIchHhEICE4SN62RHZ6VTlg\nIVCva4xdBrGlkGV/IgE228FwgX4GWELclfUH/KwcGHChlY8dTtVZHbTCuizvPLvl\nXuZQ9ROdQiwkYwGJA/bhM3kCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDhCkDh+UT2/Xt+\nH7KsylFTiIpLEs4X/xE5Oi2t1CyTwdweQ9LsTrRBRpErjmANz077sVTX73RX6ijQ\nGp2QkUtsW1OiA/l901IPcCkfPuzTegFf0l6dT/wmHFofVXASzeUsOUWvLCeCJhwQ\nNkh4sZkgUrUZY/v35nAn1ZagGHMIPiGDh7Fw5Y/DBAyMItgDMjkg0Q9PD5HcIoPo\nSydUu7RL67fMEGwv8D5uAMN+BmgPqKAlCW96crmNK2B9uK5WnWap1conwP6tjPkV\nDvZifeufoC+tdw9AxstJpQrmbVSDtt5qy6FEnlntNW0n9Es2ADeY5fYDZXLWLfxV\niZxNobmibwBh4j+dK8zMm3sVhc4F3EqdJbRSGReyMFBq95/PuynYuFzDlT7t5o+L\nZ8iRiKhUcpTavy6Ik8V9QwBscDb6tJwGOfaVhkfSd8wqtlPO9rvLp3X0Q6w7Zo/l\n7hc2NTzS1f8LWLLos8wJ/vEbzjiJE5eLs08kmhODH9KXr6jSioGX0nnAkMrlTfet\nRKpgj+mw8R9pK2oDkKAEC8CyrQ341BCd0nMZ+5hoh1+V7JRIshyEeEQgIThI3rZE\ndnpVOWAhUK9rjF0GsaWQZX8iATbbwXCBfgZYQtyV9Qf8rBwYcKGVjx1O1VkdtMK6\nLO88u+Ve5lD1E51CLCRjAYkD9uEzeQIDAQABAoICAQCYigG26ucjYGi/8i6Dz1PX\nAntzLdkDDQMYvmXOKT7aHRLedOzY/vRSNsoaMxTK55XLJ8Wx5P8AxJlLjm71Wnc8\niJ8k9/q6nm5GRqmpI1cWdeHOmONHULtC/f7ctGYWaPgJxPyGI7DYGIr3NkRjg0af\nUVCuWEaoH8wwRCgodsoqcSr4ZBcTxpdvAiSbLNctO3Lb2rm8xnoBNGgjIiYT2nP4\n7luUeCFNUVSP7faVSzRoQM3krQOihXdeyGNMdM2/qku3nVG9JqW68A66hnzeACqh\n9cu7kjOFnfqX/cZosP0TlvYmf8bdo1SjZI6MAZylivokquPaI372zQ740CFhwdj4\nixl341WCyi3WV84BGF1HJsMu5zp0pF7brPLl9R1V+U6mY/fHLPf43/v2fAl9s8sO\n5oODG6TMWxrsHbc7KCpwml3AijNO49TgL1jU+rAWEr0CbmTUv0dThRBQtMo5wlr5\n/jrPbRbhM4nIcEvYSW2wRBQtxA4nzFJQn9V2nLn3F5Tcbh7rO7EM2Slmwighehci\nuKWAVKWuc3vs++wSPrZtCBfcxEJ5luNxrwywLWSHFTiW/JonfZKMgCk3h3DHvsWH\n2bxiWVxMFroHvvXHryoFeKLscJeoBpRXXS2K176SVan0pt/kjvz7o5pGr5WPZ89W\njo9qHJruI+yMJ45qdySJMQKCAQEA+MIIoDgs9ejDw2G8298NucGLBB9TLJ7SyXeJ\notfV5mmX34PcnJ+nxa/Z+WHDU3W3FtikJ8cocQ0FfJjfHzwtw3YQDZG/IyB4AbLO\nFf8pCC15doRnFqy1+OYzk7QAg4IaBbR5Han23pJzm3nkMmK1CC4Hrzcok/XhRCj9\nDNSzxPUqy2NsudE//lNNMOdN5dytr7yEHzVwLg3f+zh4g3XHyWcFnjQvpm+amKa7\nOQhYlTJUL97OwuPsPKc2OQApMZSr1XE/Ef8gLThHzZBvuNAOLSLrZa0HuhPivkrz\naB5Ad9MwkTddxh8kER7izkLG1OTg8KvWmbS5za5Svf4A5SsGHQKCAQEA55dz7eDu\nQvf5/WBeD7glHPjwmdfp+KPoqeTSO4zNnAqohwa+i/bOQ0jHy+6A0Vpoj+0kNQ6G\nZTFRX7ofMuZ5/9jbLNDBq1ht2g9m4BKIfaascJSXW6RDUj6YxAaEnLhFTx0rEleZ\nY5ygcbK4Z8HVTV1YeJgyFmmIvjVcRSgzQVVVaXM6LLBrtfzVng7POhgA4Guki0TT\nga0aK7cAsoC1r7QPgSSWCdKGyz0Ok9MAdqG0AeA1Zz0S86lSP6pRpwfDSH6Vdz7T\nMFR3YDQKwNtecLczSg1kZDkIxVVM3ftyJGffcLlnhRbpKPlUmgL4srNNoLC0QatL\nB+IKUOjNFgQ0DQKCAQBPHgd4TeWe4MVCoxdaJvtKlVANo5jknC8WfLp93H/fpL31\nDQ9hkTXfHisJshpZtRriXUz4idNHAYk5M7XjTVSQ0kAQ0MYl+fGxOJlrTZhTTYNQ\nOpQ/FfdajnzhAWMYcIyuO9Q5pxEpgRLb5Ey76cECNQGkrLpvNMjM0OyK5Cu4/PD7\nd0fhYbgkv4HRh/+ymBl1x1OOSYTAYRFX6YIK7a75U5bp1ldBbEWTP5RUc18ZNMSp\n5QeF3NAKCnSodHCloE92t2oD40zslPXhX4rpEOMxX+XWlM3cVO7M7zGzb8u5UKYl\nyaI9nTHvcA9a4soydAlHAqBiiqR90m/mlZ7bRG/RAoIBAQC4MmidUaKPlyW5FhWa\nEQ9LrN/IrMdF4DAkOH/Rp1q9emiyBHY3YlSJhXCLzaWdXXf+yVFb9bKE96XOKn24\nAUIVcMhaK6tt+cZdgpSDMZpnvdI3NKfx1oNI/cqJVtnQwGs30m44h33TkXa3F7u9\nophhkRXVzM9Brix5hH1f7+pcU1+8oE4rzyHMPE03CnZdsUu5M0RLFLHY2PIQxNwE\nHYTkO6V9RLklFNHrAiP/BPrAYDqIp2gyNYxGSmzFgFSzMeRrW2rLzicwsG3GEX5g\nB9pkcgGUK3SmlgpY0VBy2hPdytQXlw8z9pX55d0ZJbXig+QBI6oq9O+XVHx5/79m\nfG9dAoIBAEk3rpte1r7Dt/lCSCFlUfj63nmG8Q1DdqKQQa7w/PnsT0qw7mayZvRL\nPMEvPqBrlmkZen+51r8rGtmAqGnpxD/CcZW4Yi6h91e5fCCq2F5uW33SeV7fHMXy\n6PPEgFF8kpyjgKtq6DAgVvvYm+T5DcBWwTbAkI9IKxCeFDwcDjuFQ2wLX29RVXuf\nRzRrJZ5C36unxRnothJA8sxx8Tv4yNSS7eQ6krGr1xtQtqApPRIDdvzovTecfP51\nGTGHOTn2k1+QgQzFT46XN64zP1QZO05JDEo7M/Ffzov5bz4FvcGyxZfCXlvmfc+a\n3XJwnl4GIBdvQSoa/8wxMTsWdV8Jslk=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAMr1t2Z+nHjBXTuRT8qj8aGt2mkqAT5W\nI/Nl9my/Vo+z3AqfysE9KKXBKtUy/8tRDe1rru1rlGX7aNu8OaXUzzMCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEAyvW3Zn6ceMFdO5FP\nyqPxoa3aaSoBPlYj82X2bL9Wj7PcCp/KwT0opcEq1TL/y1EN7Wuu7WuUZfto27w5\npdTPMwIDAQABAkBbbD211JiFKIzntTgdDqZcbuSwdHRk8QZ2sFpFeBb02YEzDD4C\n70N82B4ewogtvat+PYh7Wf8suQ9PoQMJasihAiEA8ao57LgZKM7xX1YrQrwMOreb\nn03bLsO14CwUJZzAaVECIQDW/70AQMj+cSfbdkiNUa3CqBJyLeGhOpbxxg2RMRWP\nQwIgW2AN/t+tQ6zbvzyJpvYLebgq85UwpwIBJv4DsCUQ68ECIApY0G28sG+eXn6v\nWJqEfcpKcGjSUHOD8FO+ZlTAefslAiEAi6bjWnnaFDqwO2amwtlUeylNM6Qxp7lG\nSo91wUVaDd4=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,'',10,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','',3,'','','','',''),(4,'8f624e0d807c4b3a','friendica3','a4fe179880e01243799458e9090e87bc40746eac1c7f9c2373678d7cb3b15a547fdef510a3670988f567ceaef2aa5a52e98aaac0bf677d0ddff56cbe845814f2','friendica3','friendica3@friendica.dev','','UTC','en','2015-02-02 12:03:07','2015-02-02 18:57:06','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAliSi9id9Ll1dpzXC/lL6\n2/5FYxdn0XYb5I2JeXBNopwbXOLDsnnzXlV2NN8riZaYRQcIbS00OuAvyYj/IG3i\nDykD2zPjVnLEWADtj1YhLSgKcfQgv6Cj/7CPdb1Rg3icbvWdVY9wabcblVa9k+qr\ngK273C47lCQzXgvMtPst1DOzxtVCGmPJJHKjXZ8hDvf/IS0pVGa0zIv9kdofqQV9\nD5u5LuNzRuEGnrpAzpfzMueDppBrrrr37sKrZfCvyYHZ/ouFgZ3bY9NNVnjuFItP\nrcDlJPL8NhGmmzuYtI03MLor+1yVdBKLIJ3G2Bxzn5tynjSX9XZzOQgC3+YVH4TU\n7WDUHjTWJ9mliD2M1WXCp2Lwc/pV1Prnvv057pAqdiMhnddzucV9nLk9X9fR8xyy\nC7PRwx0hkB427EtAYaOTr3RtInP6+cm+3M7wd6ZKTqWAU+Pi20RNrQRsqfHJ7+hx\n+i5rIG6/knB/C+MAAutEH25oY8kJYtJzXid2OBSE462DTuYaee9aGHUDNy+HQau8\nBhJ4/Wsc7Nf/7GRZ38SVT/HQShl47B1AG5AyomyWgwn9J2KJ8kMuScPmBv5u7Mwq\nSjLk5pLkwyUtZwUu8UtsFKw9HLcRksGSze5s2cbw3rf/6jgKycT72Bfm1fjRnv6s\nXt1GdSzfG9zVHuEwRDgTX3UCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQCWJKL2J30uXV2n\nNcL+Uvrb/kVjF2fRdhvkjYl5cE2inBtc4sOyefNeVXY03yuJlphFBwhtLTQ64C/J\niP8gbeIPKQPbM+NWcsRYAO2PViEtKApx9CC/oKP/sI91vVGDeJxu9Z1Vj3BptxuV\nVr2T6quArbvcLjuUJDNeC8y0+y3UM7PG1UIaY8kkcqNdnyEO9/8hLSlUZrTMi/2R\n2h+pBX0Pm7ku43NG4QaeukDOl/My54OmkGuuuvfuwqtl8K/Jgdn+i4WBndtj001W\neO4Ui0+twOUk8vw2EaabO5i0jTcwuiv7XJV0EosgncbYHHOfm3KeNJf1dnM5CALf\n5hUfhNTtYNQeNNYn2aWIPYzVZcKnYvBz+lXU+ue+/TnukCp2IyGd13O5xX2cuT1f\n19HzHLILs9HDHSGQHjbsS0Bho5OvdG0ic/r5yb7czvB3pkpOpYBT4+LbRE2tBGyp\n8cnv6HH6Lmsgbr+ScH8L4wAC60QfbmhjyQli0nNeJ3Y4FITjrYNO5hp571oYdQM3\nL4dBq7wGEnj9axzs1//sZFnfxJVP8dBKGXjsHUAbkDKibJaDCf0nYonyQy5Jw+YG\n/m7szCpKMuTmkuTDJS1nBS7xS2wUrD0ctxGSwZLN7mzZxvDet//qOArJxPvYF+bV\n+NGe/qxe3UZ1LN8b3NUe4TBEOBNfdQIDAQABAoICAApJVEjdB7yHdQUhr8xQzxMH\nZqWVUu2M0/hiogqJ4SfE3jMM7i9qH3xVCpYwvADfKmuAQdmJAU0PUvbRxfjozlYP\nj04TTf38Out0lNH/KqK3XY/VE/FNBi9cX1fHsq/5MW6AsVjNTPxRKTigCrj5mOpl\n/LrnB/nsSQCmek3j743cRPLYZYD9WSiAGiUt48vsvbP+Lhi0OKrS5Hp7oTOpRpot\nJxDJUHqIrDVvuUTuMCFKr0BYIKiF8rqO58NCLCj4FoFT+b+ZmxBJx8Cm5FjP+pOC\n5bAUXacuqmV0PdAQ5LkX6C9+dlbPdmyzoo3n1RwYQFAKdmbAyMAdhmTklInmRdgq\nrkmu6RTIuw4Xg+a9v07dGByuS9334Y35JRaAH0Xyn0OomePjuHrhLO467scAkC8j\nPIDVrOPD6BbBsbH+Pxe80p5ZOITqhznRjeqQdbXR7YZwBBo8hAgPPUB6Nmo6hAp/\niKL6g50zxE3C/Xabo/WZW7Ig/RWcyvX50aaKYbnWIA/C4sBLrUwHFqV4+Wh6fGBk\nET0ued0NvU2TVTJbTpu/K4rOPLxb0AcojvDTmmTncjrsxqcZ+H3Ung03VS82Hes4\npBXxMrHCgsl2HKjIsrQ3lnsIJngim/wZrYvUyYa+WWu0RLG7PaMOOK5GARu3MCk/\n0EzZVZgWPbbERg7H5uU5AoIBAQDGzoT8eJ4HI4BkMgg6Eko4LnRO6aRTOtTmJVVG\nR1rZDlS39oK8dCPv1asZfRXnhCJm7MZfFhvv4sQaMZpCZr5Ddk9Qa6VK9d+/LW7x\nINphRVHnMU1CPkZMNTaBwkEq7RqLZT6nl2coqLCIaHixSINYsL8lf64s+E2GqSX9\n2RPTyDZa/QL8wZfB0ycbyFzx0uo7avCNQfNDXSQqbKkYqBrVUwLYsCxn1SaqQ1lr\nEDsU6LyIvTOvWWXcB019v0kbx/u7Pnqh8r8EGM8/HANJfQFqvACbFHMFWNk7b8vv\ndqsHwPGgFoi+0j3xTepKJq0orUrMqrp219KWwE4AEOXYAam/AoIBAQDBVjKjSHXD\ndwlpt/NG8IdV64TVsmsNpYK873Hg/ckxYCBr6m3K3nKmEPZRt2QHui/N/41wECk3\nktYZ/2cGzQr3lg8+FGWKS05vcvo0SoHbW/Ei+i2dz70yYh1f5pagbPu2dSWsyCvF\npFL0sThKB2X1fJqt2HeIXr3MCkjvixKRNnvsslJu6bWz1WBDPxiAnkEaWrjXhimc\nQXBFoLdiUksElVcdsE/tRWKQEEZ3XPkOjt2fcJ0+rGunVchcoSBdaz0aTE3DhlDq\n4mu02S3JobW70ewuJe5MWt7TDSkTfo/VLsaNNmRgoBBLjvjBvwe2h+QPJs9B62Gv\nkk6K3jJcjXvLAoIBAGKkuiujlZWpMd2FTbuys4zoz+EP4O9DM7v2Ljeu1A77I2Ic\nOIZVgjdQZ5NAE4xKbd9wAIXRrI78j50Hm6jy3dkPbQ9UOjHVie2MF44hZPn6sUbr\nmZAS4kKR7Le5sSgheZhM5ie14gO0n9MvMyOT/UgWeuGaVswNcDou16D7AvGEWCQR\nglfznt8XbEJGyodaxcoxp6YPYSq9nmJGhCit0JKkm7b0wzPJ+WNmA4oyBX68dD/M\n0UZiLz5biUGplhboxakEuUh97/WScdK4jZD7K6bQHeTU4rV2fmMVd7UbxoUUYU+z\nnqpAG2gN5wBf7G9QfNrMo7SwJdeTF6DEwabKPHUCggEBAJgZHgFC8hJyRV98LdFz\nTKUVgg00LfAwc2f739UnEu7bNuZvKSzeT8fBtGaZJgLGQPGIyFaPAD4OMI2HViAN\nk0EwNpGaLj/b+rrG83vL2dkevdfMhbKPScKnWYCmwX03/9aM1rTVTUpRekmyWhwz\nMc0s1+tITtFj52Dr/nElMdg3yspth1hmWGI/zVlZ/AbDeWgoUx6LF5UsDg1Y4Kxj\nHU1fx4c9u8NoQKAhja494FnJnyTdzXcO4ipk3BmzUOjtgsZ7nPnjYylGM4G1EcZ8\nh6JZBbtQb+Z13rKeud/yQ2ltQRq63cD+a5NlyOFzTbgVtB8PYyHy8YjUSyIIqAoT\n7H0CggEBAISlEJboyX8su7AQPH4xIk6qDNfKQsNPqYxLY9CJpNwSpKrIUiR8LtW8\nKCz3MVOXwtSpkS5WIKABtxsJoGRWgUpaH92QPGrw/pPa1uFa3MJylGBeU6zXe11r\n9JR9UhOHMwmQqB+nIONnY/0kTaH/FKdFBYzOzfRbdXbhFwtzzYfgYCoQw1i2WI5o\nkaof0K6KFYY6smvEAvxlVa9/9MmPEdBHvTgLZq8j2fQY4aJ/NmRpqY+E19HQ1xrV\nLojLXcrFzbQN8JvLYaaAAmawArysgxcIFtC4Wx7vVvUiwb6hOoXEVEWvmPE/O54L\nFeFvwaeMJIKLN32PSSd6TCZHTZk16hM=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBANGB/ZPJ5PxQqJbvJ9DQ8Jrn6fI4KaOJ\neODR0GlUPR8M0Phu7IT+LM6Wlu+E0BxRLLvnH8NTdVDX5/wS4FhDYhsCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVAIBADANBgkqhkiG9w0BAQEFAASCAT4wggE6AgEAAkEA0YH9k8nk/FColu8n\n0NDwmufp8jgpo4l44NHQaVQ9HwzQ+G7shP4szpaW74TQHFEsu+cfw1N1UNfn/BLg\nWENiGwIDAQABAkBrZJDRgvpoBAiHZgwo1BGhtiOL0BI4DC30QFjuxQmXshIf+RpN\nzDTdQBMNYMUavTtlXthCBAzHYV7equiFEPDxAiEA+H4kcGLEvUMYy1u7aZRuX6Hk\n4Cqa6TvGgis0bw5d5g8CIQDX1lYM8fAEAoPX8Rekp/cdvHV04xvlYfEGOaa2iwov\nNQIgZrsPqX7Lw0r39yqnYlDBCLxPePVkMcRKnwnplXglDbUCICzAD89XSkBKlTNs\nlU5aVO4haOj3PY1tpR95TIuEgHQRAiEAyfKMJJImU9/HKDONz60iLndP98DOf/UP\naA7kFdSlfhc=\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,'',10,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','',4,'','','','',''),(5,'c23f1ab5f7ca5c73','friendica5','c4020916e31735b16a8e851be06c5a94e7c95d544ad69c05a92b9ebf2992216a2dcb65d4c731405af0e4c098edaf53f49444f01842db3bed2c561ce982639600','friendica5','friendica5@friendica.dev','','UTC','en','2015-02-02 12:04:05','2015-02-02 18:43:16','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyvuTsaZaTgPDm69uxixR\n8qd0ylkeA/IY3KDsI4vjrLuF7WLmU07lzQXmilQJ+MlipIju+wFXx3a8ksavEYpP\n9ZU9YrpXe7zneHRLTxgMDH9IMbSCIUAkEsozpzF02Ft0+G36tzIET2oTuU6uLtx6\nI5ifmF/qFC+4avAoABQg8qfOPpuaP3AJ6FppqEifUsb0lTWqP4zg7PQXC36oKIJ0\nUDuQniVy8lTxVfkhoi/aHZw0khVXe6tDK7C0ALg5U7jLTDNdJ1R0v5iC41QK4CEt\n5x4x008mdk6xLKGZiou1UuEPv/+WSQU1Q21JFzNVGBASkRu7dUVH6k+59VQr3ONI\n5bdbAZviVY3ezFNtBeWWfDk06BWoZwX67eGG/dVsCPnEkuP9CpemcwwGZbYCIqf0\n++5h0CU41CjNShHdBD+Q+ZQmT3I4sAlPZ7x90nA9KfuKM9QyTPQ9EmK2bxq7TKvV\nzLqHptL5mC/VH4FbO1eKf7p/f7XxOaeXGANUaRSPwLSO7lk8lkl/wj7sNJYGYygC\nMLTqH8GTizpyPkSDv5xO6bYn/g3BYFuUM5x1MZVS8MdG2a3L8UzRiXUsm/AjnfSV\nImN2+8bHJI0wy9zRxfEaG8pvbupb7UU5zWr3WRkSVr84Bq1SJNxLfWZj3GHLaesr\nu3exEdYGfxLuG1zHIROVwlcCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQQIBADANBgkqhkiG9w0BAQEFAASCCSswggknAgEAAoICAQDK+5OxplpOA8Ob\nr27GLFHyp3TKWR4D8hjcoOwji+Osu4XtYuZTTuXNBeaKVAn4yWKkiO77AVfHdryS\nxq8Rik/1lT1iuld7vOd4dEtPGAwMf0gxtIIhQCQSyjOnMXTYW3T4bfq3MgRPahO5\nTq4u3HojmJ+YX+oUL7hq8CgAFCDyp84+m5o/cAnoWmmoSJ9SxvSVNao/jODs9BcL\nfqgognRQO5CeJXLyVPFV+SGiL9odnDSSFVd7q0MrsLQAuDlTuMtMM10nVHS/mILj\nVArgIS3nHjHTTyZ2TrEsoZmKi7VS4Q+//5ZJBTVDbUkXM1UYEBKRG7t1RUfqT7n1\nVCvc40jlt1sBm+JVjd7MU20F5ZZ8OTToFahnBfrt4Yb91WwI+cSS4/0Kl6ZzDAZl\ntgIip/T77mHQJTjUKM1KEd0EP5D5lCZPcjiwCU9nvH3ScD0p+4oz1DJM9D0SYrZv\nGrtMq9XMuoem0vmYL9UfgVs7V4p/un9/tfE5p5cYA1RpFI/AtI7uWTyWSX/CPuw0\nlgZjKAIwtOofwZOLOnI+RIO/nE7ptif+DcFgW5QznHUxlVLwx0bZrcvxTNGJdSyb\n8COd9JUiY3b7xsckjTDL3NHF8Robym9u6lvtRTnNavdZGRJWvzgGrVIk3Et9ZmPc\nYctp6yu7d7ER1gZ/Eu4bXMchE5XCVwIDAQABAoICACAJpT4c65P0tCMWhX1x8V1D\nYQOvHTWyOIpaO+tAYScaUgEt4vyzL0I09DZRHWHPJ2qg0ld71sb8zra79VXnZsd0\nTsQOdVBqeH5inKBXQ0+Vp2dw/jkRTqBIme6Bt9eOV9/+O9w+YL/IFmThLkznL7/+\njvIV8XROM+VtEmMwyiKCqeLn3Gi23ll2K8cL71m5XVFPrxdovPepbxm5XAFI1eL0\nA9dyQbpN/el78PsQYnTZ+tIz3CMA3RFASqjyatn0COJ2GPXkNqknAUGwOic2FXCt\nK2AW1hNGSGCrAPkFJBF4xGuhg67yy31g+nBXAc9Sehu9LNFNphQtkURPjLzIgvC3\nEiElZvGUta8nv+Vjiq13iDBf+tIWF9Wz3PIlSs4njKoEBHgOmG12zNsg1CYp8jYi\nhNIzYzwlGmbub8gA3lP1yjuD6SFoWYYJstdnPZbL+1Cn7YQF23fhZUX5TOC0SGqA\nkoYxNYekghf13AkyyL68OEoEnTrIDZbHAH3H8lQZTtqp6bPgx4u6Yo2GpyVmBW40\nRhElGohCnUuqp6zk9rCkEAGadGKsO4TgL7JzpKM4aas3BABt5tczVk7ZILtccTtw\nmh3BAIwaNmsSOvd5zL0HgpTd1lsW9ZmlpRvZCA0BbzWOpvvujOPYj368W0D/rrY+\nlJdAK29yCw4yMXf0cI+BAoIBAQDlGs6gevh3cztgzU5kr6Shw33zYcVCzBxkmlM6\nORqCy+wYJqJoUultBbVHX4f4cKrr47XnRGW5ZwVlj2sb5JIUX9al9M5sFRT4FqnE\nc3DDQqJYeo+xdxwqvzMB/LfMnZattHT6YFUVHrdATtKrngrw0q6mcK5kSokwWrDI\nGIsxdMmNJ0n4MZzU1qNEXj9qVLYe43LoDvCz/LbXzpbOlq8yL/zfKx0XHv8K3taI\npeQyN1CaALyC/33YhWR0FVdhkTsgHeigv8PWISJrD4CgieZeqEMJdYRgnObgHEFw\nIl4ncUkGkNSjLTMUhI3bO1K/4QhDzIPDvLDU8q+twntrJn8pAoIBAQDiz7xl63KT\n9qgtDd6ey+QCnPl5T+Lg1W5m4dOI3IXeQHueI7hLbcUJdqScMMkP7aUJvrpo+19h\nLiMxL4reOHYMZG9XI3o6KSNeOAKbCIjfIdXoQtPyNEw5OWD1O9vr3PfbZrorEWuk\nRaQMSNGikfADHbbN/IALdPoFSGa3YInD+DB1pt/0wnPFM6oJq80XfqYZ+qlnx/w0\nWqUfzh3/U4LpUr3OBJ0jounVx8mkjmOSkFYtWpBpBZghXhrKRZn/Zk6RaondaKmB\nvV2ZNQ/wCc2RzTNkSPxDbsEKyaHnAm7Bcp7RaIzeaz+xBbvrF5SfH2RFpEMdHHnD\nXWtbFDwudeV/AoIBAA+8EJba+zeQ9XIHh6vImGD3wS22+EpHJGgQZUjpZRW4laVu\n+dZ6Y0e2jaWyPO9mJYb/451XiDj8h1VbTTrkLtgxYNeTAZ5QsFj9jXlNiGAQsn+r\nIzVH/eo9qW4ogiMOa6vQafxMI2vI6UMEZtmciBnUDmSl9oQyzktA30VO0jh6UeFc\n4mqmVaQUfbATXP2bhcqHSnv/kq5528Dkklzr4mpq+04EcwIEgfWoKknGQu7j96gs\nBsZkb6swNh723EJ6K/pfs3te0D9jlS6PKQFdlzHHEpuSs53DCOQ5bJEb+yVwVVib\nF8+BKjHtjKSS5XMCLIQjhqUpz2dAp6oiYkGQqkkCggEAG7UQ6Mp4dsbdCJP3LCLw\nObl/aGhv6NNp5zuTIdb+q4XpFAp9Cwnf1iYeOc5j4YRAcw5Pq1956V8/gVSzfC4d\njan/R//XgJ9h6LKi7tl+DvQNM5BmX+IvpZXy2EJ1vTyDMtQ7zeMU6T5wqeeDZH67\neUX5/PPpmHyzxk1v7trmOYBqOxUlqrrOdbq3/PJ13XblR6stYrY1gxfHsDj3xSco\niORIt5Asuhu+wRTk9ytF0rO7M1Mq7Ql36iuazjbudxrCYlVHfjq46lZ9xqeKyOIJ\nsNQGgSvBVWOERZMYKiZL7WnZKO/CtbEYWMHAkRmSWFX3Y+KLKFVAMrOI19mC+JIC\ndQKCAQBtwU+T0DG3ESoWcbL02m3CYbMU7gbuyDNY6/a0YcH+D1uTVtM4IZPnlWhO\nUhLoe5gGbkY/hLrS5DrkzgHv9Tt8hugXpfC2x7gzaFNmakFxnkMjIiVOoqcPNq0H\n4TZFZlKgtJbgUwER1RK4Waot/1f++JnT5t96n8A3RalfbCT6ScnAGK/P34pSt79r\n1XxSD2SUKNnAnlFoN5vV2TmDGAO3XG4pS0RPTnJTJITz47HNQONgEEiXnBoLYhGQ\nkYu8+UY2B2DkMejLKCMigB8Z3i5N1E0X57X89yUk+/QQ9LzheVTM/pk8UdDrEZ6n\nv2axspuwOp1lOGArmT34cpZbY+U1\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAMio2DnP8bcB7Mfx3BlXepLHE57Ydu9y\nZh0zSne7YDPZdubU7ouhaHAZMyWntP449ybQr3eUyNeuUZZDoVmq++0CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVQIBADANBgkqhkiG9w0BAQEFAASCAT8wggE7AgEAAkEAyKjYOc/xtwHsx/Hc\nGVd6kscTnth273JmHTNKd7tgM9l25tTui6FocBkzJae0/jj3JtCvd5TI165RlkOh\nWar77QIDAQABAkBvctglxAlMzBTnOL42lQ/PViLfpvroI3Hz5fkGZ1wXb0UW/64T\nxFC3UPC8NXWfuvTWSnZ6KbY8PGgQfy7fu/lBAiEA8F2wO7YP05ruqBeNHE/ToJfz\noChbi+e+PBUWiMnH9N8CIQDVtgId76iBZWotVvpmkewdKQf0m6Dff2RLbVICZtm8\nswIgY7VZj8t8UTkp2wy5+o6aqTmfVEapgyXE4kOVL3UUv10CIQCMtW+jYj4iJDHK\ndHAdxIofkPpp9WXwgaH5f5r1dd56vQIhANL5tpKSMdGSNThQZz8UnDSt7kIc6btK\nORPv/J3wm0N+\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,'',10,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','',5,'','','','',''),(6,'ac116e1d642da69c','friendica4','537485cc08fae106246d8990a7f6d615900611eea6356c8efa75fc6cd6b4221fec27c0a753bac3366eca50426a12fa186277036eaf5ab3fc8a533089cb43f954','friendica4','friendica4@friendica.dev','','UTC','en','2015-02-02 12:04:29','2015-02-02 18:52:53','',0,'','-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3nCYawg+HTyQgV7a7Osg\nCXeACOitKLhcb2WDTN/lLOMO7n1lSm3Kdv1dbOc0/lkAPeB2XsLF/aDfoUPWWg4Q\n/oRPrXFIi2dK/cIQVvgOhebQheztAYPJyaYYMWVK7bLbPuKVTyzALqkWD8Zjjtit\n4Uvm3kjmcofKr+/Lw+VFaEBMESQDbP5eTDtQeDGGjluWQMj1/D+V/Tcm+SMrAVIv\njyklQEhBJlYGJ+LsfXv4XXbeH73dkIXkQW5JgWQyPCloJ+PxmmjjEDozsdgmFQXq\n6T9HFVHvW2O2lmDoaTrbIGrULWBpslKZJJrV+LgtkzhP4uuKfJPD2DpMJ4+ixtBE\nzM/o+EuYDTz0P3dTvwruq1t8gUYcQOVUzEp1LM0qYDMVY86XneW1W5xghztl5zqy\nGBMBvjVIFvMVL1cVeXze4zpwwKln2cArepToSpN7lmy9EgBd9mZrVLWosZShB9R0\n05kBc2Tfv7FlixwZ1P8rwJn9sEEs9oa6TnRLL+7L8eqapg6vUI1G7e0HWWEjdHsR\nrYVHYW+ogtOYjrQ1Tfh1W2PtNaez5fGYVBDjC+1vy0scJmqrgy00z7MHBT2WTOAL\noHbdedhpa3UZ0FrsCto+vqil8BcF5aBhi2Hi5YdKtbY3EBsaabcSO2joc7rlmee4\nxdKfDRYXCPysFPhZNgIW708CAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDecJhrCD4dPJCB\nXtrs6yAJd4AI6K0ouFxvZYNM3+Us4w7ufWVKbcp2/V1s5zT+WQA94HZewsX9oN+h\nQ9ZaDhD+hE+tcUiLZ0r9whBW+A6F5tCF7O0Bg8nJphgxZUrtsts+4pVPLMAuqRYP\nxmOO2K3hS+beSOZyh8qv78vD5UVoQEwRJANs/l5MO1B4MYaOW5ZAyPX8P5X9Nyb5\nIysBUi+PKSVASEEmVgYn4ux9e/hddt4fvd2QheRBbkmBZDI8KWgn4/GaaOMQOjOx\n2CYVBerpP0cVUe9bY7aWYOhpOtsgatQtYGmyUpkkmtX4uC2TOE/i64p8k8PYOkwn\nj6LG0ETMz+j4S5gNPPQ/d1O/Cu6rW3yBRhxA5VTMSnUszSpgMxVjzped5bVbnGCH\nO2XnOrIYEwG+NUgW8xUvVxV5fN7jOnDAqWfZwCt6lOhKk3uWbL0SAF32ZmtUtaix\nlKEH1HTTmQFzZN+/sWWLHBnU/yvAmf2wQSz2hrpOdEsv7svx6pqmDq9QjUbt7QdZ\nYSN0exGthUdhb6iC05iOtDVN+HVbY+01p7Pl8ZhUEOML7W/LSxwmaquDLTTPswcF\nPZZM4Augdt152GlrdRnQWuwK2j6+qKXwFwXloGGLYeLlh0q1tjcQGxpptxI7aOhz\nuuWZ57jF0p8NFhcI/KwU+Fk2AhbvTwIDAQABAoICAQDEVfHSl0XsHGcYKZdnAuoW\nMQor0uP0SzYbhShtlDn+crPdQYVEOsA4Ys4xr6oQzpHuC8+vOI/1nCeHeg8bEcti\nO3rwhksX8KY6cS5m9TAsdFyduVBAxAg6GobEIroOMI5gZTKQ3dkL1mcIqX16ujpP\n3+T5UrNFaCI5RJlAYX/v0sDRaE41yBeHhdszG9O+l4x5xmeIrL9A74tQ3/+3fMlJ\nvXGJ2bzXj5qDXkKLR/8i0CajMbz9MZEVR7lNohjNDWdHvmSke+vfiN/UHAsRB1Yf\nZqDhap6wtcSV2xeIulBrvp9lJfJlWY6exqQSks53YX7xtiFYcDyvAFXznU552Z6+\n24ZbkU0CNRortT+8hTg9kCuyOIPRxxr75L5CWLjbr6BzCR6QcIwtBtdUnkhT9Nan\n2OYwfuuOzayWtIP0PVo0o48T0aoeznmMcKyjLuF7/AX5j0JFq5zQdinjb4iqplJb\nKOAdEglGqe/QDj6erfr93kpbqFM6kN0CmwE7DHQDLSos7G2gkBJ9SY/B/+wes3Ru\nocplcfGTYkWCEajxD14xGsWSjemYMAVf9OvIUqj1uehwfTMMlySn+bhK2y/eif75\n/crcwU7q7Rc46+tenAxxtFQHJD0OvB6Xk4Zm+gT1ybF4KngbUDPDiWhp55aSJZPy\naoAn0Hz5jqdDH3raXWYhwQKCAQEA8KwbYbZDH3qW74gm3cRD03MgpSvGbhsY1uzO\nDG9uQyjkFxkFsqov3KVlmGFmsN8nt6ZVnnUpu+M5te0xr/8+xTfp5geIhZZ2k77s\nmezgGRXlTPns1/419OkOfY4Fww0LRfB2uqZuEVHgbIjUsnOTwhepNYmFqJsb0Svl\nZLUcoKXYDzSM5NugWg0uzMBFLDKI1DK47pp5QdaA4oW5hAsrWmknIvqsaG+M8gZm\nAJYBg320qrMtaX4obYM020UG5WjrTLRFQ4kxztG7nexGHywb+LzKfPmlmiDHNTpz\nJv/VnsZ4yMie5fgUky6JEKMq03xLR/TQ6l8nWABwNe5bhXVJsQKCAQEA7Js6eJps\n5R5h3/IbRkXW3g4FxXVybMKR3NVaINR8zL16ntZPjbhlvJ0jL/wTJscRCXv9+Q/Z\nkdC1/oHAtY7Qd2+hQU0JnK+b7rYORd5b/GPtB4eq7g0e88F/YOjZezvAKswQVNX/\naTl6htt2FllBvC9OT7eSu0SmK52WTBmvUkUy3wLmAqI1iw9JdmZA3Jcam/4rxelq\nIGXwb+mK4GI4NhiE3BnOr+lKABHz5rzg+8TP4f7lBLymRQtrQPsnSvzmesOXrXTw\nrBrcWg9zRJZk1RPfmOn9+O9hxH1ZPvxyXJsBkf42X7TDfnIlb7CT+D+qQ8Yq7Q7V\nlLMSFbTLz4UI/wKCAQEAvWCgFy4k+TMsa4U2GBDk0hDoYi/k7yTxUcV6iTxxhfU6\nLZap7iGOkc+v9szF0m12QkNnYc2NrmOpOKdRDs0JJoTNzwykd4GjArUcVi6XVAXv\nrbeHj5pf+Lweg9tqW0X7VehWdJ6bQ5OqxZyRyW26meKmahMxki+jHt+snKcKxLpb\nHfPa3gaX0eRHrCOrCpElK9xRuqbgvVa9igFxrh5f2b+eZR7c5TzJqnQwdUuUG1Si\nAiQFmtoDk9DHmbZiK8h4Rp4fVnoxMC3GtQiDUOoThJGBv/9tOK+MMS0yCUEMZeiE\niHGc3xZrkjju76GFBG7sic1xSsrfGZcWtMk/SO+2sQKCAQBXudo9Gyyi6tfpO5AH\nRx+6p0JWiwxI7P89/ND0+TPoiZxsRhOq/SKjgzOnt/O13fsgJBvve4P0v4iq+5ri\n9jevAPGuD40vziCnqlKybxZ2Buq8bv3eU3kVcbnzyYHRYj8G3zBy9AFGF2ypkbc/\n5AouZu/HOM4rpvFhnIU8ZA2QGF4bN6zmbxQhIiLfxlvoLhJMojnCoJ+bsZArPlEi\njug+jmq8XMk4ievJCN8Avyk/0CIvrd1mGzgew3QZ3MUd1ZTzEZAsXP5bIX5v2eio\nFob+RecSgDeNU9xRCRTM+LbCRSqY4cNxSsltGY9t0O+cDKbpiBEkYeqovphG+gjT\nQYUrAoIBAFvrF5g6ns04lcEuoKG1SXfxyLcyGvKpaEUMeMrsZFyzjKJsX8zcghgg\nsJUDrC1Qlmj8AokM+h+jYrTB5RnZ1Pf2sClxR+nVpjzLFU746PVM6196ZObUHtva\nXbDOLokhxMzPGC+d9kqJn+R7qiX0LH7wBUq2/8QAyKeZtlVzin58YkFPWSLgdNZr\nSILuvb6O0Ei46Prjog2fl+pnX8tVnXewdWTQHv9mys6wtCW6ANDzHvcOj4onX4Tq\nL3GF2z1HFFZ5mx39P+wcirffJecKeyJ5SvDSkWwPesPF/lmCqW+f5Vu6PLDjkAhP\nigTbSRJm04IWeuH+480HXjZRuHMclA4=\n-----END PRIVATE KEY-----\n','-----BEGIN PUBLIC KEY-----\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBALwNfVA38nGCbi/oAewWsIAfRzrAC9np\nPTYGiYfhOxgI3uXkdwMvcrvW98XGugYAHMAJbuHP2aPOnKiZCNKRLeMCAwEAAQ==\n-----END PUBLIC KEY-----\n','-----BEGIN PRIVATE KEY-----\nMIIBVQIBADANBgkqhkiG9w0BAQEFAASCAT8wggE7AgEAAkEAvA19UDfycYJuL+gB\n7BawgB9HOsAL2ek9NgaJh+E7GAje5eR3Ay9yu9b3xca6BgAcwAlu4c/Zo86cqJkI\n0pEt4wIDAQABAkBUfKsEU151aOggVdgnPbpmlabm2kl4ybVahG1dwu9NyEjttz0/\nEFyN2IQzorUefkhow1jpNC8LGJ8t1dyrXZLhAiEA6eYzvYBXdPUoia4yF8ChRRFp\nSFYgmPIj5FR3MEfKHpUCIQDN0k3BfXBtFLawe1VDEs8CvtWOCjJux+15Si07Mj+U\nlwIhAOgQlV88Ogl5v8myglLctWUwnDO/+EGnZQMC5uqJH7ltAiBJ2/QnQTp9Cnfc\nsQWRwkgjNhQwmpwqgPhJFENTAN8sFQIhAIO04kWVXMXGVCGRVlvPOlHzrIBp3d+N\no/Wp+OK69U1n\n-----END PRIVATE KEY-----\n',1,0,0,0,0,0,10,703,0,0,'',10,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','',6,'','','','','');
+/*!40000 ALTER TABLE `user` ENABLE KEYS */;
+UNLOCK TABLES;
+
+--
+-- Table structure for table `userd`
+--
+
+DROP TABLE IF EXISTS `userd`;
+/*!40101 SET @saved_cs_client     = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `userd` (
+  `id` int(11) NOT NULL AUTO_INCREMENT,
+  `username` varchar(255) NOT NULL,
+  PRIMARY KEY (`id`),
+  KEY `username` (`username`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `userd`
+--
+
+LOCK TABLES `userd` WRITE;
+/*!40000 ALTER TABLE `userd` DISABLE KEYS */;
+/*!40000 ALTER TABLE `userd` ENABLE KEYS */;
+UNLOCK TABLES;
+/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
+/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
+/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
+
+-- Dump completed on 2015-02-02 19:07:24
diff --git a/images/rm-16.png b/images/rm-16.png
new file mode 100644 (file)
index 0000000..9361ef2
Binary files /dev/null and b/images/rm-16.png differ
index a6429bbf49eced95df08533580c48bfd3087327f..6777df65a1a963467b9df8f7cbc2ee54383faf69 100644 (file)
@@ -15,7 +15,7 @@ function user_remove($uid) {
 
        call_hooks('remove_user',$r[0]);
 
-       // save username (actually the nickname as it is guaranteed 
+       // save username (actually the nickname as it is guaranteed
        // unique), so it cannot be re-registered in the future.
 
        q("insert into userd ( username ) values ( '%s' )",
@@ -191,7 +191,7 @@ if(! function_exists('contact_photo_menu')){
 function contact_photo_menu($contact) {
 
        $a = get_app();
-       
+
        $contact_url="";
        $pm_url="";
        $status_link="";
@@ -222,24 +222,24 @@ function contact_photo_menu($contact) {
        $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id'];
        $posts_link = $a->get_baseurl() . '/network/0?nets=all&cid=' . $contact['id'];
        $contact_drop_link = $a->get_baseurl() . "/contacts/" . $contact['id'] . '/drop?confirm=1';
-       
+
 
        $menu = Array(
                'poke' => array(t("Poke"), $poke_link),
                'status' => array(t("View Status"), $status_link),
                'profile' => array(t("View Profile"), $profile_link),
-               'photos' => array(t("View Photos"), $photos_link),              
-               'network' => array(t("Network Posts"), $posts_link), 
+               'photos' => array(t("View Photos"), $photos_link),
+               'network' => array(t("Network Posts"), $posts_link),
                'edit' => array(t("Edit Contact"), $contact_url),
                'drop' => array(t("Drop Contact"), $contact_drop_link),
                'pm' => array(t("Send PM"), $pm_url),
        );
-       
-       
+
+
        $args = array('contact' => $contact, 'menu' => &$menu);
-       
+
        call_hooks('contact_photo_menu', $args);
-       
+
 /*     $o = "";
        foreach($menu as $k=>$v){
                if ($v!="") {
@@ -293,3 +293,107 @@ function contacts_not_grouped($uid,$start = 0,$count = 0) {
        return $r;
 }
 
+function get_contact($url, $uid = 0) {
+       require_once("include/Scrape.php");
+
+       $data = array();
+       $contactid = 0;
+
+       // is it an address in the format user@server.tld?
+       if (!strstr($url, "http") OR strstr($url, "@")) {
+               $data = probe_url($url);
+               $url = $data["url"];
+               if ($url == "")
+                       return 0;
+       }
+
+       $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d",
+                       dbesc(normalise_link($url)),
+                       intval($uid));
+
+       if (!$contact)
+               $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `uid` = %d",
+                               dbesc($url),
+                               dbesc(normalise_link($url)),
+                               intval($uid));
+
+       if ($contact) {
+               $contactid = $contact[0]["id"];
+
+               // Update the contact every 7 days
+               $update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -7 days'));
+               //$update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
+
+               if (!$update_photo)
+                       return($contactid);
+       }
+
+       if (!count($data))
+               $data = probe_url($url);
+
+       // Does this address belongs to a valid network?
+       if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
+               return 0;
+
+       // tempory programming. Can be deleted after 2015-02-07
+       if (($data["alias"] == "") AND (normalise_link($data["url"]) != normalise_link($url)))
+               $data["alias"] = normalise_link($url);
+
+       if ($contactid == 0) {
+               q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
+                                       `name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`,
+                                       `batch`, `request`, `confirm`, `poco`,
+                                       `writable`, `blocked`, `readonly`, `pending`)
+                                       VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s', 1, 0, 0, 0)",
+                       intval($uid),
+                       dbesc(datetime_convert()),
+                       dbesc($data["url"]),
+                       dbesc(normalise_link($data["url"])),
+                       dbesc($data["addr"]),
+                       dbesc($data["alias"]),
+                       dbesc($data["notify"]),
+                       dbesc($data["poll"]),
+                       dbesc($data["name"]),
+                       dbesc($data["nick"]),
+                       dbesc($data["photo"]),
+                       dbesc($data["network"]),
+                       dbesc($data["pubkey"]),
+                       intval(CONTACT_IS_SHARING),
+                       intval($data["priority"]),
+                       dbesc($data["batch"]),
+                       dbesc($data["request"]),
+                       dbesc($data["confirm"]),
+                       dbesc($data["poco"])
+               );
+
+               $contact = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d",
+                               dbesc(normalise_link($data["url"])),
+                               intval($uid));
+               if (!$contact)
+                       return 0;
+
+               $contactid = $contact[0]["id"];
+       }
+
+       require_once("Photo.php");
+
+       $photos = import_profile_photo($data["photo"],$uid,$contactid);
+
+       q("UPDATE `contact` SET `photo` = '%s', `thumb` = '%s', `micro` = '%s',
+               `addr` = '%s', `alias` = '%s', `name` = '%s', `nick` = '%s',
+               `name-date` = '%s', `uri-date` = '%s', `avatar-date` = '%s' WHERE `id` = %d",
+               dbesc($photos[0]),
+               dbesc($photos[1]),
+               dbesc($photos[2]),
+               dbesc($data["addr"]),
+               dbesc($data["alias"]),
+               dbesc($data["name"]),
+               dbesc($data["nick"]),
+               dbesc(datetime_convert()),
+               dbesc(datetime_convert()),
+               dbesc(datetime_convert()),
+               intval($contactid)
+       );
+
+       return $contactid;
+}
index 7df86d9f2d7cd4fe3d85372a85e8f80b61873cf9..c74fd879c2b1e30243d6a8c03f52fed4fa0f93d2 100644 (file)
@@ -433,7 +433,7 @@ function probe_url($url, $mode = PROBE_NORMAL) {
                        // to a contact on incoming messages to prevent spam, and we won't know which one
                        // to match. So in case of two, one of them is stored as an alias. Only store URL's
                        // and not webfinger user@host aliases. If they've got more than two non-email style
-                       // aliases, let's hope we're lucky and get one that matches the feed author-uri because 
+                       // aliases, let's hope we're lucky and get one that matches the feed author-uri because
                        // otherwise we're screwed.
 
                        foreach($links as $link) {
@@ -448,6 +448,10 @@ function probe_url($url, $mode = PROBE_NORMAL) {
                                        }
                                }
                        }
+
+                       // If the profile is different from the url then the url is abviously an alias
+                       if (($alias == "") AND ($profile != "") AND !$at_addr AND (normalise_link($profile) != normalise_link($url)))
+                               $alias = $url;
                }
                elseif($mode == PROBE_NORMAL) {
 
index 2d3c31af0c3f7a32209d702d2d8dd315d619541e..c8a313ce198e764187d505ca3d61c6f077001b3e 100644 (file)
                // get last public wall message
                $lastwall = q("SELECT `item`.*, `i`.`contact-id` as `reply_uid`, `i`.`author-link` AS `item-author`
                                FROM `item`, `item` as `i`
-                               WHERE `item`.`contact-id` = %d
+                               WHERE `item`.`contact-id` = %d AND `item`.`uid` = %d
                                        AND ((`item`.`author-link` IN ('%s', '%s')) OR (`item`.`owner-link` IN ('%s', '%s')))
                                        AND `i`.`id` = `item`.`parent`
                                        AND `item`.`type`!='activity'
                                ORDER BY `item`.`created` DESC
                                LIMIT 1",
                                intval($user_info['cid']),
+                               intval(api_user()),
                                dbesc($user_info['url']),
                                dbesc(normalise_link($user_info['url'])),
                                dbesc($user_info['url']),
index c2ebf35e6308b7464359a8af2b3efe36d13628f7..c08c6d4d95682e83e5691e5587cf21603d8b8147 100644 (file)
@@ -664,6 +664,12 @@ function GetProfileUsername($profile, $username, $compact = false, $getnetwork =
        return($username);
 }
 
+function bb_DiasporaLinks($match) {
+       $a = get_app();
+
+       return "[url=".$a->get_baseurl()."/display/".$match[1]."]".$match[2]."[/url]";
+}
+
 function bb_RemovePictureLinks($match) {
        $text = Cache::get($match[1]);
 
@@ -880,6 +886,9 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
        else
                $Text = preg_replace("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism",'[url=$1]$2[/url]',$Text);
 
+       // Handle Diaspora posts
+       $Text = preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi", 'bb_DiasporaLinks', $Text);
+
        // if the HTML is used to generate plain text, then don't do this search, but replace all URL of that kind to text
        if (!$forplaintext)
                $Text = preg_replace("/([^\]\='".'"'."]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1<a href="$2" target="_blank">$2</a>', $Text);
index affd59d489fa8887802cca18a4bc4760398fd764..f7537ef633aca07d442046a74bf0e49bb42d80e1 100755 (executable)
@@ -589,7 +589,7 @@ function diaspora_request($importer,$xml) {
                        intval($importer['uid'])
                );
 
-               if((count($r)) && (! $r[0]['hide-friends']) && (! $contact['hidden'])) {
+               if((count($r)) && (!$r[0]['hide-friends']) && (!$contact['hidden']) && intval(get_pconfig($importer['uid'],'system','post_newfriend'))) {
                        require_once('include/items.php');
 
                        $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
@@ -895,19 +895,92 @@ function diaspora_post($importer,$xml,$msg) {
 
        $datarray['visible'] = ((strlen($body)) ? 1 : 0);
 
+       DiasporaFetchGuid($datarray);
        $message_id = item_store($datarray);
 
-       //if($message_id) {
-       //      q("update item set plink = '%s' where id = %d",
-       //              dbesc($a->get_baseurl() . '/display/' . $importer['nickname'] . '/' . $message_id),
-       //              intval($message_id)
-       //      );
-       //}
-
        return;
 
 }
 
+function DiasporaFetchGuid($item) {
+       preg_replace_callback("&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
+               function ($match) use ($item){
+                       return(DiasporaFetchGuidSub($match, $item));
+               },$item["body"]);
+}
+
+function DiasporaFetchGuidSub($match, $item) {
+       $a = get_app();
+
+       $author = parse_url($item["author-link"]);
+       $authorserver = $author["scheme"]."://".$author["host"];
+
+       $owner = parse_url($item["owner-link"]);
+       $ownerserver = $owner["scheme"]."://".$owner["host"];
+
+       if (!diaspora_store_by_guid($match[1], $authorserver))
+               diaspora_store_by_guid($match[1], $ownerserver);
+}
+
+function diaspora_store_by_guid($guid, $server) {
+       require_once("include/Contact.php");
+
+       logger("fetching item ".$guid." from ".$server, LOGGER_DEBUG);
+
+       $item = diaspora_fetch_message($guid, $server);
+
+       if (!$item)
+               return false;
+
+       $body = $item["body"];
+       $str_tags = $item["tag"];
+       $app = $item["app"];
+       $created = $item["created"];
+       $author = $item["author"];
+       $guid = $item["guid"];
+       $private = $item["private"];
+
+       $message_id = $author.':'.$guid;
+       $r = q("SELECT `id` FROM `item` WHERE `uid` = 0 AND `uri` = '%s' AND `guid` = '%s' LIMIT 1",
+               dbesc($message_id),
+               dbesc($guid)
+       );
+       if(count($r))
+               return $r[0]["id"];
+
+       $person = find_diaspora_person_by_handle($author);
+
+        $datarray = array();
+       $datarray['uid'] = 0;
+       $datarray['contact-id'] = get_contact($person['url'], 0);
+       $datarray['wall'] = 0;
+       $datarray['network']  = NETWORK_DIASPORA;
+       $datarray['guid'] = $guid;
+       $datarray['uri'] = $datarray['parent-uri'] = $message_id;
+       $datarray['changed'] = $datarray['created'] = $datarray['edited'] = datetime_convert('UTC','UTC',$created);
+       $datarray['private'] = $private;
+       $datarray['parent'] = 0;
+       $datarray['plink'] = 'https://'.substr($author,strpos($author,'@')+1).'/posts/'.$guid;
+       $datarray['author-name'] = $person['name'];
+       $datarray['author-link'] = $person['url'];
+       $datarray['author-avatar'] = ((x($person,'thumb')) ? $person['thumb'] : $person['photo']);
+       $datarray['owner-name'] = $datarray['author-name'];
+       $datarray['owner-link'] = $datarray['author-link'];
+       $datarray['owner-avatar'] = $datarray['author-avatar'];
+       $datarray['body'] = $body;
+       $datarray['tag'] = $str_tags;
+       $datarray['app']  = $app;
+       $datarray['visible'] = ((strlen($body)) ? 1 : 0);
+
+       DiasporaFetchGuid($datarray);
+       $message_id = item_store($datarray);
+
+       // To-Do:
+       // Looking if there is some subscribe mechanism in Diaspora to get all comments for this post
+
+       return $message_id;
+}
+
 function diaspora_fetch_message($guid, $server, $level = 0) {
 
        if ($level > 5)
@@ -1102,7 +1175,8 @@ function diaspora_reshare($importer,$xml,$msg) {
                        $orig_created = $item["created"];
                        $orig_author = $item["author"];
                        $orig_guid = $item["guid"];
-                       //$create_original_post = ($body != "");
+                       $create_original_post = ($body != "");
+                       $orig_url = $a->get_baseurl()."/display/".$orig_guid;
                }
        }
 
@@ -1164,12 +1238,13 @@ function diaspora_reshare($importer,$xml,$msg) {
        $datarray['visible'] = ((strlen($body)) ? 1 : 0);
 
        // Store the original item of a reshare
-       // Deactivated by now. Items without a matching contact can't be shown via "mod/display.php" by now.
        if ($create_original_post) {
+               require_once("include/Contact.php");
+
                $datarray2 = $datarray;
 
                $datarray2['uid'] = 0;
-               $datarray2['contact-id'] = 0;
+               $datarray2['contact-id'] = get_contact($person['url'], 0);
                $datarray2['guid'] = $orig_guid;
                $datarray2['uri'] = $datarray2['parent-uri'] = $orig_author.':'.$orig_guid;
                $datarray2['changed'] = $datarray2['created'] = $datarray2['edited'] = datetime_convert('UTC','UTC',$orig_created);
@@ -1183,11 +1258,13 @@ function diaspora_reshare($importer,$xml,$msg) {
                $datarray2['owner-avatar'] = $datarray2['author-avatar'];
                $datarray2['body'] = $body;
 
+               DiasporaFetchGuid($datarray2);
                $message_id = item_store($datarray2);
 
                logger("Store original item ".$orig_guid." under message id ".$message_id);
        }
 
+       DiasporaFetchGuid($datarray);
        $message_id = item_store($datarray);
 
        return;
@@ -1280,6 +1357,7 @@ function diaspora_asphoto($importer,$xml,$msg) {
 
        $datarray['app']  = 'Diaspora/Cubbi.es';
 
+       DiasporaFetchGuid($datarray);
        $message_id = item_store($datarray);
 
        //if($message_id) {
@@ -1460,6 +1538,7 @@ function diaspora_comment($importer,$xml,$msg) {
        if(($parent_item['origin']) && (! $parent_author_signature))
                $datarray['app']  = 'Diaspora';
 
+       DiasporaFetchGuid($datarray);
        $message_id = item_store($datarray);
 
        //if($message_id) {
index 99bc0fd324a260ce2238a877bcec64e8eadf5945..4327e75b837d5c25fb36fbad03c7f123e861b5eb 100644 (file)
@@ -23,12 +23,15 @@ function notification($params) {
        $site_admin = sprintf( t('%s Administrator'), $sitename);
        $nickname = "";
 
-       $sender_name = $product;
+       $sender_name = $sitename;
        $hostname = $a->get_hostname();
        if(strpos($hostname,':'))
                $hostname = substr($hostname,0,strpos($hostname,':'));
-
-       $sender_email = t('noreply') . '@' . $hostname;
+       
+       $sender_email = $a->config['sender_email'];
+       if (empty($sender_email)) {
+               $sender_email = t('noreply') . '@' . $hostname;
+       }
 
        $user = q("SELECT `nickname` FROM `user` WHERE `uid` = %d", intval($params['uid']));
        if ($user)
index 344b06ec8b3dca05b04449d299cf15d06ea7fe87..e8fc739cd0852839c5011cb4ec7a34de2ea25824 100644 (file)
@@ -2093,9 +2093,16 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0)
                if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
                        $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
                        $new_name = $elems['name'][0]['data'];
+
+                       // Manually checking for changed contact names
+                       if (($new_name != $contact['name']) AND ($new_name != "") AND ($name_updated <= $contact['name-date'])) {
+                               $name_updated = date("c");
+                               $photo_timestamp = date("c");
+                       }
                }
                if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
-                       $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
+                       if ($photo_timestamp == "")
+                               $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
                        $photo_url = $elems['link'][0]['attribs']['']['href'];
                }
 
@@ -2715,6 +2722,10 @@ function item_is_remote_self($contact, &$datarray) {
        if ($datarray["app"] == $a->get_hostname())
                return false;
 
+       // Only forward posts
+       if ($datarray["verb"] != ACTIVITY_POST)
+               return false;
+
        if (($contact['network'] != NETWORK_FEED) AND $datarray['private'])
                return false;
 
@@ -2808,9 +2819,16 @@ function local_delivery($importer,$data) {
                if($elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated']) {
                        $name_updated = $elems['name'][0]['attribs'][NAMESPACE_DFRN]['updated'];
                        $new_name = $elems['name'][0]['data'];
+
+                       // Manually checking for changed contact names
+                       if (($new_name != $importer['name']) AND ($new_name != "") AND ($name_updated <= $importer['name-date'])) {
+                               $name_updated = date("c");
+                               $photo_timestamp = date("c");
+                       }
                }
                if((x($elems,'link')) && ($elems['link'][0]['attribs']['']['rel'] === 'photo') && ($elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated'])) {
-                       $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
+                       if ($photo_timestamp == "")
+                               $photo_timestamp = datetime_convert('UTC','UTC',$elems['link'][0]['attribs'][NAMESPACE_DFRN]['updated']);
                        $photo_url = $elems['link'][0]['attribs']['']['href'];
                }
        }
@@ -2937,6 +2955,7 @@ function local_delivery($importer,$data) {
                                        thumb = '%s',
                                        micro = '%s',
                                        url = '%s',
+                                       nurl = '%s',
                                        request = '%s',
                                        confirm = '%s',
                                        notify = '%s',
@@ -2948,6 +2967,7 @@ function local_delivery($importer,$data) {
                                        dbesc($newloc['thumb']),
                                        dbesc($newloc['micro']),
                                        dbesc($newloc['url']),
+                                       dbesc(normalise_link($newloc['url'])),
                                        dbesc($newloc['request']),
                                        dbesc($newloc['confirm']),
                                        dbesc($newloc['notify']),
index c664fd7d37adf67f8c4139a1fd3edb90487284c7..43b321e98a01f503ce960e8ae91e32b0eb3310c3 100644 (file)
@@ -1110,7 +1110,8 @@ function smilies($s, $sample = false) {
                ':like',
                ':dislike',
                 '~friendica',
-                'red#'
+                'red#',
+               'red#matrix'
 
        );
 
@@ -1148,7 +1149,8 @@ function smilies($s, $sample = false) {
                '<img class="smiley" src="' . $a->get_baseurl() . '/images/like.gif" alt=":like" />',
                '<img class="smiley" src="' . $a->get_baseurl() . '/images/dislike.gif" alt=":dislike" />',
                '<a href="http://friendica.com">~friendica <img class="smiley" src="' . $a->get_baseurl() . '/images/friendica-16.png" alt="~friendica" /></a>',
-               '<a href="http://redmatrix.me/">red <img class="smiley" src="' . $a->get_baseurl() . '/images/rhash-16.png" alt="red" /></a>'
+               '<a href="http://redmatrix.me/">red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="red" />matrix</a>',
+               '<a href="http://redmatrix.me/">red<img class="smiley" src="' . $a->get_baseurl() . '/images/rm-16.png" alt="red" />matrix</a>'
        );
 
        $params = array('texts' => $texts, 'icons' => $icons, 'string' => $s);
index e9a0d7f1f271d7a4c5710d8e9b1a9f6e7005749c..bd0cb0489926df5bfb68f1be61e390d760e199da 100644 (file)
@@ -66,9 +66,11 @@ function add_thread($itemid, $onlyshadow = false) {
                if (!$r) {
                        // Preparing public shadow (removing user specific data)
                        require_once("include/items.php");
+                       require_once("include/Contact.php");
+
                        unset($item[0]['id']);
                        $item[0]['uid'] = 0;
-                       $item[0]['contact-id'] = 0;
+                       $item[0]['contact-id'] = get_contact($item[0]['author-link'], 0);
                        $public_shadow = item_store($item[0], false, false, true);
 
                        logger("add_thread: Stored public shadow for post ".$itemid." under id ".$public_shadow, LOGGER_DEBUG);
index bf74d3ef3c64f67853ba54de37de80a9f06e8920..2a923f4cab560c8a87f03948e396181b22ab14f6 100644 (file)
@@ -121,6 +121,8 @@ function admin_content(&$a) {
        }
 
        $aside['logs'] = Array($a->get_baseurl(true)."/admin/logs/", t("Logs"), "logs");
+       $aside['diagnostics_probe'] = Array($a->get_baseurl(true).'/probe/', t('probe address'), 'probe');
+       $aside['diagnostics_webfinger'] = Array($a->get_baseurl(true).'/webfinger/', t('check webfinger'), 'webfinger');
 
        $t = get_markup_template("admin_aside.tpl");
        $a->page['aside'] .= replace_macros( $t, array(
@@ -128,6 +130,7 @@ function admin_content(&$a) {
                        '$admtxt' => t('Admin'),
                        '$plugadmtxt' => t('Plugin Features'),
                        '$logtxt' => t('Logs'),
+                       '$diagnosticstxt' => t('diagnostics'),
                        '$h_pending' => t('User registrations waiting for confirmation'),
                        '$admurl'=> $a->get_baseurl(true)."/admin/"
        ));
@@ -278,7 +281,7 @@ function admin_page_site_post(&$a){
                        $q = sprintf("UPDATE %s SET %s;", $table_name, $upds);
                        $r = q($q);
                        if (!$r) {
-                               notice( "Falied updating '$table_name': " . $db->error );
+                               notice( "Failed updating '$table_name': " . $db->error );
                                goaway($a->get_baseurl(true) . '/admin/site' );
                        }
                }
@@ -309,6 +312,7 @@ function admin_page_site_post(&$a){
 
        $sitename               =       ((x($_POST,'sitename'))                 ? notags(trim($_POST['sitename']))              : '');
        $hostname               =       ((x($_POST,'hostname'))                 ? notags(trim($_POST['hostname']))              : '');
+       $sender_email   =       ((x($_POST,'sender_email'))             ? notags(trim($_POST['sender_email']))          : '');
        $banner                 =       ((x($_POST,'banner'))                   ? trim($_POST['banner'])                        : false);
        $info                   =       ((x($_POST,'info'))                     ? trim($_POST['info'])                  : false);
        $language               =       ((x($_POST,'language'))                 ? notags(trim($_POST['language']))              : '');
@@ -415,6 +419,7 @@ function admin_page_site_post(&$a){
        set_config('system','maxloadavg',$maxloadavg);
        set_config('config','sitename',$sitename);
        set_config('config','hostname',$hostname);
+       set_config('config','sender_email', $sender_email);
        set_config('system','suppress_language',$suppress_language);
        if ($banner==""){
                // don't know why, but del_config doesn't work...
@@ -605,6 +610,7 @@ function admin_page_site(&$a) {
                // name, label, value, help string, extra data...
                '$sitename'             => array('sitename', t("Site name"), htmlentities($a->config['sitename'], ENT_QUOTES), 'UTF-8'),
                '$hostname'             => array('hostname', t("Host name"), $a->config['hostname'], ""),
+               '$sender_email'         => array('sender_email', t("Sender Email"), $a->config['sender_email'], "The email address your server shall use to send notification emails from.", "", "", "email"),
                '$banner'               => array('banner', t("Banner/Logo"), $banner, ""),
                '$info' => array('info',t('Additional Info'), $info, t('For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo.')),
                '$language'             => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
index 96eb3702879736add9690bb20b5e94db27af8aaa..e1759ab6556105b3622425fcfa9feec1f56b9a18 100644 (file)
@@ -32,7 +32,7 @@ function bookmarklet_content(&$a) {
                        'visitor' => 'block',
                        'profile_uid' => local_user(),
                        'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
-                       'title' => $_REQUEST["title"],
+                       'title' => trim($_REQUEST["title"], "*"),
                        'content' => $content
                );
                $o = status_editor($a,$x, 0, false);
index 374de6caccfaddaa5557a4a4cbc07cd6bfee3d6d..f483977cd4f847aebc639bbe93a4f85a499b921d 100644 (file)
@@ -41,6 +41,18 @@ function display_init(&$a) {
                                $itemuid = $r[0]["uid"];
                        }
                }
+
+               // Is it an item with uid=0?
+               if ($nick == "") {
+                       $r = q("SELECT `item`.`id`, `item`.`parent`, `item`.`author-name`,
+                               `item`.`author-link`, `item`.`author-avatar`, `item`.`network`, `item`.`uid`, `item`.`body`
+                               FROM `item` WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
+                                       AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
+                                       AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
+                                       AND `item`.`private` = 0 AND `item`.`uid` = 0
+                                       AND `item`.`guid` = '%s'", $a->argv[1]);
+                               //      AND `item`.`private` = 0 AND `item`.`wall` = 1
+               }
                if (count($r)) {
                        if ($r[0]["id"] != $r[0]["parent"])
                                $r = q("SELECT `id`, `author-name`, `author-link`, `author-avatar`, `network`, `body`, `uid` FROM `item`
@@ -252,6 +264,18 @@ function display_content(&$a, $update = 0) {
                                        $nick = $r[0]["nickname"];
                                }
                        }
+                       if ($nick == "") {
+                               $r = q("SELECT `item`.`id` FROM `item`
+                                       WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
+                                               AND `item`.`allow_cid` = ''  AND `item`.`allow_gid` = ''
+                                               AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = ''
+                                               AND `item`.`private` = 0  AND `item`.`uid` = 0
+                                               AND `item`.`guid` = '%s'", $a->argv[1]);
+                                       //      AND `item`.`private` = 0 AND `item`.`wall` = 1
+                               if (count($r)) {
+                                       $item_id = $r[0]["id"];
+                               }
+                       }
                }
        }
 
index e037300fc20c9b993fe7ca863ab23f022e537b62..a859efd41ef922aa29f2d3f2ceac6a4134a2d451 100644 (file)
@@ -1,30 +1,30 @@
 <?php
 
 function noscrape_init(&$a) {
-       
+
        if(get_config('system','disable_noscrape'))
                killme();
-       
+
        if($a->argc > 1)
                $which = $a->argv[1];
-       else 
+       else
                killme();
-       
+
        $profile = 0;
        if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
                $which = $a->user['nickname'];
                $profile = $a->argv[1];
        }
-       
+
        profile_load($a,$which,$profile);
-       
+
        if(!$a->profile['net-publish'])
                killme();
-       
+
        $keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
        $keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
        $keywords = explode(',', $keywords);
-       
+
        $json_info = array(
                'fn' => $a->profile['name'],
                'key' => $a->profile['pubkey'],
@@ -33,19 +33,19 @@ function noscrape_init(&$a) {
                'photo' => $a->profile['photo'],
                'tags' => $keywords
        );
-       
+
        //These are optional fields.
-       $profile_fields = array('pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital');
+       $profile_fields = array('pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital', 'about');
        foreach($profile_fields as $field)
                if(!empty($a->profile[$field])) $json_info["$field"] = $a->profile[$field];
-       
+
        $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
        foreach($dfrn_pages as $dfrn)
                $json_info["dfrn-{$dfrn}"] = $a->get_baseurl()."/dfrn_{$dfrn}/{$which}";
-       
+
        //Output all the JSON!
        header('Content-type: application/json; charset=utf-8');
        echo json_encode($json_info);
        exit;
-       
+
 }
index c8d8f72e830bde688a4f503783b3156df0533447..8eb45d23748b0e9be89f136f14ddabc94c2883ad 100644 (file)
@@ -102,7 +102,8 @@ function poco_init(&$a) {
                        intval($itemsPerPage)
                );
        } elseif($system_mode) {
-               $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`
+               $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`,
+                       `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry`
                        FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid`
                        WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default`
                        AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d",
@@ -151,7 +152,8 @@ function poco_init(&$a) {
                'currentLocation' => false,
                'network' => false,
                'gender' => false,
-               'tags' => false
+               'tags' => false,
+               'address' => false
        );
 
        if((! x($_GET,'fields')) || ($_GET['fields'] === '@all'))
@@ -169,8 +171,24 @@ function poco_init(&$a) {
                                if (($rr['about'] == "") AND isset($rr['pabout']))
                                        $rr['about'] = $rr['pabout'];
 
-                               if (($rr['location'] == "") AND isset($rr['plocation']))
-                                       $rr['location'] = $rr['plocation'];
+                               if ($rr['location'] == "") {
+                                       if (isset($rr['plocation']))
+                                               $rr['location'] = $rr['plocation'];
+
+                                       if (isset($rr['pregion']) AND ($rr['pregion'] != "")) {
+                                               if ($rr['location'] != "")
+                                                       $rr['location'] .= ", ";
+
+                                               $rr['location'] .= $rr['pregion'];
+                                       }
+
+                                       if (isset($rr['pcountry']) AND ($rr['pcountry'] != "")) {
+                                               if ($rr['location'] != "")
+                                                       $rr['location'] .= ", ";
+
+                                               $rr['location'] .= $rr['pcountry'];
+                                       }
+                               }
 
                                if (($rr['gender'] == "") AND isset($rr['pgender']))
                                        $rr['gender'] = $rr['pgender'];
@@ -235,6 +253,26 @@ function poco_init(&$a) {
 
                                        $entry['tags'] = array($cleaned);
                                }
+                               if($fields_ret['address']) {
+                                       $entry['address'] = array();
+
+                                       // Deactivated. It just reveals too much data. (Although its from the default profile)
+                                       //if (isset($rr['paddress']))
+                                       //       $entry['address']['streetAddress'] = $rr['paddress'];
+
+                                       if (isset($rr['plocation']))
+                                                $entry['address']['locality'] = $rr['plocation'];
+
+                                       if (isset($rr['pregion']))
+                                                $entry['address']['region'] = $rr['pregion'];
+
+                                       // See above
+                                       //if (isset($rr['ppostalcode']))
+                                       //       $entry['address']['postalCode'] = $rr['ppostalcode'];
+
+                                       if (isset($rr['pcountry']))
+                                                $entry['address']['country'] = $rr['pcountry'];
+                               }
 
                                $ret['entry'][] = $entry;
                        }
index befeedb2efac11dceff01e7b0996b507def97bb5..2b4952c3b67af71b62fab941445203c5899fdee6 100644 (file)
@@ -485,10 +485,25 @@ function profiles_post(&$a) {
                }
 
                if($is_default) {
+                       $location = $locality;
+
+                       if ($region != "") {
+                               if ($location != "")
+                                       $location .= ", ";
+
+                               $location .= $region;
+                       }
+
+                       if ($country_name != "") {
+                               if ($location != "")
+                                       $location .= ", ";
+
+                               $location .= $country_name;
+                       }
 
                        $r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` = 1 AND `uid` = %d",
                                dbesc($about),
-                               dbesc($locality),
+                               dbesc($location),
                                dbesc($pub_keywords),
                                dbesc($gender),
                                intval(local_user())
index 8870aa2720b36e87dfb0c8ea35f20a23cd8a3a52..aad50fa4487f49b54953a1860ec84e026127f9d0 100644 (file)
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: 3.3.2\n"
+"Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-01-22 17:30+0100\n"
+"POT-Creation-Date: 2015-02-04 11:35+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,997 +18,1102 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 
 
-#: ../../mod/contacts.php:107
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
-msgid "Could not access contact record."
-msgstr ""
-
-#: ../../mod/contacts.php:152
-msgid "Could not locate selected profile."
+#: ../../object/Item.php:94
+msgid "This entry was edited"
 msgstr ""
 
-#: ../../mod/contacts.php:185
-msgid "Contact updated."
+#: ../../object/Item.php:116 ../../mod/content.php:620
+#: ../../mod/photos.php:1359
+msgid "Private Message"
 msgstr ""
 
-#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
+#: ../../object/Item.php:120 ../../mod/content.php:728
+#: ../../mod/settings.php:676
+msgid "Edit"
 msgstr ""
 
-#: ../../mod/contacts.php:253 ../../mod/manage.php:96
-#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
-#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
-msgid "Permission denied."
+#: ../../object/Item.php:129 ../../mod/content.php:437
+#: ../../mod/content.php:740 ../../mod/photos.php:1653
+#: ../../include/conversation.php:613
+msgid "Select"
 msgstr ""
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been blocked"
+#: ../../object/Item.php:130 ../../mod/admin.php:985 ../../mod/content.php:438
+#: ../../mod/content.php:741 ../../mod/contacts.php:717
+#: ../../mod/settings.php:677 ../../mod/group.php:171
+#: ../../mod/photos.php:1654 ../../include/conversation.php:614
+msgid "Delete"
 msgstr ""
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been unblocked"
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
 msgstr ""
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been ignored"
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
 msgstr ""
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been unignored"
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
 msgstr ""
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been archived"
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
 msgstr ""
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been unarchived"
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
 msgstr ""
 
-#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
-msgid "Do you really want to delete this contact?"
+#: ../../object/Item.php:208
+msgid "ignore thread"
 msgstr ""
 
-#: ../../mod/contacts.php:336 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
-#: ../../include/items.php:4528
-msgid "Yes"
+#: ../../object/Item.php:209
+msgid "unignore thread"
 msgstr ""
 
-#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4531
-msgid "Cancel"
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
 msgstr ""
 
-#: ../../mod/contacts.php:351
-msgid "Contact has been removed."
+#: ../../object/Item.php:213
+msgid "ignored"
 msgstr ""
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are mutual friends with %s"
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
 msgstr ""
 
-#: ../../mod/contacts.php:393
-#, php-format
-msgid "You are sharing with %s"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../mod/photos.php:1542
+msgid "I like this (toggle)"
 msgstr ""
 
-#: ../../mod/contacts.php:398
-#, php-format
-msgid "%s is sharing with you"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+msgid "like"
 msgstr ""
 
-#: ../../mod/contacts.php:415
-msgid "Private communications are not available for this contact."
+#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../mod/photos.php:1543
+msgid "I don't like this (toggle)"
 msgstr ""
 
-#: ../../mod/contacts.php:418 ../../mod/admin.php:546
-msgid "Never"
+#: ../../object/Item.php:232 ../../mod/content.php:685
+msgid "dislike"
 msgstr ""
 
-#: ../../mod/contacts.php:422
-msgid "(Update was successful)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "Share this"
 msgstr ""
 
-#: ../../mod/contacts.php:422
-msgid "(Update was not successful)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "share"
 msgstr ""
 
-#: ../../mod/contacts.php:424
-msgid "Suggest friends"
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
 msgstr ""
 
-#: ../../mod/contacts.php:428
-#, php-format
-msgid "Network type: %s"
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
 msgstr ""
 
-#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#: ../../object/Item.php:326 ../../object/Item.php:327
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../include/conversation.php:654
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/contacts.php:436
-msgid "View all contacts"
-msgstr ""
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:981
-msgid "Unblock"
-msgstr ""
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:980
-msgid "Block"
+msgid "View %s's profile @ %s"
 msgstr ""
 
-#: ../../mod/contacts.php:444
-msgid "Toggle Blocked status"
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
 msgstr ""
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714
-msgid "Unignore"
+#: ../../object/Item.php:329
+msgid "via"
 msgstr ""
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
 msgstr ""
 
-#: ../../mod/contacts.php:450
-msgid "Toggle Ignored status"
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
 msgstr ""
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Unarchive"
+#: ../../object/Item.php:340 ../../mod/content.php:481
+#: ../../mod/content.php:864 ../../include/conversation.php:674
+#, php-format
+msgid "%s from %s"
 msgstr ""
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Archive"
+#: ../../object/Item.php:361 ../../object/Item.php:677 ../../boot.php:745
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696
+msgid "Comment"
 msgstr ""
 
-#: ../../mod/contacts.php:457
-msgid "Toggle Archive status"
+#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../mod/editpost.php:124 ../../mod/content.php:499
+#: ../../mod/content.php:883 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/photos.php:1545
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
 msgstr ""
 
-#: ../../mod/contacts.php:460
-msgid "Repair"
-msgstr ""
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/contacts.php:463
-msgid "Advanced Contact Settings"
-msgstr ""
+#: ../../object/Item.php:389 ../../object/Item.php:402
+#: ../../mod/content.php:605 ../../include/text.php:1972
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/contacts.php:469
-msgid "Communications lost with this contact!"
+#: ../../object/Item.php:390 ../../boot.php:746 ../../mod/content.php:606
+#: ../../include/contact_widgets.php:205
+msgid "show more"
 msgstr ""
 
-#: ../../mod/contacts.php:472
-msgid "Contact Editor"
+#: ../../object/Item.php:675 ../../mod/content.php:707
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694
+msgid "This is you"
 msgstr ""
 
-#: ../../mod/contacts.php:474 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../object/Item.php:678 ../../view/theme/perihel/config.php:95
+#: ../../view/theme/diabook/theme.php:633
 #: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/quattro/config.php:64
+#: ../../view/theme/zero-childs/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/clean/config.php:82
 #: ../../view/theme/duepuntozero/config.php:59
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:53
+#: ../../view/theme/vier-mobil/config.php:47 ../../mod/mood.php:137
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/crepair.php:186 ../../mod/content.php:710
+#: ../../mod/contacts.php:475 ../../mod/profiles.php:671
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../mod/localtime.php:45 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
+#: ../../mod/manage.php:110
 msgid "Submit"
 msgstr ""
 
-#: ../../mod/contacts.php:475
-msgid "Profile Visibility"
+#: ../../object/Item.php:679 ../../mod/content.php:711
+msgid "Bold"
 msgstr ""
 
-#: ../../mod/contacts.php:476
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+#: ../../object/Item.php:680 ../../mod/content.php:712
+msgid "Italic"
 msgstr ""
 
-#: ../../mod/contacts.php:477
-msgid "Contact Information / Notes"
+#: ../../object/Item.php:681 ../../mod/content.php:713
+msgid "Underline"
 msgstr ""
 
-#: ../../mod/contacts.php:478
-msgid "Edit contact notes"
+#: ../../object/Item.php:682 ../../mod/content.php:714
+msgid "Quote"
 msgstr ""
 
-#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
+#: ../../object/Item.php:683 ../../mod/content.php:715
+msgid "Code"
 msgstr ""
 
-#: ../../mod/contacts.php:484
-msgid "Block/Unblock contact"
+#: ../../object/Item.php:684 ../../mod/content.php:716
+msgid "Image"
 msgstr ""
 
-#: ../../mod/contacts.php:485
-msgid "Ignore contact"
+#: ../../object/Item.php:685 ../../mod/content.php:717
+msgid "Link"
 msgstr ""
 
-#: ../../mod/contacts.php:486
-msgid "Repair URL settings"
+#: ../../object/Item.php:686 ../../mod/content.php:718
+msgid "Video"
 msgstr ""
 
-#: ../../mod/contacts.php:487
-msgid "View conversations"
+#: ../../object/Item.php:687 ../../mod/editpost.php:145
+#: ../../mod/content.php:719 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../include/conversation.php:1126
+msgid "Preview"
 msgstr ""
 
-#: ../../mod/contacts.php:489
-msgid "Delete contact"
+#: ../../index.php:212 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
 msgstr ""
 
-#: ../../mod/contacts.php:493
-msgid "Last update:"
+#: ../../index.php:256 ../../mod/help.php:90
+msgid "Not Found"
 msgstr ""
 
-#: ../../mod/contacts.php:495
-msgid "Update public posts"
+#: ../../index.php:259 ../../mod/help.php:93
+msgid "Page not found."
 msgstr ""
 
-#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
-msgid "Update now"
+#: ../../index.php:368 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
 msgstr ""
 
-#: ../../mod/contacts.php:504
-msgid "Currently blocked"
+#: ../../index.php:369 ../../mod/mood.php:114 ../../mod/display.php:499
+#: ../../mod/register.php:42 ../../mod/dfrn_confirm.php:55
+#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:58
+#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10
+#: ../../mod/attach.php:33 ../../mod/regmod.php:110 ../../mod/crepair.php:119
+#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:254
+#: ../../mod/settings.php:102 ../../mod/settings.php:596
+#: ../../mod/settings.php:601 ../../mod/profiles.php:165
+#: ../../mod/profiles.php:603 ../../mod/group.php:19 ../../mod/follow.php:9
+#: ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/viewcontacts.php:24 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/wall_attach.php:55
+#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/events.php:140 ../../mod/delegate.php:12 ../../mod/nogroup.php:25
+#: ../../mod/fsuggest.php:78 ../../mod/item.php:168 ../../mod/item.php:184
+#: ../../mod/notifications.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
+#: ../../include/items.php:4696
+msgid "Permission denied."
 msgstr ""
 
-#: ../../mod/contacts.php:505
-msgid "Currently ignored"
+#: ../../index.php:428
+msgid "toggle mobile"
 msgstr ""
 
-#: ../../mod/contacts.php:506
-msgid "Currently archived"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
+#: ../../include/nav.php:105 ../../include/nav.php:146
+msgid "Home"
 msgstr ""
 
-#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:146
+msgid "Your posts and conversations"
 msgstr ""
 
-#: ../../mod/contacts.php:507
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2114
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../include/nav.php:77 ../../include/profile_advanced.php:7
+#: ../../include/profile_advanced.php:87
+msgid "Profile"
 msgstr ""
 
-#: ../../mod/contacts.php:508
-msgid "Notification for new posts"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
 msgstr ""
 
-#: ../../mod/contacts.php:508
-msgid "Send a notification of every new post of this contact"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2121
+#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
+msgid "Photos"
 msgstr ""
 
-#: ../../mod/contacts.php:509
-msgid "Fetch further information for feeds"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
 msgstr ""
 
-#: ../../mod/contacts.php:510
-msgid "Disabled"
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2138
+#: ../../mod/events.php:370 ../../include/nav.php:80
+msgid "Events"
 msgstr ""
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information"
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
 msgstr ""
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information and keywords"
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
 msgstr ""
 
-#: ../../mod/contacts.php:512
-msgid "Blacklisted keywords"
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
 msgstr ""
 
-#: ../../mod/contacts.php:512
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+#: ../../view/theme/perihel/theme.php:38
+#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
+#: ../../include/nav.php:129
+msgid "Community"
 msgstr ""
 
-#: ../../mod/contacts.php:563
-msgid "Suggestions"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:335
+msgid "don't show"
 msgstr ""
 
-#: ../../mod/contacts.php:566
-msgid "Suggest potential friends"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:334
+msgid "show"
 msgstr ""
 
-#: ../../mod/contacts.php:569 ../../mod/group.php:194
-msgid "All Contacts"
+#: ../../view/theme/perihel/config.php:97
+#: ../../view/theme/diabook/config.php:150
+#: ../../view/theme/quattro/config.php:66
+#: ../../view/theme/zero-childs/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/clean/config.php:84
+#: ../../view/theme/duepuntozero/config.php:61
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:55
+#: ../../view/theme/vier-mobil/config.php:49
+msgid "Theme settings"
 msgstr ""
 
-#: ../../mod/contacts.php:572
-msgid "Show all contacts"
+#: ../../view/theme/perihel/config.php:98
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/zero-childs/cleanzero/config.php:84
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
 msgstr ""
 
-#: ../../mod/contacts.php:575
-msgid "Unblocked"
+#: ../../view/theme/perihel/config.php:99
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
 msgstr ""
 
-#: ../../mod/contacts.php:578
-msgid "Only show unblocked contacts"
+#: ../../view/theme/perihel/config.php:100
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
 msgstr ""
 
-#: ../../mod/contacts.php:582
-msgid "Blocked"
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:702
+#: ../../include/nav.php:175
+msgid "Contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:585
-msgid "Only show blocked contacts"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
 msgstr ""
 
-#: ../../mod/contacts.php:589
-msgid "Ignored"
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+#: ../../view/theme/diabook/config.php:158
+msgid "Community Pages"
 msgstr ""
 
-#: ../../mod/contacts.php:592
-msgid "Only show ignored contacts"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
 msgstr ""
 
-#: ../../mod/contacts.php:596
-msgid "Archived"
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
 msgstr ""
 
-#: ../../mod/contacts.php:599
-msgid "Only show archived contacts"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr ""
 
-#: ../../mod/contacts.php:603
-msgid "Hidden"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../include/text.php:1966
+msgid "event"
 msgstr ""
 
-#: ../../mod/contacts.php:606
-msgid "Only show hidden contacts"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+#: ../../include/diaspora.php:2087
+msgid "status"
 msgstr ""
 
-#: ../../mod/contacts.php:654
-msgid "Mutual Friendship"
+#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/subthread.php:87
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1968 ../../include/diaspora.php:2087
+msgid "photo"
 msgstr ""
 
-#: ../../mod/contacts.php:658
-msgid "is a fan of yours"
+#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:166
+#: ../../include/conversation.php:137 ../../include/diaspora.php:2103
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
 msgstr ""
 
-#: ../../mod/contacts.php:662
-msgid "you are a fan of"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
 msgstr ""
 
-#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
-msgid "Edit contact"
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+msgid "Contact Photos"
 msgstr ""
 
-#: ../../mod/contacts.php:701 ../../include/nav.php:175
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
+#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
+#: ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+msgid "Profile Photos"
 msgstr ""
 
-#: ../../mod/contacts.php:705
-msgid "Search your contacts"
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
 msgstr ""
 
-#: ../../mod/contacts.php:706 ../../mod/directory.php:61
-msgid "Finding: "
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
 msgstr ""
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
 msgstr ""
 
-#: ../../mod/contacts.php:712 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
 msgstr ""
 
-#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
+#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:68
+#: ../../include/contact_widgets.php:35
+msgid "Friend Suggestions"
 msgstr ""
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
 msgstr ""
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
+#: ../../mod/admin.php:1082 ../../mod/admin.php:1303 ../../mod/settings.php:85
+#: ../../include/nav.php:170
+msgid "Settings"
 msgstr ""
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
 msgstr ""
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
 msgstr ""
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
 msgstr ""
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
 msgstr ""
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
 msgstr ""
 
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
 msgstr ""
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
 msgstr ""
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
 msgstr ""
 
-#: ../../mod/display.php:70 ../../mod/display.php:260
-#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
-#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
-#: ../../include/items.php:4487
-msgid "Item not found."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
 msgstr ""
 
-#: ../../mod/display.php:200 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
 msgstr ""
 
-#: ../../mod/display.php:308 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/zero-childs/cleanzero/config.php:86
+#: ../../view/theme/clean/config.php:87
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
 msgstr ""
 
-#: ../../mod/display.php:472
-msgid "Item has been removed."
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
 msgstr ""
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
 msgstr ""
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
+#: ../../view/theme/zero-childs/cleanzero/config.php:83
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
 msgstr ""
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
+#: ../../view/theme/zero-childs/cleanzero/config.php:85
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
 msgstr ""
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
 msgstr ""
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
+#: ../../view/theme/clean/config.php:56
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/user.php:247
+#: ../../include/text.php:1702
+msgid "default"
 msgstr ""
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to "
-"join."
+#: ../../view/theme/clean/config.php:57
+msgid "Midnight"
 msgstr ""
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
-#: ../../mod/admin.php:1297 ../../mod/settings.php:85
-#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
+#: ../../view/theme/clean/config.php:58
+msgid "Bootstrap"
 msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
+#: ../../view/theme/clean/config.php:59
+msgid "Shades of Pink"
 msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
+#: ../../view/theme/clean/config.php:60
+msgid "Lime and Orange"
 msgstr ""
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished "
-"directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
+#: ../../view/theme/clean/config.php:61
+msgid "GeoCities Retro"
 msgstr ""
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:665
-msgid "Upload Profile Photo"
+#: ../../view/theme/clean/config.php:85
+msgid "Background Image"
 msgstr ""
 
-#: ../../mod/newmember.php:36
+#: ../../view/theme/clean/config.php:85
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make "
-"friends than people who do not."
+"The URL to a picture (e.g. from your photo album) that should be used as "
+"background image."
 msgstr ""
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
+#: ../../view/theme/clean/config.php:86
+msgid "Background Color"
 msgstr ""
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown "
-"visitors."
+#: ../../view/theme/clean/config.php:86
+msgid "HEX value for the background color. Don't include the #"
 msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
+#: ../../view/theme/clean/config.php:88
+msgid "font size"
 msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
+#: ../../view/theme/clean/config.php:88
+msgid "base font size for your interface"
 msgstr ""
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
 msgstr ""
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
 msgstr ""
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
 msgstr ""
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
 msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
 msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
 msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
 msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
+#: ../../view/theme/vier/config.php:56
+#: ../../view/theme/vier-mobil/config.php:50
+msgid "Set style"
 msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
+#: ../../boot.php:744
+msgid "Delete this item?"
 msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
+#: ../../boot.php:747
+msgid "show fewer"
 msgstr ""
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
+#: ../../boot.php:1117
+#, php-format
+msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand "
-"new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
+#: ../../boot.php:1235
+msgid "Create a New Account"
 msgstr ""
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
+#: ../../boot.php:1236 ../../mod/register.php:269 ../../include/nav.php:109
+msgid "Register"
 msgstr ""
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
+#: ../../boot.php:1260 ../../include/nav.php:73
+msgid "Logout"
 msgstr ""
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with "
-"each group privately on your Network page."
+#: ../../boot.php:1261 ../../mod/bookmarklet.php:12 ../../include/nav.php:92
+msgid "Login"
 msgstr ""
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
+#: ../../boot.php:1263
+msgid "Nickname or Email address: "
 msgstr ""
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to "
-"people you've added as friends. For more information, see the help section "
-"from the link above."
+#: ../../boot.php:1264
+msgid "Password: "
 msgstr ""
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
+#: ../../boot.php:1265
+msgid "Remember me"
 msgstr ""
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
+#: ../../boot.php:1268
+msgid "Or login using OpenID: "
 msgstr ""
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program "
-"features and resources."
+#: ../../boot.php:1274
+msgid "Forgot your password?"
 msgstr ""
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
+#: ../../boot.php:1275 ../../mod/lostpass.php:109
+msgid "Password Reset"
 msgstr ""
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: ../../boot.php:1277
+msgid "Website Terms of Service"
 msgstr ""
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
+#: ../../boot.php:1278
+msgid "terms of service"
 msgstr ""
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
+#: ../../boot.php:1280
+msgid "Website Privacy Policy"
 msgstr ""
 
-#: ../../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
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
+#: ../../boot.php:1281
+msgid "privacy policy"
 msgstr ""
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
+#: ../../boot.php:1414
+msgid "Requested account is not available."
 msgstr ""
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
+#: ../../boot.php:1453 ../../mod/profile.php:21
+msgid "Requested profile is not available."
 msgstr ""
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
+#: ../../boot.php:1496 ../../boot.php:1630
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
 msgstr ""
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
+#: ../../boot.php:1563 ../../mod/suggest.php:90 ../../mod/match.php:58
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
 msgstr ""
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
+#: ../../boot.php:1595
+msgid "Message"
 msgstr ""
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
+#: ../../boot.php:1601 ../../include/nav.php:173
+msgid "Profiles"
 msgstr ""
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
+#: ../../boot.php:1601
+msgid "Manage/edit profiles"
 msgstr ""
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
+#: ../../boot.php:1606 ../../boot.php:1632 ../../mod/profiles.php:789
+msgid "Change profile photo"
 msgstr ""
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
+#: ../../boot.php:1607 ../../mod/profiles.php:790
+msgid "Create New Profile"
 msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
+#: ../../boot.php:1617 ../../mod/profiles.php:801
+msgid "Profile Image"
 msgstr ""
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
+#: ../../boot.php:1620 ../../mod/profiles.php:803
+msgid "visible to everybody"
 msgstr ""
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
+#: ../../boot.php:1621 ../../mod/profiles.php:804
+msgid "Edit visibility"
 msgstr ""
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
+#: ../../boot.php:1643 ../../mod/directory.php:136 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:170
+msgid "Location:"
 msgstr ""
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
+#: ../../boot.php:1645 ../../mod/directory.php:138
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
 msgstr ""
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
+#: ../../boot.php:1648 ../../mod/directory.php:140
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
 msgstr ""
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
+#: ../../boot.php:1650 ../../mod/directory.php:142
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
 msgstr ""
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1965 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
+#: ../../boot.php:1652 ../../mod/directory.php:144
+#: ../../include/profile_advanced.php:58
+msgid "About:"
 msgstr ""
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
+#: ../../boot.php:1701
+msgid "Network:"
 msgstr ""
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: ../../boot.php:1731 ../../boot.php:1817
+msgid "g A l F d"
 msgstr ""
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
+#: ../../boot.php:1732 ../../boot.php:1818
+msgid "d"
 msgstr ""
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: ../../boot.php:1777 ../../boot.php:1858
+msgid "[today]"
 msgstr ""
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: ../../boot.php:1789
+msgid "Birthday Reminders"
 msgstr ""
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
+#: ../../boot.php:1790
+msgid "Birthdays this week:"
 msgstr ""
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
+#: ../../boot.php:1851
+msgid "[No description]"
 msgstr ""
 
-#: ../../mod/filer.php:30
-msgid "- select -"
+#: ../../boot.php:1869
+msgid "Event Reminders"
 msgstr ""
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:955
-msgid "Save"
+#: ../../boot.php:1870
+msgid "Events this week:"
 msgstr ""
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
+#: ../../boot.php:2107 ../../include/nav.php:76
+msgid "Status"
 msgstr ""
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
+#: ../../boot.php:2110
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
+#: ../../boot.php:2117
+msgid "Profile Details"
 msgstr ""
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
+#: ../../boot.php:2124 ../../mod/photos.php:52
+msgid "Photo Albums"
 msgstr ""
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
 msgstr ""
 
-#: ../../mod/item.php:964
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+#: ../../boot.php:2141
+msgid "Events and Calendar"
 msgstr ""
 
-#: ../../mod/item.php:966
-#, php-format
-msgid "You may visit them online at %s"
+#: ../../boot.php:2145 ../../mod/notes.php:44
+msgid "Personal Notes"
 msgstr ""
 
-#: ../../mod/item.php:967
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: ../../boot.php:2148
+msgid "Only You Can See This"
 msgstr ""
 
-#: ../../mod/item.php:971
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
 #, php-format
-msgid "%s posted an update."
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: ../../mod/group.php:29
-msgid "Group created."
+#: ../../mod/mood.php:133
+msgid "Mood"
 msgstr ""
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
 msgstr ""
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
+#: ../../mod/display.php:82 ../../mod/display.php:284
+#: ../../mod/display.php:503 ../../mod/decrypt.php:15 ../../mod/admin.php:169
+#: ../../mod/admin.php:1030 ../../mod/admin.php:1243 ../../mod/notice.php:15
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4500
+msgid "Item not found."
 msgstr ""
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
+#: ../../mod/display.php:212 ../../mod/_search.php:89
+#: ../../mod/directory.php:33 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:762 ../../mod/community.php:18
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/videos.php:115
+msgid "Public access denied."
 msgstr ""
 
-#: ../../mod/group.php:87
-msgid "Save Group"
+#: ../../mod/display.php:332 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
+#: ../../mod/display.php:496
+msgid "Item has been removed."
 msgstr ""
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
+#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
+msgid "Access denied."
 msgstr ""
 
-#: ../../mod/group.php:113
-msgid "Group removed."
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
 msgstr ""
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
 msgstr ""
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
+#: ../../mod/friendica.php:63
+msgid "running at web location"
 msgstr ""
 
-#: ../../mod/group.php:192
-msgid "Members"
+#: ../../mod/friendica.php:65
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
 msgstr ""
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
+#: ../../mod/friendica.php:67
+msgid "Bug reports and issues: please visit"
 msgstr ""
 
-#: ../../mod/apps.php:11
-msgid "Applications"
+#: ../../mod/friendica.php:68
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
 msgstr ""
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
+#: ../../mod/friendica.php:82
+msgid "Installed plugins/addons/apps:"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
-#: ../../mod/profiles.php:596
-msgid "Profile not found."
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:121
+#: ../../mod/register.php:90
 msgid ""
-"This may occasionally happen if contact was requested by both persons and it "
-"has already been approved."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+#: ../../mod/register.php:96
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr ""
+
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr ""
+
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr ""
+
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr ""
+
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr ""
+
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr ""
+
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr ""
+
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr ""
+
+#: ../../mod/register.php:233 ../../mod/api.php:105 ../../mod/suggest.php:29
+#: ../../mod/dfrn_request.php:830 ../../mod/contacts.php:337
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/profiles.php:646
+#: ../../mod/profiles.php:649 ../../mod/message.php:209
+#: ../../include/items.php:4541
+msgid "Yes"
+msgstr ""
+
+#: ../../mod/register.php:234 ../../mod/api.php:106
+#: ../../mod/dfrn_request.php:830 ../../mod/settings.php:1010
+#: ../../mod/settings.php:1016 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1028 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1045
+#: ../../mod/settings.php:1051 ../../mod/settings.php:1081
+#: ../../mod/settings.php:1082 ../../mod/settings.php:1083
+#: ../../mod/settings.php:1084 ../../mod/settings.php:1085
+#: ../../mod/profiles.php:646 ../../mod/profiles.php:650
+msgid "No"
+msgstr ""
+
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr ""
+
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr ""
+
+#: ../../mod/register.php:255 ../../mod/admin.php:603
+msgid "Registration"
+msgstr ""
+
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr ""
+
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr ""
+
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be '<strong>nickname@$sitename</"
+"strong>'."
+msgstr ""
+
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr ""
+
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr ""
+
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
+#: ../../mod/profiles.php:615
+msgid "Profile not found."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it "
+"has already been approved."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr ""
+
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
 msgid "Unexpected response from remote site: "
 msgstr ""
 
@@ -1076,7 +1181,7 @@ msgid "Unable to update your contact profile details on our system"
 msgstr ""
 
 #: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:3979
+#: ../../include/items.php:3992
 msgid "[Name Withheld]"
 msgstr ""
 
@@ -1085,54 +1190,22 @@ msgstr ""
 msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: ../../mod/profile.php:21 ../../boot.php:1453
-msgid "Requested profile is not available."
-msgstr ""
-
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr ""
-
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr ""
-
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr ""
-
-#: ../../mod/videos.php:301 ../../include/text.php:1402
-msgid "View Video"
-msgstr ""
-
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr ""
-
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr ""
-
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr ""
-
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
 msgstr ""
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
 msgstr ""
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
+#: ../../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 ""
 
 #: ../../mod/lostpass.php:19
@@ -1189,10 +1262,6 @@ msgid ""
 "Password reset failed."
 msgstr ""
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1275
-msgid "Password Reset"
-msgstr ""
-
 #: ../../mod/lostpass.php:110
 msgid "Your password has been reset as requested."
 msgstr ""
@@ -1265,574 +1334,708 @@ msgstr ""
 msgid "Reset"
 msgstr ""
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
 msgstr ""
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
 msgstr ""
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
 msgstr ""
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
 msgstr ""
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
 msgstr ""
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
 msgstr ""
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
 msgstr ""
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a link URL:"
 msgstr ""
 
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
 msgstr ""
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
+#: ../../mod/wallmessage.php:143
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
 msgstr ""
 
-#: ../../mod/ping.php:281
-#, php-format
-msgid "{0} tagged %s's post with #%s"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
 msgstr ""
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
 msgstr ""
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
+#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
+#: ../../mod/message.php:558 ../../mod/invite.php:134
+msgid "Your message:"
 msgstr ""
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
-msgid "View Contacts"
+#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../include/conversation.php:1091
+msgid "Upload photo"
 msgstr ""
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../include/conversation.php:1095
+msgid "Insert web link"
 msgstr ""
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
 msgstr ""
 
-#: ../../mod/notifications.php:78
-msgid "System"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
 msgstr ""
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:143
-msgid "Network"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
 msgstr ""
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
 msgstr ""
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
-msgid "Home"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
 msgstr ""
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:152
-msgid "Introductions"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to "
+"join."
 msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
 msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
 msgstr ""
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished "
+"directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
 msgstr ""
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
+#: ../../mod/newmember.php:36 ../../mod/profiles.php:684
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
 msgstr ""
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make "
+"friends than people who do not."
 msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
 msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown "
+"visitors."
 msgstr ""
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:977
-msgid "Approve"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "yes"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
 msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "no"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
 msgstr ""
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
 msgstr ""
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
 msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
 msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
 msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
 msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
 msgstr ""
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:153
-msgid "Notifications"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
 msgstr ""
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
 msgstr ""
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand "
+"new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
 msgstr ""
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
 msgstr ""
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
 msgstr ""
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with "
+"each group privately on your Network page."
 msgstr ""
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
 msgstr ""
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to "
+"people you've added as friends. For more information, see the help section "
+"from the link above."
 msgstr ""
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
 msgstr ""
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
 msgstr ""
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program "
+"features and resources."
 msgstr ""
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:844 ../../mod/contacts.php:340
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1129
+#: ../../include/items.php:4544
+msgid "Cancel"
 msgstr ""
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
 msgstr ""
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: ../../mod/network.php:142
+msgid "Search Results For:"
 msgstr ""
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
+#: ../../mod/network.php:185 ../../mod/_search.php:21 ../../mod/search.php:21
+msgid "Remove term"
 msgstr ""
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
+#: ../../mod/network.php:194 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
 msgstr ""
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
 msgstr ""
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
+#: ../../mod/network.php:356
+msgid "Commented Order"
 msgstr ""
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
 msgstr ""
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
+#: ../../mod/network.php:362
+msgid "Posted Order"
 msgstr ""
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
 msgstr ""
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
+#: ../../mod/network.php:371 ../../mod/notifications.php:88
+msgid "Personal"
 msgstr ""
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
+#: ../../mod/network.php:380
+msgid "New"
 msgstr ""
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
+#: ../../mod/network.php:389
+msgid "Shared Links"
 msgstr ""
 
-#: ../../mod/message.php:9 ../../include/nav.php:162
-msgid "New Message"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
 msgstr ""
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
+#: ../../mod/network.php:398
+msgid "Starred"
 msgstr ""
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
 msgstr ""
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr ""
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
 msgstr ""
 
-#: ../../mod/message.php:182 ../../include/nav.php:159
-msgid "Messages"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
 msgstr ""
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
 msgstr ""
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
+#: ../../mod/network.php:554
+msgid "Contact: "
 msgstr ""
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
 msgstr ""
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
 msgstr ""
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
+#: ../../mod/install.php:127
+msgid "Could not create table."
 msgstr ""
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
+#: ../../mod/install.php:203
+msgid "System check"
 msgstr ""
 
-#: ../../mod/message.php:371
-msgid "No messages."
+#: ../../mod/install.php:207 ../../mod/events.php:373
+msgid "Next"
 msgstr ""
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
+#: ../../mod/install.php:208
+msgid "Check again"
 msgstr ""
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
+#: ../../mod/install.php:227
+msgid "Database connection"
 msgstr ""
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/message.php:450
-msgid "Message not available."
+#: ../../mod/install.php:234
+msgid "Database Server Name"
 msgstr ""
 
-#: ../../mod/message.php:520
-msgid "Delete message"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
 msgstr ""
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
 msgstr ""
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
+#: ../../mod/install.php:237
+msgid "Database Name"
 msgstr ""
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
 msgstr ""
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
+#: ../../mod/install.php:267
+msgid "Site settings"
 msgstr ""
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
-"information your communications with this contact may stop working."
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: ../../mod/crepair.php:142
+#: ../../mod/install.php:322
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a href='http://"
+"friendica.com/node/27'>'Activating scheduled tasks'</a>"
 msgstr ""
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
 msgstr ""
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
 msgstr ""
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
-#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
-#: ../../mod/settings.php:642
-msgid "Name"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
 msgstr ""
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
 msgstr ""
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
 msgstr ""
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
 msgstr ""
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: ../../mod/crepair.php:176
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
 msgstr ""
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
 msgstr ""
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:596
-msgid "Site"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
-msgid "Users"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\" "
+"in the top folder of your web server and it is unable to do so."
 msgstr ""
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
-#: ../../mod/settings.php:57
-msgid "Plugins"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr ""
+
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr ""
+
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
+msgstr ""
+
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ""
+
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr ""
+
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr ""
+
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
+msgstr ""
+
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr ""
+
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr ""
+
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
+
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr ""
+
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr ""
+
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr ""
+
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+msgstr ""
+
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr ""
+
+#: ../../mod/admin.php:104 ../../mod/admin.php:601
+msgid "Site"
+msgstr ""
+
+#: ../../mod/admin.php:105 ../../mod/admin.php:976 ../../mod/admin.php:991
+msgid "Users"
+msgstr ""
+
+#: ../../mod/admin.php:106 ../../mod/admin.php:1080 ../../mod/admin.php:1133
+#: ../../mod/settings.php:57
+msgid "Plugins"
 msgstr ""
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
+#: ../../mod/admin.php:107 ../../mod/admin.php:1301 ../../mod/admin.php:1335
 msgid "Themes"
 msgstr ""
 
@@ -1840,705 +2043,721 @@ msgstr ""
 msgid "DB updates"
 msgstr ""
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1422
 msgid "Logs"
 msgstr ""
 
-#: ../../mod/admin.php:128 ../../include/nav.php:182
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr ""
+
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr ""
+
+#: ../../mod/admin.php:130 ../../include/nav.php:182
 msgid "Admin"
 msgstr ""
 
-#: ../../mod/admin.php:129
+#: ../../mod/admin.php:131
 msgid "Plugin Features"
 msgstr ""
 
-#: ../../mod/admin.php:131
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr ""
+
+#: ../../mod/admin.php:134
 msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:924
+#: ../../mod/admin.php:193 ../../mod/admin.php:930
 msgid "Normal Account"
 msgstr ""
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:925
+#: ../../mod/admin.php:194 ../../mod/admin.php:931
 msgid "Soapbox Account"
 msgstr ""
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:926
+#: ../../mod/admin.php:195 ../../mod/admin.php:932
 msgid "Community/Celebrity Account"
 msgstr ""
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:927
+#: ../../mod/admin.php:196 ../../mod/admin.php:933
 msgid "Automatic Friend Account"
 msgstr ""
 
-#: ../../mod/admin.php:194
+#: ../../mod/admin.php:197
 msgid "Blog Account"
 msgstr ""
 
-#: ../../mod/admin.php:195
+#: ../../mod/admin.php:198
 msgid "Private Forum"
 msgstr ""
 
-#: ../../mod/admin.php:214
+#: ../../mod/admin.php:217
 msgid "Message queues"
 msgstr ""
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
-#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
-#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
+#: ../../mod/admin.php:222 ../../mod/admin.php:600 ../../mod/admin.php:975
+#: ../../mod/admin.php:1079 ../../mod/admin.php:1132 ../../mod/admin.php:1300
+#: ../../mod/admin.php:1334 ../../mod/admin.php:1421
 msgid "Administration"
 msgstr ""
 
-#: ../../mod/admin.php:220
+#: ../../mod/admin.php:223
 msgid "Summary"
 msgstr ""
 
-#: ../../mod/admin.php:222
+#: ../../mod/admin.php:225
 msgid "Registered users"
 msgstr ""
 
-#: ../../mod/admin.php:224
+#: ../../mod/admin.php:227
 msgid "Pending registrations"
 msgstr ""
 
-#: ../../mod/admin.php:225
+#: ../../mod/admin.php:228
 msgid "Version"
 msgstr ""
 
-#: ../../mod/admin.php:229
+#: ../../mod/admin.php:232
 msgid "Active plugins"
 msgstr ""
 
-#: ../../mod/admin.php:252
+#: ../../mod/admin.php:255
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: ../../mod/admin.php:500
+#: ../../mod/admin.php:505
 msgid "Site settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:529 ../../mod/settings.php:828
+#: ../../mod/admin.php:534 ../../mod/settings.php:828
 msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../mod/admin.php:547
+#: ../../mod/admin.php:551 ../../mod/contacts.php:419
+msgid "Never"
+msgstr ""
+
+#: ../../mod/admin.php:552
 msgid "At post arrival"
 msgstr ""
 
-#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
+#: ../../mod/admin.php:553 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr ""
 
-#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
+#: ../../mod/admin.php:554 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr ""
 
-#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
+#: ../../mod/admin.php:555 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr ""
 
-#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
+#: ../../mod/admin.php:556 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr ""
 
-#: ../../mod/admin.php:556
+#: ../../mod/admin.php:561
 msgid "Multi user instance"
 msgstr ""
 
-#: ../../mod/admin.php:579
+#: ../../mod/admin.php:584
 msgid "Closed"
 msgstr ""
 
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:585
 msgid "Requires approval"
 msgstr ""
 
-#: ../../mod/admin.php:581
+#: ../../mod/admin.php:586
 msgid "Open"
 msgstr ""
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:590
 msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:591
 msgid "Force all links to use SSL"
 msgstr ""
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:592
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
-#: ../../mod/admin.php:1417 ../../mod/settings.php:614
+#: ../../mod/admin.php:602 ../../mod/admin.php:1134 ../../mod/admin.php:1336
+#: ../../mod/admin.php:1423 ../../mod/settings.php:614
 #: ../../mod/settings.php:724 ../../mod/settings.php:798
 #: ../../mod/settings.php:880 ../../mod/settings.php:1113
 msgid "Save Settings"
 msgstr ""
 
-#: ../../mod/admin.php:598 ../../mod/register.php:255
-msgid "Registration"
-msgstr ""
-
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:604
 msgid "File upload"
 msgstr ""
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:605
 msgid "Policies"
 msgstr ""
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:606
 msgid "Advanced"
 msgstr ""
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:607
 msgid "Performance"
 msgstr ""
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:608
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:611
 msgid "Site name"
 msgstr ""
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:612
 msgid "Host name"
 msgstr ""
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:613
+msgid "Sender Email"
+msgstr ""
+
+#: ../../mod/admin.php:614
 msgid "Banner/Logo"
 msgstr ""
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:615
 msgid "Additional Info"
 msgstr ""
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:615
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr ""
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:616
 msgid "System language"
 msgstr ""
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:617
 msgid "System theme"
 msgstr ""
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:617
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:618
 msgid "Mobile system theme"
 msgstr ""
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:618
 msgid "Theme for mobile devices"
 msgstr ""
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:619
 msgid "SSL link policy"
 msgstr ""
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:619
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:620
 msgid "Force SSL"
 msgstr ""
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:620
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
 "to endless loops."
 msgstr ""
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:621
 msgid "Old style 'Share'"
 msgstr ""
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:621
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:622
 msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:622
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr ""
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:623
 msgid "Single user instance"
 msgstr ""
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:623
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:624
 msgid "Maximum image size"
 msgstr ""
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:624
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr ""
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:625
 msgid "Maximum image length"
 msgstr ""
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:625
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr ""
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:626
 msgid "JPEG image quality"
 msgstr ""
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:626
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr ""
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:628
 msgid "Register policy"
 msgstr ""
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:629
 msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:629
 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:624
+#: ../../mod/admin.php:630
 msgid "Register text"
 msgstr ""
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:630
 msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:631
 msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:631
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:632
 msgid "Allowed friend domains"
 msgstr ""
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:632
 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:627
+#: ../../mod/admin.php:633
 msgid "Allowed email domains"
 msgstr ""
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:633
 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:628
+#: ../../mod/admin.php:634
 msgid "Block public"
 msgstr ""
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:634
 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:629
+#: ../../mod/admin.php:635
 msgid "Force publish"
 msgstr ""
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:635
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:636
 msgid "Global directory update URL"
 msgstr ""
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:636
 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:631
+#: ../../mod/admin.php:637
 msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:637
 msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:638
 msgid "Private posts by default for new users"
 msgstr ""
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:638
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr ""
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:639
 msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:639
 msgid ""
 "Don't include the content of a post/comment/private message/etc. in the "
 "email notifications that are sent out from this site, as a privacy measure."
 msgstr ""
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:640
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:640
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr ""
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:641
 msgid "Don't embed private images in posts"
 msgstr ""
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:641
 msgid ""
 "Don't replace locally-hosted private photos in posts with an embedded copy "
 "of the image. This means that contacts who receive posts containing private "
 "photos will have to authenticate and load each image, which may take a while."
 msgstr ""
 
-#: ../../mod/admin.php:636
+#: ../../mod/admin.php:642
 msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: ../../mod/admin.php:636
+#: ../../mod/admin.php:642
 msgid ""
 "With checking this, every user is allowed to mark every contact as a "
 "remote_self in the repair contact dialog. Setting this flag on a contact "
 "causes mirroring every posting of that contact in the users stream."
 msgstr ""
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:643
 msgid "Block multiple registrations"
 msgstr ""
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:643
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:644
 msgid "OpenID support"
 msgstr ""
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:644
 msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:645
 msgid "Fullname check"
 msgstr ""
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:645
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr ""
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:646
 msgid "UTF-8 Regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:646
 msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:647
 msgid "Show Community Page"
 msgstr ""
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:647
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr ""
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:648
 msgid "Enable OStatus support"
 msgstr ""
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:648
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr ""
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:649
 msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:649
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr ""
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:650
 msgid "Enable Diaspora support"
 msgstr ""
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:650
 msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:651
 msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:651
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr ""
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:652
 msgid "Verify SSL"
 msgstr ""
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:652
 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:647
+#: ../../mod/admin.php:653
 msgid "Proxy user"
 msgstr ""
 
-#: ../../mod/admin.php:648
+#: ../../mod/admin.php:654
 msgid "Proxy URL"
 msgstr ""
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:655
 msgid "Network timeout"
 msgstr ""
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:655
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:656
 msgid "Delivery interval"
 msgstr ""
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:656
 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:651
+#: ../../mod/admin.php:657
 msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:657
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:658
 msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:658
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr ""
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:660
 msgid "Use MySQL full text engine"
 msgstr ""
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:660
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr ""
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:661
 msgid "Suppress Language"
 msgstr ""
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:661
 msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: ../../mod/admin.php:656
+#: ../../mod/admin.php:662
 msgid "Path to item cache"
 msgstr ""
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:663
 msgid "Cache duration in seconds"
 msgstr ""
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:663
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One "
 "day). To disable the item cache, set the value to -1."
 msgstr ""
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:664
 msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:664
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: ../../mod/admin.php:659
+#: ../../mod/admin.php:665
 msgid "Path for lock file"
 msgstr ""
 
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:666
 msgid "Temp path"
 msgstr ""
 
-#: ../../mod/admin.php:661
+#: ../../mod/admin.php:667
 msgid "Base path to installation"
 msgstr ""
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:668
 msgid "Disable picture proxy"
 msgstr ""
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:668
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on "
 "systems with very low bandwith."
 msgstr ""
 
-#: ../../mod/admin.php:664
+#: ../../mod/admin.php:670
 msgid "New base url"
 msgstr ""
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:672
 msgid "Disable noscrape"
 msgstr ""
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:672
 msgid ""
 "The noscrape feature speeds up directory submissions by using JSON data "
 "instead of HTML scraping. Disabling it will cause higher load on your server "
 "and the directory server."
 msgstr ""
 
-#: ../../mod/admin.php:683
+#: ../../mod/admin.php:689
 msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:697
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:700
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: ../../mod/admin.php:706
+#: ../../mod/admin.php:712
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: ../../mod/admin.php:709
+#: ../../mod/admin.php:715
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/admin.php:713
+#: ../../mod/admin.php:719
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/admin.php:715
+#: ../../mod/admin.php:721
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: ../../mod/admin.php:734
+#: ../../mod/admin.php:740
 msgid "No failed updates."
 msgstr ""
 
-#: ../../mod/admin.php:735
+#: ../../mod/admin.php:741
 msgid "Check database structure"
 msgstr ""
 
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:746
 msgid "Failed Updates"
 msgstr ""
 
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:747
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/admin.php:742
+#: ../../mod/admin.php:748
 msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:749
 msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/admin.php:775
+#: ../../mod/admin.php:781
 #, php-format
 msgid ""
 "\n"
@@ -2546,7 +2765,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr ""
 
-#: ../../mod/admin.php:778
+#: ../../mod/admin.php:784
 #, php-format
 msgid ""
 "\n"
@@ -2582,981 +2801,1071 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: ../../mod/admin.php:810 ../../include/user.php:413
+#: ../../mod/admin.php:816 ../../include/user.php:413
 #, php-format
 msgid "Registration details for %s"
 msgstr ""
 
-#: ../../mod/admin.php:822
+#: ../../mod/admin.php:828
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/admin.php:829
+#: ../../mod/admin.php:835
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../mod/admin.php:868
+#: ../../mod/admin.php:874
 #, php-format
 msgid "User '%s' deleted"
 msgstr ""
 
-#: ../../mod/admin.php:876
+#: ../../mod/admin.php:882
 #, php-format
 msgid "User '%s' unblocked"
 msgstr ""
 
-#: ../../mod/admin.php:876
+#: ../../mod/admin.php:882
 #, php-format
 msgid "User '%s' blocked"
 msgstr ""
 
-#: ../../mod/admin.php:971
+#: ../../mod/admin.php:977
 msgid "Add User"
 msgstr ""
 
-#: ../../mod/admin.php:972
+#: ../../mod/admin.php:978
 msgid "select all"
 msgstr ""
 
-#: ../../mod/admin.php:973
+#: ../../mod/admin.php:979
 msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: ../../mod/admin.php:974
+#: ../../mod/admin.php:980
 msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: ../../mod/admin.php:975
+#: ../../mod/admin.php:981
 msgid "Request date"
 msgstr ""
 
-#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
-#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1007 ../../mod/crepair.php:165
+#: ../../mod/settings.php:616 ../../mod/settings.php:642
+msgid "Name"
+msgstr ""
+
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1009 ../../include/contact_selectors.php:79
 #: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr ""
 
-#: ../../mod/admin.php:976
+#: ../../mod/admin.php:982
 msgid "No registrations."
 msgstr ""
 
-#: ../../mod/admin.php:978
+#: ../../mod/admin.php:983 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr ""
+
+#: ../../mod/admin.php:984
 msgid "Deny"
 msgstr ""
 
-#: ../../mod/admin.php:982
+#: ../../mod/admin.php:986 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Block"
+msgstr ""
+
+#: ../../mod/admin.php:987 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Unblock"
+msgstr ""
+
+#: ../../mod/admin.php:988
 msgid "Site admin"
 msgstr ""
 
-#: ../../mod/admin.php:983
+#: ../../mod/admin.php:989
 msgid "Account expired"
 msgstr ""
 
-#: ../../mod/admin.php:986
+#: ../../mod/admin.php:992
 msgid "New User"
 msgstr ""
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Register date"
 msgstr ""
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Last login"
 msgstr ""
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Last item"
 msgstr ""
 
-#: ../../mod/admin.php:987
+#: ../../mod/admin.php:993
 msgid "Deleted since"
 msgstr ""
 
-#: ../../mod/admin.php:988 ../../mod/settings.php:36
+#: ../../mod/admin.php:994 ../../mod/settings.php:36
 msgid "Account"
 msgstr ""
 
-#: ../../mod/admin.php:990
+#: ../../mod/admin.php:996
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/admin.php:991
+#: ../../mod/admin.php:997
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/admin.php:1001
+#: ../../mod/admin.php:1007
 msgid "Name of the new user."
 msgstr ""
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1008
 msgid "Nickname"
 msgstr ""
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1008
 msgid "Nickname of the new user."
 msgstr ""
 
-#: ../../mod/admin.php:1003
+#: ../../mod/admin.php:1009
 msgid "Email address of the new user."
 msgstr ""
 
-#: ../../mod/admin.php:1036
+#: ../../mod/admin.php:1042
 #, php-format
 msgid "Plugin %s disabled."
 msgstr ""
 
-#: ../../mod/admin.php:1040
+#: ../../mod/admin.php:1046
 #, php-format
 msgid "Plugin %s enabled."
 msgstr ""
 
-#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
+#: ../../mod/admin.php:1056 ../../mod/admin.php:1272
 msgid "Disable"
 msgstr ""
 
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
+#: ../../mod/admin.php:1058 ../../mod/admin.php:1274
 msgid "Enable"
 msgstr ""
 
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
+#: ../../mod/admin.php:1081 ../../mod/admin.php:1302
 msgid "Toggle"
 msgstr ""
 
-#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
+#: ../../mod/admin.php:1089 ../../mod/admin.php:1312
 msgid "Author: "
 msgstr ""
 
-#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
+#: ../../mod/admin.php:1090 ../../mod/admin.php:1313
 msgid "Maintainer: "
 msgstr ""
 
-#: ../../mod/admin.php:1226
+#: ../../mod/admin.php:1232
 msgid "No themes found."
 msgstr ""
 
-#: ../../mod/admin.php:1288
+#: ../../mod/admin.php:1294
 msgid "Screenshot"
 msgstr ""
 
-#: ../../mod/admin.php:1334
+#: ../../mod/admin.php:1340
 msgid "[Experimental]"
 msgstr ""
 
-#: ../../mod/admin.php:1335
+#: ../../mod/admin.php:1341
 msgid "[Unsupported]"
 msgstr ""
 
-#: ../../mod/admin.php:1362
+#: ../../mod/admin.php:1368
 msgid "Log settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:1418
+#: ../../mod/admin.php:1424
 msgid "Clear"
 msgstr ""
 
-#: ../../mod/admin.php:1424
+#: ../../mod/admin.php:1430
 msgid "Enable Debugging"
 msgstr ""
 
-#: ../../mod/admin.php:1425
+#: ../../mod/admin.php:1431
 msgid "Log file"
 msgstr ""
 
-#: ../../mod/admin.php:1425
+#: ../../mod/admin.php:1431
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr ""
 
-#: ../../mod/admin.php:1426
+#: ../../mod/admin.php:1432
 msgid "Log level"
 msgstr ""
 
-#: ../../mod/admin.php:1476
-msgid "Close"
+#: ../../mod/admin.php:1481 ../../mod/contacts.php:498
+msgid "Update now"
 msgstr ""
 
 #: ../../mod/admin.php:1482
+msgid "Close"
+msgstr ""
+
+#: ../../mod/admin.php:1488
 msgid "FTP Host"
 msgstr ""
 
-#: ../../mod/admin.php:1483
+#: ../../mod/admin.php:1489
 msgid "FTP Path"
 msgstr ""
 
-#: ../../mod/admin.php:1484
+#: ../../mod/admin.php:1490
 msgid "FTP User"
 msgstr ""
 
-#: ../../mod/admin.php:1485
+#: ../../mod/admin.php:1491
 msgid "FTP Password"
 msgstr ""
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
+#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:953
+#: ../../include/text.php:954 ../../include/nav.php:119
+msgid "Search"
 msgstr ""
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
+#: ../../mod/_search.php:180 ../../mod/_search.php:206
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:71
+msgid "No results."
 msgstr ""
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
 msgstr ""
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
+#: ../../mod/share.php:44
+msgid "link"
 msgstr ""
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
 msgstr ""
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
 msgstr ""
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
+#: ../../mod/editpost.php:109 ../../mod/notes.php:63 ../../mod/filer.php:31
+#: ../../include/text.php:956
+msgid "Save"
 msgstr ""
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
 msgstr ""
 
-#: ../../mod/network.php:380
-msgid "New"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
 msgstr ""
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
 msgstr ""
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
 msgstr ""
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
 msgstr ""
 
-#: ../../mod/network.php:398
-msgid "Starred"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
 msgstr ""
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
 msgstr ""
 
-#: ../../mod/network.php:463
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
+msgstr ""
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
 msgstr ""
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
 msgstr ""
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
 msgstr ""
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
 msgstr ""
 
-#: ../../mod/network.php:554
-msgid "Contact: "
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
 msgstr ""
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
 msgstr ""
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
 msgstr ""
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
 msgstr ""
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
 msgstr ""
 
-#: ../../mod/events.php:291
-msgid "l, F j"
+#: ../../mod/attach.php:8
+msgid "Item not available."
 msgstr ""
 
-#: ../../mod/events.php:313
-msgid "Edit event"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
 msgstr ""
 
-#: ../../mod/events.php:335 ../../include/text.php:1644
-#: ../../include/text.php:1654
-msgid "link to source"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
 msgstr ""
 
-#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
+#: ../../mod/regmod.php:104
+msgid "Please login."
 msgstr ""
 
-#: ../../mod/events.php:372
-msgid "Previous"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
 msgstr ""
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
+#: ../../mod/directory.php:61 ../../mod/contacts.php:707
+msgid "Finding: "
 msgstr ""
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
 msgstr ""
 
-#: ../../mod/events.php:456
-msgid "Event details"
+#: ../../mod/directory.php:63 ../../mod/contacts.php:708
+#: ../../include/contact_widgets.php:34
+msgid "Find"
 msgstr ""
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
+#: ../../mod/directory.php:113 ../../mod/profiles.php:735
+msgid "Age: "
 msgstr ""
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
+#: ../../mod/directory.php:116
+msgid "Gender: "
 msgstr ""
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
 msgstr ""
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
 msgstr ""
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
 msgstr ""
 
-#: ../../mod/events.php:469
-msgid "Description:"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
 msgstr ""
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
 msgstr ""
 
-#: ../../mod/events.php:473
-msgid "Title:"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
 msgstr ""
 
-#: ../../mod/events.php:475
-msgid "Share this event"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
 msgstr ""
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
 msgstr ""
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
 msgstr ""
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
 msgstr ""
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1969
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
 msgstr ""
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
-msgid "Private Message"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
 msgstr ""
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
-msgid "I like this (toggle)"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
 msgstr ""
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
-msgid "like"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
 msgstr ""
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
-msgid "I don't like this (toggle)"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
 msgstr ""
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
-msgid "dislike"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
 msgstr ""
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "Share this"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
 msgstr ""
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "share"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
 msgstr ""
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
-#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
-msgid "This is you"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
 msgstr ""
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
+#: ../../mod/uimport.php:66
+msgid "Move account"
 msgstr ""
 
-#: ../../mod/content.php:711 ../../object/Item.php:679
-msgid "Bold"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
 msgstr ""
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
-msgid "Italic"
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also "
+"to inform your friends that you moved here."
 msgstr ""
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
-msgid "Underline"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
 msgstr ""
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
-msgid "Quote"
+#: ../../mod/uimport.php:70
+msgid "Account file"
 msgstr ""
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
-msgid "Code"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
 msgstr ""
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
-msgid "Image"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
 msgstr ""
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
-msgid "Link"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
 msgstr ""
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
-msgid "Video"
+#: ../../mod/help.php:79
+msgid "Help:"
 msgstr ""
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
+#: ../../mod/help.php:84 ../../include/nav.php:114
+msgid "Help"
 msgstr ""
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
+#: ../../mod/hcard.php:10
+msgid "No profile"
 msgstr ""
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
 msgstr ""
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
 msgstr ""
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
 msgstr ""
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
 msgstr ""
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
 msgstr ""
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
 msgstr ""
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
 msgstr ""
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
 msgstr ""
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
 msgstr ""
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
 msgstr ""
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
 msgstr ""
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
 msgstr ""
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
 msgstr ""
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
 msgstr ""
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
 msgstr ""
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
 msgstr ""
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: ../../mod/install.php:203
-msgid "System check"
+#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:188
+msgid "Failed to update contact record."
 msgstr ""
 
-#: ../../mod/install.php:208
-msgid "Check again"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
 msgstr ""
 
-#: ../../mod/install.php:227
-msgid "Database connection"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
 msgstr ""
 
-#: ../../mod/install.php:228
+#: ../../mod/dfrn_request.php:660
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
 msgstr ""
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
 msgstr ""
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
 msgstr ""
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
 msgstr ""
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
 msgstr ""
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: ../../mod/install.php:237
-msgid "Database Name"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a href=\"http://dir."
+"friendica.com/siteinfo\">follow this link to find a public Friendica site "
+"and join us today</a>."
 msgstr ""
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
 msgstr ""
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/dfrn_request.php:828
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
 msgstr ""
 
-#: ../../mod/install.php:267
-msgid "Site settings"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
 msgstr ""
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
 msgstr ""
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a href='http://"
-"friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
 msgstr ""
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
 msgstr ""
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: ../../mod/dfrn_request.php:838 ../../mod/settings.php:736
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
 msgstr ""
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search "
+"bar."
 msgstr ""
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
 msgstr ""
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
 msgstr ""
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
+#: ../../mod/update_profile.php:41 ../../mod/update_network.php:25
+#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
+#: ../../mod/update_notes.php:37
+msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
 msgstr ""
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
+#: ../../mod/contacts.php:108
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
+msgid "Could not access contact record."
 msgstr ""
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
+#: ../../mod/contacts.php:153
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/contacts.php:186
+msgid "Contact updated."
 msgstr ""
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: ../../mod/contacts.php:287
+msgid "Contact has been blocked"
 msgstr ""
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
+#: ../../mod/contacts.php:287
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
+#: ../../mod/contacts.php:298
+msgid "Contact has been ignored"
 msgstr ""
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
+#: ../../mod/contacts.php:298
+msgid "Contact has been unignored"
 msgstr ""
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
+#: ../../mod/contacts.php:310
+msgid "Contact has been archived"
 msgstr ""
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
+#: ../../mod/contacts.php:310
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
+#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
+#: ../../mod/contacts.php:352
+msgid "Contact has been removed."
 msgstr ""
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: ../../mod/contacts.php:390
+#, php-format
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
+#: ../../mod/contacts.php:394
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: ../../mod/contacts.php:399
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
+#: ../../mod/contacts.php:416
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
+#: ../../mod/contacts.php:423
+msgid "(Update was successful)"
 msgstr ""
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
+#: ../../mod/contacts.php:423
+msgid "(Update was not successful)"
 msgstr ""
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
+#: ../../mod/contacts.php:425
+msgid "Suggest friends"
 msgstr ""
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: ../../mod/contacts.php:429
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
+#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/contacts.php:437
+msgid "View all contacts"
 msgstr ""
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: ../../mod/contacts.php:445
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715
+msgid "Unignore"
 msgstr ""
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
 msgstr ""
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
+#: ../../mod/contacts.php:451
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Unarchive"
 msgstr ""
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Archive"
 msgstr ""
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
+#: ../../mod/contacts.php:458
+msgid "Toggle Archive status"
 msgstr ""
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+#: ../../mod/contacts.php:461
+msgid "Repair"
 msgstr ""
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
+#: ../../mod/contacts.php:464
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
+#: ../../mod/contacts.php:470
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
+#: ../../mod/contacts.php:473
+msgid "Contact Editor"
 msgstr ""
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: ../../mod/contacts.php:476
+msgid "Profile Visibility"
 msgstr ""
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#: ../../mod/contacts.php:477
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
+#: ../../mod/contacts.php:478
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
+#: ../../mod/contacts.php:479
+msgid "Edit contact notes"
 msgstr ""
 
-#: ../../mod/wallmessage.php:143
+#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
+#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
 #, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
+msgid "Visit %s's profile [%s]"
 msgstr ""
 
-#: ../../mod/help.php:79
-msgid "Help:"
+#: ../../mod/contacts.php:485
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
+#: ../../mod/contacts.php:486
+msgid "Ignore contact"
 msgstr ""
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
+#: ../../mod/contacts.php:487
+msgid "Repair URL settings"
 msgstr ""
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
+#: ../../mod/contacts.php:488
+msgid "View conversations"
 msgstr ""
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
+#: ../../mod/contacts.php:490
+msgid "Delete contact"
 msgstr ""
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
+#: ../../mod/contacts.php:494
+msgid "Last update:"
 msgstr ""
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+#: ../../mod/contacts.php:496
+msgid "Update public posts"
 msgstr ""
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
+#: ../../mod/contacts.php:505
+msgid "Currently blocked"
 msgstr ""
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
+#: ../../mod/contacts.php:506
+msgid "Currently ignored"
 msgstr ""
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
+#: ../../mod/contacts.php:507
+msgid "Currently archived"
 msgstr ""
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
+#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
 msgstr ""
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/contacts.php:508
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
+#: ../../mod/contacts.php:509
+msgid "Notification for new posts"
 msgstr ""
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
+#: ../../mod/contacts.php:509
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: ../../mod/share.php:44
-msgid "link"
+#: ../../mod/contacts.php:510
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: ../../mod/community.php:23
-msgid "Not available."
+#: ../../mod/contacts.php:511
+msgid "Disabled"
 msgstr ""
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../view/theme/diabook/theme.php:129
-msgid "Community"
+#: ../../mod/contacts.php:511
+msgid "Fetch information"
 msgstr ""
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:170 ../../mod/search.php:196
-msgid "No results."
+#: ../../mod/contacts.php:511
+msgid "Fetch information and keywords"
+msgstr ""
+
+#: ../../mod/contacts.php:513
+msgid "Blacklisted keywords"
+msgstr ""
+
+#: ../../mod/contacts.php:513
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr ""
+
+#: ../../mod/contacts.php:564
+msgid "Suggestions"
+msgstr ""
+
+#: ../../mod/contacts.php:567
+msgid "Suggest potential friends"
+msgstr ""
+
+#: ../../mod/contacts.php:570 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:573
+msgid "Show all contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:576
+msgid "Unblocked"
+msgstr ""
+
+#: ../../mod/contacts.php:579
+msgid "Only show unblocked contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:583
+msgid "Blocked"
+msgstr ""
+
+#: ../../mod/contacts.php:586
+msgid "Only show blocked contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:590
+msgid "Ignored"
+msgstr ""
+
+#: ../../mod/contacts.php:593
+msgid "Only show ignored contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:597
+msgid "Archived"
+msgstr ""
+
+#: ../../mod/contacts.php:600
+msgid "Only show archived contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:604
+msgid "Hidden"
+msgstr ""
+
+#: ../../mod/contacts.php:607
+msgid "Only show hidden contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:655
+msgid "Mutual Friendship"
+msgstr ""
+
+#: ../../mod/contacts.php:659
+msgid "is a fan of yours"
+msgstr ""
+
+#: ../../mod/contacts.php:663
+msgid "you are a fan of"
+msgstr ""
+
+#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr ""
+
+#: ../../mod/contacts.php:706
+msgid "Search your contacts"
+msgstr ""
+
+#: ../../mod/contacts.php:713 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
 msgstr ""
 
 #: ../../mod/settings.php:29 ../../mod/photos.php:80
@@ -3729,11 +4038,6 @@ msgstr ""
 msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr ""
-
 #: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "enabled"
 msgstr ""
@@ -3920,18 +4224,6 @@ msgstr ""
 msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:627
-#: ../../mod/profiles.php:631 ../../mod/api.php:106
-msgid "No"
-msgstr ""
-
 #: ../../mod/settings.php:1016
 msgid "Publish your default profile in the global social directory?"
 msgstr ""
@@ -3970,6 +4262,10 @@ msgstr ""
 msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
+#: ../../mod/settings.php:1062 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr ""
+
 #: ../../mod/settings.php:1067
 msgid "Your Identity Address is"
 msgstr ""
@@ -4198,1471 +4494,1474 @@ msgstr ""
 msgid "Resend relocate message to contacts"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
+#: ../../mod/profiles.php:348
+msgid "Likes"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
+#: ../../mod/profiles.php:359
+msgid "Religion"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
+#: ../../mod/profiles.php:363
+msgid "Political Views"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
+#: ../../mod/profiles.php:367
+msgid "Gender"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
+#: ../../mod/profiles.php:375
+msgid "Homepage"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:480
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:683
+msgid "Interests"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
+#: ../../mod/profiles.php:383
+msgid "Address"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:679
+msgid "Location"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
+#: ../../mod/profiles.php:553
+msgid " and "
 msgstr ""
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: ../../mod/profiles.php:561
+msgid "public profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
+#: ../../mod/profiles.php:564
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:674
+#: ../../mod/profiles.php:565
 #, php-format
-msgid "Welcome home %s."
+msgid " - Visit %1$s's %2$s"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/profiles.php:568
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
+#: ../../mod/profiles.php:643
+msgid "Hide contacts and friends:"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: ../../mod/profiles.php:648
+msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a href=\"http://dir."
-"friendica.com/siteinfo\">follow this link to find a public Friendica site "
-"and join us today</a>."
+#: ../../mod/profiles.php:670
+msgid "Edit Profile Details"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
+#: ../../mod/profiles.php:672
+msgid "Change Profile Photo"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+#: ../../mod/profiles.php:673
+msgid "View this profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
+#: ../../mod/profiles.php:674
+msgid "Create a new profile using these settings"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
+#: ../../mod/profiles.php:675
+msgid "Clone this profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
+#: ../../mod/profiles.php:676
+msgid "Delete this profile"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
+#: ../../mod/profiles.php:677
+msgid "Basic information"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
+#: ../../mod/profiles.php:678
+msgid "Profile picture"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search "
-"bar."
+#: ../../mod/profiles.php:680
+msgid "Preferences"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
+#: ../../mod/profiles.php:681
+msgid "Status information"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
+#: ../../mod/profiles.php:682
+msgid "Additional information"
 msgstr ""
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: ../../mod/profiles.php:685
+msgid "Profile Name:"
 msgstr ""
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr ""
+#: ../../mod/profiles.php:686
+msgid "Your Full Name:"
+msgstr ""
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
+#: ../../mod/profiles.php:687
+msgid "Title/Description:"
 msgstr ""
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/profiles.php:688
+msgid "Your Gender:"
 msgstr ""
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: ../../mod/profiles.php:689
+#, php-format
+msgid "Birthday (%s):"
 msgstr ""
 
-#: ../../mod/register.php:214
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: ../../mod/profiles.php:690
+msgid "Street Address:"
 msgstr ""
 
-#: ../../mod/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+#: ../../mod/profiles.php:691
+msgid "Locality/City:"
 msgstr ""
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
+#: ../../mod/profiles.php:692
+msgid "Postal/Zip Code:"
 msgstr ""
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
+#: ../../mod/profiles.php:693
+msgid "Country:"
 msgstr ""
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
+#: ../../mod/profiles.php:694
+msgid "Region/State:"
 msgstr ""
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
+#: ../../mod/profiles.php:695
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
 msgstr ""
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
+#: ../../mod/profiles.php:696
+msgid "Who: (if applicable)"
 msgstr ""
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
+#: ../../mod/profiles.php:697
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
 msgstr ""
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@$sitename</"
-"strong>'."
+#: ../../mod/profiles.php:698
+msgid "Since [date]:"
 msgstr ""
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
+#: ../../mod/profiles.php:699 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
 msgstr ""
 
-#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
-msgid "Register"
+#: ../../mod/profiles.php:700
+msgid "Homepage URL:"
 msgstr ""
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
+#: ../../mod/profiles.php:701 ../../include/profile_advanced.php:50
+msgid "Hometown:"
 msgstr ""
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
+#: ../../mod/profiles.php:702 ../../include/profile_advanced.php:54
+msgid "Political Views:"
 msgstr ""
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
+#: ../../mod/profiles.php:703
+msgid "Religious Views:"
 msgstr ""
 
-#: ../../mod/search.php:99 ../../include/text.php:952
-#: ../../include/text.php:953 ../../include/nav.php:119
-msgid "Search"
+#: ../../mod/profiles.php:704
+msgid "Public Keywords:"
 msgstr ""
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
+#: ../../mod/profiles.php:705
+msgid "Private Keywords:"
 msgstr ""
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
+#: ../../mod/profiles.php:706 ../../include/profile_advanced.php:62
+msgid "Likes:"
 msgstr ""
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
+#: ../../mod/profiles.php:707 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
 msgstr ""
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:716
-msgid "Age: "
+#: ../../mod/profiles.php:708
+msgid "Example: fishing photography software"
 msgstr ""
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
+#: ../../mod/profiles.php:709
+msgid "(Used for suggesting potential friends, can be seen by others)"
 msgstr ""
 
-#: ../../mod/directory.php:138 ../../boot.php:1645
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
+#: ../../mod/profiles.php:710
+msgid "(Used for searching profiles, never shown to others)"
 msgstr ""
 
-#: ../../mod/directory.php:140 ../../boot.php:1648
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
+#: ../../mod/profiles.php:711
+msgid "Tell us about yourself..."
 msgstr ""
 
-#: ../../mod/directory.php:142 ../../boot.php:1650
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
+#: ../../mod/profiles.php:712
+msgid "Hobbies/Interests"
 msgstr ""
 
-#: ../../mod/directory.php:144 ../../boot.php:1652
-#: ../../include/profile_advanced.php:58
-msgid "About:"
+#: ../../mod/profiles.php:713
+msgid "Contact information and Social Networks"
 msgstr ""
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
+#: ../../mod/profiles.php:714
+msgid "Musical interests"
 msgstr ""
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
+#: ../../mod/profiles.php:715
+msgid "Books, literature"
 msgstr ""
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:168
-msgid "Delegate Page Management"
+#: ../../mod/profiles.php:716
+msgid "Television"
 msgstr ""
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
+#: ../../mod/profiles.php:717
+msgid "Film/dance/culture/entertainment"
 msgstr ""
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
+#: ../../mod/profiles.php:718
+msgid "Love/romance"
 msgstr ""
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
+#: ../../mod/profiles.php:719
+msgid "Work/employment"
 msgstr ""
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
+#: ../../mod/profiles.php:720
+msgid "School/education"
 msgstr ""
 
-#: ../../mod/delegate.php:140
-msgid "Add"
+#: ../../mod/profiles.php:725
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
 msgstr ""
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
+#: ../../mod/profiles.php:788
+msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
+#: ../../mod/group.php:29
+msgid "Group created."
 msgstr ""
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
+#: ../../mod/group.php:35
+msgid "Could not create group."
 msgstr ""
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
 msgstr ""
 
-#: ../../mod/uexport.php:77
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: ../../mod/group.php:60
+msgid "Group name changed."
 msgstr ""
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
+#: ../../mod/group.php:87
+msgid "Save Group"
 msgstr ""
 
-#: ../../mod/uexport.php:78
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
 msgstr ""
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
 msgstr ""
 
-#: ../../mod/mood.php:133
-msgid "Mood"
+#: ../../mod/group.php:113
+msgid "Group removed."
 msgstr ""
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
 msgstr ""
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
+#: ../../mod/group.php:179
+msgid "Group Editor"
 msgstr ""
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
+#: ../../mod/group.php:192
+msgid "Members"
 msgstr ""
 
-#: ../../mod/suggest.php:74
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
 msgstr ""
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
+#: ../../mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
+#: ../../mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: ../../mod/profiles.php:172
-msgid "Profile Name is required."
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
 msgstr ""
 
-#: ../../mod/profiles.php:323
-msgid "Marital Status"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
 msgstr ""
 
-#: ../../mod/profiles.php:327
-msgid "Romantic Partner"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
 msgstr ""
 
-#: ../../mod/profiles.php:331
-msgid "Likes"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
 msgstr ""
 
-#: ../../mod/profiles.php:335
-msgid "Dislikes"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
 msgstr ""
 
-#: ../../mod/profiles.php:339
-msgid "Work/Employment"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
 msgstr ""
 
-#: ../../mod/profiles.php:342
-msgid "Religion"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
 msgstr ""
 
-#: ../../mod/profiles.php:346
-msgid "Political Views"
+#: ../../mod/community.php:23
+msgid "Not available."
 msgstr ""
 
-#: ../../mod/profiles.php:350
-msgid "Gender"
+#: ../../mod/follow.php:27
+msgid "Contact added"
 msgstr ""
 
-#: ../../mod/profiles.php:354
-msgid "Sexual Preference"
+#: ../../mod/notify.php:75 ../../mod/notifications.php:336
+msgid "No more system notifications."
 msgstr ""
 
-#: ../../mod/profiles.php:358
-msgid "Homepage"
+#: ../../mod/notify.php:79 ../../mod/notifications.php:340
+msgid "System Notifications"
 msgstr ""
 
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
-msgid "Interests"
+#: ../../mod/message.php:9 ../../include/nav.php:162
+msgid "New Message"
 msgstr ""
 
-#: ../../mod/profiles.php:366
-msgid "Address"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
 msgstr ""
 
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
-msgid "Location"
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
 msgstr ""
 
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: ../../mod/profiles.php:534
-msgid " and "
+#: ../../mod/message.php:227
+msgid "Message deleted."
 msgstr ""
 
-#: ../../mod/profiles.php:542
-msgid "public profile"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
 msgstr ""
 
-#: ../../mod/profiles.php:545
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+#: ../../mod/message.php:371
+msgid "No messages."
 msgstr ""
 
-#: ../../mod/profiles.php:546
+#: ../../mod/message.php:378
 #, php-format
-msgid " - Visit %1$s's %2$s"
+msgid "Unknown sender - %s"
 msgstr ""
 
-#: ../../mod/profiles.php:549
+#: ../../mod/message.php:381
 #, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+msgid "You and %s"
 msgstr ""
 
-#: ../../mod/profiles.php:624
-msgid "Hide contacts and friends:"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
 msgstr ""
 
-#: ../../mod/profiles.php:629
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
 msgstr ""
 
-#: ../../mod/profiles.php:651
-msgid "Edit Profile Details"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
 msgstr ""
 
-#: ../../mod/profiles.php:653
-msgid "Change Profile Photo"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/message.php:450
+msgid "Message not available."
 msgstr ""
 
-#: ../../mod/profiles.php:654
-msgid "View this profile"
+#: ../../mod/message.php:520
+msgid "Delete message"
 msgstr ""
 
-#: ../../mod/profiles.php:655
-msgid "Create a new profile using these settings"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
 msgstr ""
 
-#: ../../mod/profiles.php:656
-msgid "Clone this profile"
+#: ../../mod/message.php:552
+msgid "Send Reply"
 msgstr ""
 
-#: ../../mod/profiles.php:657
-msgid "Delete this profile"
+#: ../../mod/like.php:168 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
 msgstr ""
 
-#: ../../mod/profiles.php:658
-msgid "Basic information"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
 msgstr ""
 
-#: ../../mod/profiles.php:659
-msgid "Profile picture"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:148
+msgid "l F d, Y \\@ g:i A"
 msgstr ""
 
-#: ../../mod/profiles.php:661
-msgid "Preferences"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
 msgstr ""
 
-#: ../../mod/profiles.php:662
-msgid "Status information"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
 msgstr ""
 
-#: ../../mod/profiles.php:663
-msgid "Additional information"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
 msgstr ""
 
-#: ../../mod/profiles.php:666
-msgid "Profile Name:"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
 msgstr ""
 
-#: ../../mod/profiles.php:667
-msgid "Your Full Name:"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
 msgstr ""
 
-#: ../../mod/profiles.php:668
-msgid "Title/Description:"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
 msgstr ""
 
-#: ../../mod/profiles.php:669
-msgid "Your Gender:"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
 msgstr ""
 
-#: ../../mod/profiles.php:670
-#, php-format
-msgid "Birthday (%s):"
+#: ../../mod/filer.php:30
+msgid "- select -"
 msgstr ""
 
-#: ../../mod/profiles.php:671
-msgid "Street Address:"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
 msgstr ""
 
-#: ../../mod/profiles.php:672
-msgid "Locality/City:"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
 msgstr ""
 
-#: ../../mod/profiles.php:673
-msgid "Postal/Zip Code:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
 msgstr ""
 
-#: ../../mod/profiles.php:674
-msgid "Country:"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
 msgstr ""
 
-#: ../../mod/profiles.php:675
-msgid "Region/State:"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
 msgstr ""
 
-#: ../../mod/profiles.php:676
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
+msgid "View Contacts"
 msgstr ""
 
-#: ../../mod/profiles.php:677
-msgid "Who: (if applicable)"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
 msgstr ""
 
-#: ../../mod/profiles.php:678
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
 msgstr ""
 
-#: ../../mod/profiles.php:679
-msgid "Since [date]:"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
 msgstr ""
 
-#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
 msgstr ""
 
-#: ../../mod/profiles.php:681
-msgid "Homepage URL:"
+#: ../../mod/photos.php:165
+msgid "Album not found."
 msgstr ""
 
-#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
-msgid "Hometown:"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
 msgstr ""
 
-#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
-msgid "Political Views:"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
 msgstr ""
 
-#: ../../mod/profiles.php:684
-msgid "Religious Views:"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
 msgstr ""
 
-#: ../../mod/profiles.php:685
-msgid "Public Keywords:"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
 msgstr ""
 
-#: ../../mod/profiles.php:686
-msgid "Private Keywords:"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
 msgstr ""
 
-#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
-msgid "Likes:"
+#: ../../mod/photos.php:662
+msgid "a photo"
 msgstr ""
 
-#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
 msgstr ""
 
-#: ../../mod/profiles.php:689
-msgid "Example: fishing photography software"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
 msgstr ""
 
-#: ../../mod/profiles.php:690
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: ../../mod/photos.php:807 ../../mod/wall_upload.php:144
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
 msgstr ""
 
-#: ../../mod/profiles.php:691
-msgid "(Used for searching profiles, never shown to others)"
+#: ../../mod/photos.php:834 ../../mod/wall_upload.php:172
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
 msgstr ""
 
-#: ../../mod/profiles.php:692
-msgid "Tell us about yourself..."
+#: ../../mod/photos.php:930
+msgid "No photos selected"
 msgstr ""
 
-#: ../../mod/profiles.php:693
-msgid "Hobbies/Interests"
+#: ../../mod/photos.php:1031 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
 msgstr ""
 
-#: ../../mod/profiles.php:694
-msgid "Contact information and Social Networks"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: ../../mod/profiles.php:695
-msgid "Musical interests"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
 msgstr ""
 
-#: ../../mod/profiles.php:696
-msgid "Books, literature"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
 msgstr ""
 
-#: ../../mod/profiles.php:697
-msgid "Television"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
 msgstr ""
 
-#: ../../mod/profiles.php:698
-msgid "Film/dance/culture/entertainment"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: ../../mod/profiles.php:699
-msgid "Love/romance"
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
 msgstr ""
 
-#: ../../mod/profiles.php:700
-msgid "Work/employment"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
 msgstr ""
 
-#: ../../mod/profiles.php:701
-msgid "School/education"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
 msgstr ""
 
-#: ../../mod/profiles.php:706
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
 msgstr ""
 
-#: ../../mod/profiles.php:769
-msgid "Edit/Manage Profiles"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
 msgstr ""
 
-#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
-msgid "Change profile photo"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
 msgstr ""
 
-#: ../../mod/profiles.php:771 ../../boot.php:1607
-msgid "Create New Profile"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
 msgstr ""
 
-#: ../../mod/profiles.php:782 ../../boot.php:1617
-msgid "Profile Image"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
 msgstr ""
 
-#: ../../mod/profiles.php:784 ../../boot.php:1620
-msgid "visible to everybody"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
 msgstr ""
 
-#: ../../mod/profiles.php:785 ../../boot.php:1621
-msgid "Edit visibility"
+#: ../../mod/photos.php:1352
+msgid "View photo"
 msgstr ""
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
 msgstr ""
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
 msgstr ""
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
 msgstr ""
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
 msgstr ""
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
 msgstr ""
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
+#: ../../mod/photos.php:1503
+msgid "New album name"
 msgstr ""
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
+#: ../../mod/photos.php:1506
+msgid "Caption"
 msgstr ""
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
 msgstr ""
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
+#: ../../mod/photos.php:1512
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 msgstr ""
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
 msgstr ""
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
 msgstr ""
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
 msgstr ""
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
+#: ../../mod/photos.php:1808 ../../mod/videos.php:308
+msgid "View Album"
 msgstr ""
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
 msgstr ""
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
 msgstr ""
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
 msgstr ""
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
 msgstr ""
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
 msgstr ""
 
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
 msgstr ""
 
-#: ../../mod/friendica.php:63
-msgid "running at web location"
+#: ../../mod/videos.php:301 ../../include/text.php:1405
+msgid "View Video"
 msgstr ""
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
 msgstr ""
 
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
 msgstr ""
 
-#: ../../mod/friendica.php:68
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
 msgstr ""
 
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
+#: ../../mod/poke.php:194
+msgid "Recipient"
 msgstr ""
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
 msgstr ""
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
 msgstr ""
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts, "
-"and/or create new posts for you?"
+#: ../../mod/uexport.php:77
+msgid "Export account"
 msgstr ""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
 msgstr ""
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
+#: ../../mod/uexport.php:78
+msgid "Export all"
 msgstr ""
 
-#: ../../mod/notes.php:44 ../../boot.php:2145
-msgid "Personal Notes"
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
 msgstr ""
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
+#: ../../mod/common.php:42
+msgid "Common Friends"
 msgstr ""
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
 msgstr ""
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
 msgstr ""
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
+#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178
+#: ../../mod/wall_upload.php:185 ../../mod/item.php:484
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
+msgid "Wall Photos"
 msgstr ""
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
 msgstr ""
 
-#: ../../mod/localtime.php:36
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
 #, php-format
-msgid "Converted localtime: %s"
+msgid "Image size reduction [%s] failed."
 msgstr ""
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
 msgstr ""
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
 msgstr ""
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
 msgstr ""
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
 msgstr ""
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
 msgstr ""
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
 msgstr ""
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
 msgstr ""
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
 msgstr ""
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
 msgstr ""
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
 msgstr ""
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
 msgstr ""
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] ""
-msgstr[1] ""
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr ""
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
 msgstr ""
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many "
-"other social networks."
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
 msgstr ""
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
 msgstr ""
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
+#: ../../mod/match.php:12
+msgid "Profile Match"
 msgstr ""
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other "
-"public sites or invite members."
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
+#: ../../mod/match.php:57
+msgid "is interested in:"
 msgstr ""
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
 msgstr ""
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
 msgstr ""
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
 msgstr ""
 
-#: ../../mod/photos.php:52 ../../boot.php:2124
-msgid "Photo Albums"
+#: ../../mod/events.php:291
+msgid "l, F j"
 msgstr ""
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
+#: ../../mod/events.php:313
+msgid "Edit event"
 msgstr ""
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
+#: ../../mod/events.php:335 ../../include/text.php:1647
+#: ../../include/text.php:1657
+msgid "link to source"
 msgstr ""
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
+#: ../../mod/events.php:371
+msgid "Create New Event"
 msgstr ""
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
+#: ../../mod/events.php:372
+msgid "Previous"
 msgstr ""
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
+#: ../../mod/events.php:446
+msgid "hour:minute"
 msgstr ""
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
+#: ../../mod/events.php:456
+msgid "Event details"
 msgstr ""
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
 msgstr ""
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
 msgstr ""
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
 msgstr ""
 
-#: ../../mod/photos.php:662
-msgid "a photo"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
 msgstr ""
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
+#: ../../mod/events.php:469
+msgid "Description:"
 msgstr ""
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+#: ../../mod/events.php:473
+msgid "Title:"
 msgstr ""
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
+#: ../../mod/events.php:475
+msgid "Share this event"
 msgstr ""
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
 msgstr ""
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
+#: ../../mod/delegate.php:130 ../../include/nav.php:168
+msgid "Delegate Page Management"
 msgstr ""
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
+#: ../../mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
 msgstr ""
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
 msgstr ""
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
 msgstr ""
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
 msgstr ""
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
+#: ../../mod/delegate.php:140
+msgid "Add"
 msgstr ""
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
+#: ../../mod/delegate.php:141
+msgid "No entries."
 msgstr ""
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
 msgstr ""
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
 msgstr ""
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
 msgstr ""
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
 msgstr ""
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
 msgstr ""
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
 msgstr ""
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
 msgstr ""
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
 msgstr ""
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
 msgstr ""
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
 msgstr ""
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
+#: ../../mod/item.php:964
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
+#: ../../mod/item.php:967
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: ../../mod/photos.php:1512
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/item.php:971
+#, php-format
+msgid "%s posted an update."
 msgstr ""
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
 msgstr ""
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
 msgstr ""
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
 msgstr ""
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
 msgstr ""
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
 msgstr ""
 
-#: ../../mod/regmod.php:92
+#: ../../mod/ping.php:266
 #, php-format
-msgid "Registration revoked for %s"
+msgid "{0} disliked %s's post"
 msgstr ""
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
 msgstr ""
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
 msgstr ""
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
 msgstr ""
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also "
-"to inform your friends that you moved here."
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
 msgstr ""
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
 msgstr ""
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
 msgstr ""
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
 msgstr ""
 
-#: ../../boot.php:744
-msgid "Delete this item?"
+#: ../../mod/notifications.php:78
+msgid "System"
 msgstr ""
 
-#: ../../boot.php:747
-msgid "show fewer"
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
 msgstr ""
 
-#: ../../boot.php:1117
-#, php-format
-msgid "Update %s failed. See error logs."
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
 msgstr ""
 
-#: ../../boot.php:1235
-msgid "Create a New Account"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
 msgstr ""
 
-#: ../../boot.php:1260 ../../include/nav.php:73
-msgid "Logout"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
 msgstr ""
 
-#: ../../boot.php:1261 ../../include/nav.php:92
-msgid "Login"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
 msgstr ""
 
-#: ../../boot.php:1263
-msgid "Nickname or Email address: "
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
 msgstr ""
 
-#: ../../boot.php:1264
-msgid "Password: "
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
 msgstr ""
 
-#: ../../boot.php:1265
-msgid "Remember me"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
 msgstr ""
 
-#: ../../boot.php:1268
-msgid "Or login using OpenID: "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
 msgstr ""
 
-#: ../../boot.php:1274
-msgid "Forgot your password?"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
 msgstr ""
 
-#: ../../boot.php:1277
-msgid "Website Terms of Service"
+#: ../../mod/notifications.php:181
+msgid "yes"
 msgstr ""
 
-#: ../../boot.php:1278
-msgid "terms of service"
+#: ../../mod/notifications.php:181
+msgid "no"
 msgstr ""
 
-#: ../../boot.php:1280
-msgid "Website Privacy Policy"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
 msgstr ""
 
-#: ../../boot.php:1281
-msgid "privacy policy"
+#: ../../mod/notifications.php:189
+msgid "Friend"
 msgstr ""
 
-#: ../../boot.php:1414
-msgid "Requested account is not available."
+#: ../../mod/notifications.php:190
+msgid "Sharer"
 msgstr ""
 
-#: ../../boot.php:1496 ../../boot.php:1630
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
 msgstr ""
 
-#: ../../boot.php:1595
-msgid "Message"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: ../../boot.php:1601 ../../include/nav.php:173
-msgid "Profiles"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
 msgstr ""
 
-#: ../../boot.php:1601
-msgid "Manage/edit profiles"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
 msgstr ""
 
-#: ../../boot.php:1701
-msgid "Network:"
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
 msgstr ""
 
-#: ../../boot.php:1731 ../../boot.php:1817
-msgid "g A l F d"
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: ../../boot.php:1732 ../../boot.php:1818
-msgid "F d"
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: ../../boot.php:1777 ../../boot.php:1858
-msgid "[today]"
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: ../../boot.php:1789
-msgid "Birthday Reminders"
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: ../../boot.php:1790
-msgid "Birthdays this week:"
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: ../../boot.php:1851
-msgid "[No description]"
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
 msgstr ""
 
-#: ../../boot.php:1869
-msgid "Event Reminders"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
 msgstr ""
 
-#: ../../boot.php:1870
-msgid "Events this week:"
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
 msgstr ""
 
-#: ../../boot.php:2107 ../../include/nav.php:76
-msgid "Status"
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
 msgstr ""
 
-#: ../../boot.php:2110
-msgid "Status Messages and Posts"
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
 msgstr ""
 
-#: ../../boot.php:2117
-msgid "Profile Details"
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
 msgstr ""
 
-#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
-msgid "Videos"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: ../../boot.php:2141
-msgid "Events and Calendar"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
 msgstr ""
 
-#: ../../boot.php:2148
-msgid "Only You Can See This"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
 msgstr ""
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
 msgstr ""
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
 msgstr ""
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many "
+"other social networks."
 msgstr ""
 
-#: ../../object/Item.php:213
-msgid "ignored"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
 msgstr ""
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
 msgstr ""
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other "
+"public sites or invite members."
 msgstr ""
 
-#: ../../object/Item.php:329
-msgid "via"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
 msgstr ""
 
-#: ../../include/dbstructure.php:26
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database "
-"might be invalid."
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
 msgstr ""
 
-#: ../../include/dbstructure.php:31
-#, php-format
+#: ../../mod/invite.php:135
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
 msgstr ""
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
 msgstr ""
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
 msgstr ""
 
-#: ../../include/auth.php:38
-msgid "Logged out."
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
 msgstr ""
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr ""
+
+#: ../../mod/manage.php:107
 msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
 msgstr ""
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr ""
+
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr ""
+
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr ""
+
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
 msgstr ""
 
 #: ../../include/contact_widgets.php:6
@@ -5700,450 +5999,238 @@ msgstr ""
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr ""
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr ""
-
 #: ../../include/contact_widgets.php:37
 msgid "Random Profile"
 msgstr ""
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr ""
-
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr ""
-
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr ""
-
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr ""
-
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr ""
-
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-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:33
-msgid "Auto-mention Forums"
-msgstr ""
-
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr ""
-
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr ""
-
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr ""
-
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr ""
-
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr ""
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
-
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr ""
-
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
-
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr ""
-
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr ""
-
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr ""
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
-
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr ""
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
-
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr ""
-
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
-
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr ""
-
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr ""
-
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr ""
-
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr ""
-
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr ""
-
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr ""
-
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr ""
-
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr ""
-
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr ""
-
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr ""
-
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr ""
-
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr ""
-
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr ""
-
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr ""
-
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr ""
-
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr ""
-
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr ""
-
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr ""
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
-
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr ""
-
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr ""
-
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr ""
-
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
-
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
-
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr ""
-
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
-
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr ""
-
-#: ../../include/follow.php:258
-msgid "following"
-msgstr ""
-
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
 msgstr ""
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
 msgstr ""
 
-#: ../../include/group.php:226
-msgid "Everybody"
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
 msgstr ""
 
-#: ../../include/group.php:249
-msgid "edit"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
 msgstr ""
 
-#: ../../include/group.php:271
-msgid "Edit group"
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
 msgstr ""
 
-#: ../../include/group.php:272
-msgid "Create a new group"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
 msgstr ""
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1063
+#: ../../include/api.php:1065
+msgid "User not found."
 msgstr ""
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
+#: ../../include/api.php:771
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
+#: ../../include/api.php:790
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/datetime.php:276
-msgid "never"
+#: ../../include/api.php:809
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
+#: ../../include/api.php:1272
+msgid "There is no status with this id."
 msgstr ""
 
-#: ../../include/datetime.php:290
-msgid "years"
+#: ../../include/api.php:1342
+msgid "There is no conversation with this id."
 msgstr ""
 
-#: ../../include/datetime.php:291
-msgid "months"
+#: ../../include/api.php:1614
+msgid "Invalid request."
 msgstr ""
 
-#: ../../include/datetime.php:292
-msgid "week"
+#: ../../include/api.php:1625
+msgid "Invalid item."
 msgstr ""
 
-#: ../../include/datetime.php:292
-msgid "weeks"
+#: ../../include/api.php:1635
+msgid "Invalid action. "
 msgstr ""
 
-#: ../../include/datetime.php:293
-msgid "days"
+#: ../../include/api.php:1643
+msgid "DB error"
 msgstr ""
 
-#: ../../include/datetime.php:294
-msgid "hour"
+#: ../../include/network.php:895
+msgid "view full size"
 msgstr ""
 
-#: ../../include/datetime.php:294
-msgid "hours"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:154
+msgid "Starts:"
 msgstr ""
 
-#: ../../include/datetime.php:295
-msgid "minute"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:162
+msgid "Finishes:"
 msgstr ""
 
-#: ../../include/datetime.php:295
-msgid "minutes"
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
 msgstr ""
 
-#: ../../include/datetime.php:296
-msgid "second"
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
+msgid "(no subject)"
 msgstr ""
 
-#: ../../include/datetime.php:296
-msgid "seconds"
+#: ../../include/notifier.php:796 ../../include/enotify.php:33
+#: ../../include/delivery.php:467
+msgid "noreply"
 msgstr ""
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
+#: ../../include/user.php:40
+msgid "An invitation is required."
 msgstr ""
 
-#: ../../include/datetime.php:477 ../../include/items.php:2195
-#, php-format
-msgid "%s's birthday"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
 msgstr ""
 
-#: ../../include/datetime.php:478 ../../include/items.php:2196
-#, php-format
-msgid "Happy Birthday %s"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
 msgstr ""
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
 msgstr ""
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid "The error message was:"
 msgstr ""
 
-#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
 msgstr ""
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
 msgstr ""
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
+#: ../../include/user.php:90
+msgid "Name too short."
 msgstr ""
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
 msgstr ""
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
 msgstr ""
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
 msgstr ""
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
 msgstr ""
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
 msgstr ""
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
 msgstr ""
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
 msgstr ""
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: ../../include/security.php:22
-msgid "Welcome "
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: ../../include/security.php:26
-msgid "Welcome back "
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
 msgstr ""
 
-#: ../../include/security.php:366
+#: ../../include/user.php:377
+#, php-format
 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."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
 msgstr ""
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
-msgid "event"
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after "
+"logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that "
+"page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
+"and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more "
+"specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are "
+"necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
 msgstr ""
 
 #: ../../include/conversation.php:207
@@ -6151,7 +6238,7 @@ msgstr ""
 msgid "%1$s poked %2$s"
 msgstr ""
 
-#: ../../include/conversation.php:211 ../../include/text.php:1004
+#: ../../include/conversation.php:211 ../../include/text.php:1005
 msgid "poked"
 msgstr ""
 
@@ -6176,6 +6263,37 @@ msgstr ""
 msgid "Follow Thread"
 msgstr ""
 
+#: ../../include/conversation.php:876 ../../include/Contact.php:229
+msgid "View Status"
+msgstr ""
+
+#: ../../include/conversation.php:877 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr ""
+
+#: ../../include/conversation.php:878 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr ""
+
+#: ../../include/conversation.php:879 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr ""
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr ""
+
+#: ../../include/conversation.php:881 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr ""
+
+#: ../../include/conversation.php:882 ../../include/Contact.php:228
+msgid "Poke"
+msgstr ""
+
 #: ../../include/conversation.php:944
 #, php-format
 msgid "%s likes this."
@@ -6243,530 +6361,710 @@ msgstr ""
 msgid "Post to Email"
 msgstr ""
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+#: ../../include/conversation.php:1056
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
+
+#: ../../include/conversation.php:1111
+msgid "permissions"
+msgstr ""
+
+#: ../../include/conversation.php:1135
+msgid "Post to Groups"
+msgstr ""
+
+#: ../../include/conversation.php:1136
+msgid "Post to Contacts"
+msgstr ""
+
+#: ../../include/conversation.php:1137
+msgid "Private post"
+msgstr ""
+
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr ""
+
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr ""
+
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
 msgstr ""
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
 msgstr ""
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
+#: ../../include/uimport.php:153
+msgid "User creation error"
 msgstr ""
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
 msgstr ""
 
-#: ../../include/network.php:895
-msgid "view full size"
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: ../../include/text.php:296
+#: ../../include/text.php:297
 msgid "newer"
 msgstr ""
 
-#: ../../include/text.php:298
+#: ../../include/text.php:299
 msgid "older"
 msgstr ""
 
-#: ../../include/text.php:303
+#: ../../include/text.php:304
 msgid "prev"
 msgstr ""
 
-#: ../../include/text.php:305
+#: ../../include/text.php:306
 msgid "first"
 msgstr ""
 
-#: ../../include/text.php:337
+#: ../../include/text.php:338
 msgid "last"
 msgstr ""
 
-#: ../../include/text.php:340
+#: ../../include/text.php:341
 msgid "next"
 msgstr ""
 
-#: ../../include/text.php:854
+#: ../../include/text.php:855
 msgid "No contacts"
 msgstr ""
 
-#: ../../include/text.php:863
+#: ../../include/text.php:864
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] ""
 msgstr[1] ""
 
-#: ../../include/text.php:1004
+#: ../../include/text.php:1005
 msgid "poke"
 msgstr ""
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "ping"
 msgstr ""
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "pinged"
 msgstr ""
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prod"
 msgstr ""
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prodded"
 msgstr ""
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slap"
 msgstr ""
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slapped"
 msgstr ""
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "finger"
 msgstr ""
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "fingered"
 msgstr ""
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuff"
 msgstr ""
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuffed"
 msgstr ""
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1024
 msgid "happy"
 msgstr ""
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1025
 msgid "sad"
 msgstr ""
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1026
 msgid "mellow"
 msgstr ""
 
-#: ../../include/text.php:1026
+#: ../../include/text.php:1027
 msgid "tired"
 msgstr ""
 
-#: ../../include/text.php:1027
+#: ../../include/text.php:1028
 msgid "perky"
 msgstr ""
 
-#: ../../include/text.php:1028
+#: ../../include/text.php:1029
 msgid "angry"
 msgstr ""
 
-#: ../../include/text.php:1029
+#: ../../include/text.php:1030
 msgid "stupified"
 msgstr ""
 
-#: ../../include/text.php:1030
+#: ../../include/text.php:1031
 msgid "puzzled"
 msgstr ""
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1032
 msgid "interested"
 msgstr ""
 
-#: ../../include/text.php:1032
+#: ../../include/text.php:1033
 msgid "bitter"
 msgstr ""
 
-#: ../../include/text.php:1033
+#: ../../include/text.php:1034
 msgid "cheerful"
 msgstr ""
 
-#: ../../include/text.php:1034
+#: ../../include/text.php:1035
 msgid "alive"
 msgstr ""
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1036
 msgid "annoyed"
 msgstr ""
 
-#: ../../include/text.php:1036
+#: ../../include/text.php:1037
 msgid "anxious"
 msgstr ""
 
-#: ../../include/text.php:1037
+#: ../../include/text.php:1038
 msgid "cranky"
 msgstr ""
 
-#: ../../include/text.php:1038
+#: ../../include/text.php:1039
 msgid "disturbed"
 msgstr ""
 
-#: ../../include/text.php:1039
+#: ../../include/text.php:1040
 msgid "frustrated"
 msgstr ""
 
-#: ../../include/text.php:1040
+#: ../../include/text.php:1041
 msgid "motivated"
 msgstr ""
 
-#: ../../include/text.php:1041
+#: ../../include/text.php:1042
 msgid "relaxed"
 msgstr ""
 
-#: ../../include/text.php:1042
+#: ../../include/text.php:1043
 msgid "surprised"
 msgstr ""
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Monday"
 msgstr ""
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Tuesday"
 msgstr ""
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Wednesday"
 msgstr ""
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Thursday"
 msgstr ""
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Friday"
 msgstr ""
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Saturday"
 msgstr ""
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Sunday"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "January"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "February"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "March"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "April"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "May"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "June"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "July"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "August"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "September"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "October"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "November"
 msgstr ""
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "December"
 msgstr ""
 
-#: ../../include/text.php:1434
+#: ../../include/text.php:1437
 msgid "bytes"
 msgstr ""
 
-#: ../../include/text.php:1458 ../../include/text.php:1470
+#: ../../include/text.php:1461 ../../include/text.php:1473
 msgid "Click to open/close"
 msgstr ""
 
-#: ../../include/text.php:1699 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr ""
-
-#: ../../include/text.php:1711
+#: ../../include/text.php:1714
 msgid "Select an alternate language"
 msgstr ""
 
-#: ../../include/text.php:1967
+#: ../../include/text.php:1970
 msgid "activity"
 msgstr ""
 
-#: ../../include/text.php:1970
+#: ../../include/text.php:1973
 msgid "post"
 msgstr ""
 
-#: ../../include/text.php:2138
+#: ../../include/text.php:2141
 msgid "Item filed"
 msgstr ""
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
-#: ../../include/bbcode.php:1028
-msgid "Image/photo"
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
 msgstr ""
 
-#: ../../include/bbcode.php:528
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr ""
+
+#: ../../include/enotify.php:23
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgid "%s Administrator"
 msgstr ""
 
-#: ../../include/bbcode.php:562
+#: ../../include/enotify.php:64
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
-"\"%s\" target=\"_blank\">post</a>"
+msgid "%s <!item_type!>"
 msgstr ""
 
-#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
-msgid "$1 wrote:"
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
-msgid "Encrypted content"
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:31
-msgid "noreply"
+#: ../../include/enotify.php:71
+msgid "a private message"
 msgstr ""
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../include/enotify.php:72
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
+msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
+#: ../../include/enotify.php:149
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
+#: ../../include/enotify.php:150
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
+#: ../../include/enotify.php:153 ../../include/enotify.php:168
+#: ../../include/enotify.php:181 ../../include/enotify.php:194
+#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
+#: ../../include/enotify.php:162
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
+#: ../../include/enotify.php:164
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
+#: ../../include/enotify.php:175
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr ""
+
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr ""
+
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr ""
+
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr ""
+
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:204
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr ""
+
+#: ../../include/enotify.php:219
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr ""
+
+#: ../../include/enotify.php:220
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:221
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr ""
+
+#: ../../include/enotify.php:233
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr ""
+
+#: ../../include/enotify.php:239
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr ""
+
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr ""
+
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr ""
+
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr ""
+
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr ""
+
+#: ../../include/enotify.php:271
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:272
+#, php-format
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
+
+#: ../../include/enotify.php:277
+msgid "Name:"
 msgstr ""
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
+#: ../../include/enotify.php:278
+msgid "Photo:"
 msgstr ""
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
+#: ../../include/enotify.php:281
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
 msgstr ""
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email\n"
+"\twithout restriction."
 msgstr ""
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
+#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
+#: ../../include/enotify.php:307
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
 msgstr ""
 
-#: ../../include/Scrape.php:593
-msgid " on Last.fm"
+#: ../../include/enotify.php:309
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
 msgstr ""
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
+#: ../../include/enotify.php:327
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
+#: ../../include/Scrape.php:614
+msgid " on Last.fm"
 msgstr ""
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
 msgstr ""
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
 msgstr ""
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
+#: ../../include/group.php:226
+msgid "Everybody"
 msgstr ""
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
+#: ../../include/group.php:249
+msgid "edit"
 msgstr ""
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
+#: ../../include/group.php:271
+msgid "Edit group"
 msgstr ""
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
+#: ../../include/group.php:272
+msgid "Create a new group"
 msgstr ""
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
 msgstr ""
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
 msgstr ""
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
 msgstr ""
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: ../../include/nav.php:73
-msgid "End this session"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: ../../include/nav.php:76 ../../include/nav.php:146
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
+#: ../../include/follow.php:258
+msgid "following"
 msgstr ""
 
-#: ../../include/nav.php:79
-msgid "Your videos"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
 msgstr ""
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
+#: ../../include/nav.php:73
+msgid "End this session"
 msgstr ""
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
+#: ../../include/nav.php:79
+msgid "Your videos"
 msgstr ""
 
 #: ../../include/nav.php:81
@@ -6889,924 +7187,728 @@ msgstr ""
 msgid "Site map"
 msgstr ""
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1062
-#: ../../include/api.php:1064
-msgid "User not found."
-msgstr ""
-
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:1271
-msgid "There is no status with this id."
-msgstr ""
-
-#: ../../include/api.php:1341
-msgid "There is no conversation with this id."
-msgstr ""
-
-#: ../../include/api.php:1613
-msgid "Invalid request."
-msgstr ""
-
-#: ../../include/api.php:1624
-msgid "Invalid item."
-msgstr ""
-
-#: ../../include/api.php:1634
-msgid "Invalid action. "
-msgstr ""
-
-#: ../../include/api.php:1642
-msgid "DB error"
-msgstr ""
-
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr ""
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr ""
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr ""
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr ""
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr ""
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr ""
-
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr ""
-
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr ""
-
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr ""
-
-#: ../../include/user.php:126
-msgid "Cannot use that email."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
 msgstr ""
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
 msgstr ""
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
 msgstr ""
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
 msgstr ""
-
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
+
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
 msgstr ""
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
 msgstr ""
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
 msgstr ""
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
 msgstr ""
 
-#: ../../include/user.php:381
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after "
-"logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that "
-"page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - "
-"and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more "
-"specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are "
-"necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
 msgstr ""
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
 msgstr ""
 
-#: ../../include/diaspora.php:2332
-msgid "Attachments:"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
 msgstr ""
 
-#: ../../include/items.php:4526
-msgid "Do you really want to delete this item?"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
 msgstr ""
 
-#: ../../include/items.php:4749
-msgid "Archives"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
+#: ../../include/bbcode.php:1048
+msgid "Image/photo"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
+#: ../../include/bbcode.php:528
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
+#: ../../include/bbcode.php:562
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href="
+"\"%s\" target=\"_blank\">post</a>"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
+#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
+msgid "$1 wrote:"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
+#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
+msgid "Encrypted content"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
 msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
 msgstr ""
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
+#: ../../include/datetime.php:276
+msgid "never"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
+#: ../../include/datetime.php:290
+msgid "years"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
+#: ../../include/datetime.php:291
+msgid "months"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
+#: ../../include/datetime.php:292
+msgid "week"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
+#: ../../include/datetime.php:292
+msgid "weeks"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
+#: ../../include/datetime.php:293
+msgid "days"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
+#: ../../include/datetime.php:294
+msgid "hour"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
+#: ../../include/datetime.php:294
+msgid "hours"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../include/datetime.php:295
+msgid "minute"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
+#: ../../include/datetime.php:295
+msgid "minutes"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
+#: ../../include/datetime.php:296
+msgid "second"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
+#: ../../include/datetime.php:296
+msgid "seconds"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
+#: ../../include/datetime.php:477 ../../include/items.php:2204
+#, php-format
+msgid "%s's birthday"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
+#: ../../include/datetime.php:478 ../../include/items.php:2205
+#, php-format
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
+#: ../../include/features.php:23
+msgid "General Features"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
+#: ../../include/features.php:32
+msgid "Post Preview"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
 msgstr ""
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
 msgstr ""
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
+#: ../../include/features.php:39
+msgid "Search by Date"
 msgstr ""
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
 msgstr ""
 
-#: ../../include/enotify.php:61
-#, php-format
-msgid "%s <!item_type!>"
+#: ../../include/features.php:40
+msgid "Group Filter"
 msgstr ""
 
-#: ../../include/enotify.php:65
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
 msgstr ""
 
-#: ../../include/enotify.php:67
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: ../../include/features.php:41
+msgid "Network Filter"
 msgstr ""
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "%1$s sent you %2$s."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
 msgstr ""
 
-#: ../../include/enotify.php:68
-msgid "a private message"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: ../../include/enotify.php:69
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: ../../include/features.php:47
+msgid "Network Tabs"
 msgstr ""
 
-#: ../../include/enotify.php:121
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
 msgstr ""
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
 msgstr ""
 
-#: ../../include/enotify.php:136
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: ../../include/features.php:49
+msgid "Network New Tab"
 msgstr ""
 
-#: ../../include/enotify.php:146
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: ../../include/enotify.php:147
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: ../../include/enotify.php:150 ../../include/enotify.php:165
-#: ../../include/enotify.php:178 ../../include/enotify.php:191
-#: ../../include/enotify.php:209 ../../include/enotify.php:222
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
 msgstr ""
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
 msgstr ""
 
-#: ../../include/enotify.php:159
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
 msgstr ""
 
-#: ../../include/enotify.php:161
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
 msgstr ""
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
 msgstr ""
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged you at %2$s"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
 msgstr ""
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+#: ../../include/features.php:58
+msgid "Tagging"
 msgstr ""
 
-#: ../../include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
 msgstr ""
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "%1$s shared a new post at %2$s"
+#: ../../include/features.php:59
+msgid "Post Categories"
 msgstr ""
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
 msgstr ""
 
-#: ../../include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
 msgstr ""
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: ../../include/enotify.php:216
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
+#: ../../include/features.php:62
+msgid "Star Posts"
 msgstr ""
 
-#: ../../include/enotify.php:217
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
 msgstr ""
 
-#: ../../include/enotify.php:218
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: ../../include/enotify.php:229
-msgid "[Friendica:Notify] Introduction received"
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: ../../include/enotify.php:230
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: ../../include/enotify.php:231
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: ../../include/diaspora.php:2520
+msgid "Attachments:"
 msgstr ""
 
-#: ../../include/enotify.php:234 ../../include/enotify.php:276
+#: ../../include/dbstructure.php:26
 #, php-format
-msgid "You may visit their profile at %s"
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database "
+"might be invalid."
 msgstr ""
 
-#: ../../include/enotify.php:236
+#: ../../include/dbstructure.php:31
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr ""
-
-#: ../../include/enotify.php:244
-msgid "[Friendica:Notify] A new person is sharing with you"
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: ../../include/enotify.php:245 ../../include/enotify.php:246
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: ../../include/enotify.php:252
-msgid "[Friendica:Notify] You have a new follower"
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
 msgstr ""
 
-#: ../../include/enotify.php:253 ../../include/enotify.php:254
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
 msgstr ""
 
-#: ../../include/enotify.php:267
-msgid "[Friendica:Notify] Friend suggestion received"
+#: ../../include/items.php:4539
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: ../../include/enotify.php:268
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
+#: ../../include/items.php:4762
+msgid "Archives"
 msgstr ""
 
-#: ../../include/enotify.php:269
-#, php-format
-msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: ../../include/oembed.php:212
+msgid "Embedded content"
 msgstr ""
 
-#: ../../include/enotify.php:274
-msgid "Name:"
+#: ../../include/oembed.php:221
+msgid "Embedding disabled"
 msgstr ""
 
-#: ../../include/enotify.php:275
-msgid "Photo:"
+#: ../../include/security.php:22
+msgid "Welcome "
 msgstr ""
 
-#: ../../include/enotify.php:278
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
 msgstr ""
 
-#: ../../include/enotify.php:286 ../../include/enotify.php:299
-msgid "[Friendica:Notify] Connection accepted"
+#: ../../include/security.php:26
+msgid "Welcome back "
 msgstr ""
 
-#: ../../include/enotify.php:287 ../../include/enotify.php:300
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
 msgstr ""
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:301
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+#: ../../include/profile_selectors.php:6
+msgid "Male"
 msgstr ""
 
-#: ../../include/enotify.php:291
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email\n"
-"\twithout restriction."
+#: ../../include/profile_selectors.php:6
+msgid "Female"
 msgstr ""
 
-#: ../../include/enotify.php:294 ../../include/enotify.php:308
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
 msgstr ""
 
-#: ../../include/enotify.php:304
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
 msgstr ""
 
-#: ../../include/enotify.php:306
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
 msgstr ""
 
-#: ../../include/enotify.php:319
-msgid "[Friendica System:Notify] registration request"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
 msgstr ""
 
-#: ../../include/enotify.php:320
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
 msgstr ""
 
-#: ../../include/enotify.php:321
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
 msgstr ""
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
 msgstr ""
 
-#: ../../include/enotify.php:327
-#, php-format
-msgid "Please visit %s to approve or reject the request."
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
 msgstr ""
 
-#: ../../include/oembed.php:210
-msgid "Embedded content"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
 msgstr ""
 
-#: ../../include/oembed.php:219
-msgid "Embedding disabled"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
 msgstr ""
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
 msgstr ""
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
 msgstr ""
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
 msgstr ""
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
 msgstr ""
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
 msgstr ""
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
 msgstr ""
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
 msgstr ""
 
-#: ../../index.php:428
-msgid "toggle mobile"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
 msgstr ""
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
 msgstr ""
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
 msgstr ""
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
 msgstr ""
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
+#: ../../include/Contact.php:115
+msgid "stopped following"
 msgstr ""
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
 msgstr ""
index 9988f36256ecc61eac5b31bef889bc55278dcdc8..b964d224318d8029a8dda11980be870d1785e797 100644 (file)
@@ -63,6 +63,13 @@ SQL="${Q1}${Q2}"
 $MYSQL -uroot -proot -e "$SQL"
 service mysql restart
 
+#configure rudimentary mail server (local delivery only)
+#add Friendica accounts for local user accounts, use email address like vagrant@friendica.dev, read the email with 'mail'.
+debconf-set-selections <<< "postfix postfix/mailname string friendica.dev"
+debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'"
+sudo apt-get install -y postfix mailutils libmailutils-dev
+sudo echo -e "friendica1:      vagrant\nfriendica2:    vagrant\nfriendica3:    vagrant\nfriendica4:    vagrant\nfriendica5:    vagrant" >> /etc/aliases && sudo newaliases
+
 #make the vagrant directory the docroot
 sudo rm -rf /var/www/
 sudo ln -fs /vagrant /var/www
index 2c14e3a70f60ab6897a76f3ad2400bb6a6d26d6f..ba1cb061f4f69ecf46a57c092e206161ffb7b61f 100644 (file)
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-01-22 17:30+0100\n"
-"PO-Revision-Date: 2015-01-24 23:18+0000\n"
-"Last-Translator: Michal Šupler <msupler@gmail.com>\n"
+"POT-Creation-Date: 2015-02-04 11:35+0100\n"
+"PO-Revision-Date: 2015-02-05 09:47+0000\n"
+"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
 "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,986 +19,1090 @@ msgstr ""
 "Language: cs\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../../mod/contacts.php:107
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d kontakt upraven."
-msgstr[1] "%d kontakty upraveny"
-msgstr[2] "%d kontaktů upraveno"
-
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
-msgid "Could not access contact record."
-msgstr "Nelze získat přístup k záznamu kontaktu."
-
-#: ../../mod/contacts.php:152
-msgid "Could not locate selected profile."
-msgstr "Nelze nalézt vybraný profil."
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Tento záznam byl editován"
 
-#: ../../mod/contacts.php:185
-msgid "Contact updated."
-msgstr "Kontakt aktualizován."
+#: ../../object/Item.php:116 ../../mod/content.php:620
+#: ../../mod/photos.php:1359
+msgid "Private Message"
+msgstr "Soukromá zpráva"
 
-#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Nepodařilo se aktualizovat kontakt."
+#: ../../object/Item.php:120 ../../mod/content.php:728
+#: ../../mod/settings.php:676
+msgid "Edit"
+msgstr "Upravit"
 
-#: ../../mod/contacts.php:253 ../../mod/manage.php:96
-#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
-#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
-msgid "Permission denied."
-msgstr "Přístup odmítnut."
+#: ../../object/Item.php:129 ../../mod/content.php:437
+#: ../../mod/content.php:740 ../../mod/photos.php:1653
+#: ../../include/conversation.php:613
+msgid "Select"
+msgstr "Vybrat"
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been blocked"
-msgstr "Kontakt byl zablokován"
+#: ../../object/Item.php:130 ../../mod/admin.php:985 ../../mod/content.php:438
+#: ../../mod/content.php:741 ../../mod/contacts.php:717
+#: ../../mod/settings.php:677 ../../mod/group.php:171
+#: ../../mod/photos.php:1654 ../../include/conversation.php:614
+msgid "Delete"
+msgstr "Odstranit"
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been unblocked"
-msgstr "Kontakt byl odblokován"
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "uložit do složky"
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been ignored"
-msgstr "Kontakt bude ignorován"
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
+msgstr "přidat hvězdu"
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been unignored"
-msgstr "Kontakt přestal být ignorován"
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
+msgstr "odebrat hvězdu"
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been archived"
-msgstr "Kontakt byl archivován"
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "přepnout hvězdu"
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been unarchived"
-msgstr "Kontakt byl vrácen z archívu."
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
+msgstr "označeno hvězdou"
 
-#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
-msgid "Do you really want to delete this contact?"
-msgstr "Opravdu chcete smazat tento kontakt?"
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "ignorovat vlákno"
 
-#: ../../mod/contacts.php:336 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
-#: ../../include/items.php:4528
-msgid "Yes"
-msgstr "Ano"
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "přestat ignorovat vlákno"
 
-#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4531
-msgid "Cancel"
-msgstr "Zrušit"
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "přepnout stav Ignorování"
 
-#: ../../mod/contacts.php:351
-msgid "Contact has been removed."
-msgstr "Kontakt byl odstraněn."
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "ignorován"
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jste vzájemní přátelé s uživatelem %s"
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
+msgstr "přidat štítek"
 
-#: ../../mod/contacts.php:393
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Sdílíte s uživatelem %s"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../mod/photos.php:1542
+msgid "I like this (toggle)"
+msgstr "Líbí se mi to (přepínač)"
 
-#: ../../mod/contacts.php:398
-#, php-format
-msgid "%s is sharing with you"
-msgstr "uživatel %s sdílí s vámi"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+msgid "like"
+msgstr "má rád"
 
-#: ../../mod/contacts.php:415
-msgid "Private communications are not available for this contact."
-msgstr "Soukromá komunikace není dostupná pro tento kontakt."
+#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../mod/photos.php:1543
+msgid "I don't like this (toggle)"
+msgstr "Nelíbí se mi to (přepínač)"
 
-#: ../../mod/contacts.php:418 ../../mod/admin.php:546
-msgid "Never"
-msgstr "Nikdy"
+#: ../../object/Item.php:232 ../../mod/content.php:685
+msgid "dislike"
+msgstr "nemá rád"
 
-#: ../../mod/contacts.php:422
-msgid "(Update was successful)"
-msgstr "(Aktualizace byla úspěšná)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "Share this"
+msgstr "Sdílet toto"
 
-#: ../../mod/contacts.php:422
-msgid "(Update was not successful)"
-msgstr "(Aktualizace nebyla úspěšná)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "share"
+msgstr "sdílí"
 
-#: ../../mod/contacts.php:424
-msgid "Suggest friends"
-msgstr "Navrhněte přátelé"
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
+msgstr "Kategorie:"
 
-#: ../../mod/contacts.php:428
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sítě: %s"
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
+msgstr "Vyplněn pod:"
 
-#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#: ../../object/Item.php:326 ../../object/Item.php:327
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../include/conversation.php:654
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d sdílený kontakt"
-msgstr[1] "%d sdílených kontaktů"
-msgstr[2] "%d sdílených kontaktů"
-
-#: ../../mod/contacts.php:436
-msgid "View all contacts"
-msgstr "Zobrazit všechny kontakty"
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:981
-msgid "Unblock"
-msgstr "Odblokovat"
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:980
-msgid "Block"
-msgstr "Blokovat"
+msgid "View %s's profile @ %s"
+msgstr "Zobrazit profil uživatele %s na %s"
 
-#: ../../mod/contacts.php:444
-msgid "Toggle Blocked status"
-msgstr "Přepnout stav Blokováno"
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
+msgstr "pro"
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714
-msgid "Unignore"
-msgstr "Přestat ignorovat"
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "přes"
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorovat"
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Zeď-na-Zeď"
 
-#: ../../mod/contacts.php:450
-msgid "Toggle Ignored status"
-msgstr "Přepnout stav Ignorováno"
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "přes Zeď-na-Zeď "
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Unarchive"
-msgstr "Vrátit z archívu"
+#: ../../object/Item.php:340 ../../mod/content.php:481
+#: ../../mod/content.php:864 ../../include/conversation.php:674
+#, php-format
+msgid "%s from %s"
+msgstr "%s od %s"
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Archive"
-msgstr "Archivovat"
+#: ../../object/Item.php:361 ../../object/Item.php:677 ../../boot.php:745
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696
+msgid "Comment"
+msgstr "Okomentovat"
 
-#: ../../mod/contacts.php:457
-msgid "Toggle Archive status"
-msgstr "Přepnout stav Archivováno"
+#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../mod/editpost.php:124 ../../mod/content.php:499
+#: ../../mod/content.php:883 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/photos.php:1545
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
+msgstr "Čekejte prosím"
 
-#: ../../mod/contacts.php:460
-msgid "Repair"
-msgstr "Opravit"
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d komentář"
+msgstr[1] "%d komentářů"
+msgstr[2] "%d komentářů"
 
-#: ../../mod/contacts.php:463
-msgid "Advanced Contact Settings"
-msgstr "Pokročilé nastavení kontaktu"
+#: ../../object/Item.php:389 ../../object/Item.php:402
+#: ../../mod/content.php:605 ../../include/text.php:1972
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] "komentář"
 
-#: ../../mod/contacts.php:469
-msgid "Communications lost with this contact!"
-msgstr "Komunikace s tímto kontaktem byla ztracena!"
+#: ../../object/Item.php:390 ../../boot.php:746 ../../mod/content.php:606
+#: ../../include/contact_widgets.php:205
+msgid "show more"
+msgstr "zobrazit více"
 
-#: ../../mod/contacts.php:472
-msgid "Contact Editor"
-msgstr "Editor kontaktu"
+#: ../../object/Item.php:675 ../../mod/content.php:707
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694
+msgid "This is you"
+msgstr "Nastavte Vaši polohu"
 
-#: ../../mod/contacts.php:474 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../object/Item.php:678 ../../view/theme/perihel/config.php:95
+#: ../../view/theme/diabook/theme.php:633
 #: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/quattro/config.php:64
+#: ../../view/theme/zero-childs/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/clean/config.php:82
 #: ../../view/theme/duepuntozero/config.php:59
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:53
+#: ../../view/theme/vier-mobil/config.php:47 ../../mod/mood.php:137
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/crepair.php:186 ../../mod/content.php:710
+#: ../../mod/contacts.php:475 ../../mod/profiles.php:671
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../mod/localtime.php:45 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
+#: ../../mod/manage.php:110
 msgid "Submit"
 msgstr "Odeslat"
 
-#: ../../mod/contacts.php:475
-msgid "Profile Visibility"
-msgstr "Viditelnost profilu"
+#: ../../object/Item.php:679 ../../mod/content.php:711
+msgid "Bold"
+msgstr "Tučné"
 
-#: ../../mod/contacts.php:476
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
+#: ../../object/Item.php:680 ../../mod/content.php:712
+msgid "Italic"
+msgstr "Kurzíva"
 
-#: ../../mod/contacts.php:477
-msgid "Contact Information / Notes"
-msgstr "Kontaktní informace / poznámky"
+#: ../../object/Item.php:681 ../../mod/content.php:713
+msgid "Underline"
+msgstr "Podrtžené"
 
-#: ../../mod/contacts.php:478
-msgid "Edit contact notes"
-msgstr "Editovat poznámky kontaktu"
+#: ../../object/Item.php:682 ../../mod/content.php:714
+msgid "Quote"
+msgstr "Citovat"
 
-#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Navštivte profil uživatele %s [%s]"
+#: ../../object/Item.php:683 ../../mod/content.php:715
+msgid "Code"
+msgstr "Kód"
 
-#: ../../mod/contacts.php:484
-msgid "Block/Unblock contact"
-msgstr "Blokovat / Odblokovat kontakt"
+#: ../../object/Item.php:684 ../../mod/content.php:716
+msgid "Image"
+msgstr "Obrázek"
 
-#: ../../mod/contacts.php:485
-msgid "Ignore contact"
-msgstr "Ignorovat kontakt"
+#: ../../object/Item.php:685 ../../mod/content.php:717
+msgid "Link"
+msgstr "Odkaz"
 
-#: ../../mod/contacts.php:486
-msgid "Repair URL settings"
-msgstr "Opravit nastavení adresy URL "
+#: ../../object/Item.php:686 ../../mod/content.php:718
+msgid "Video"
+msgstr "Video"
 
-#: ../../mod/contacts.php:487
-msgid "View conversations"
-msgstr "Zobrazit konverzace"
+#: ../../object/Item.php:687 ../../mod/editpost.php:145
+#: ../../mod/content.php:719 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../include/conversation.php:1126
+msgid "Preview"
+msgstr "Náhled"
 
-#: ../../mod/contacts.php:489
-msgid "Delete contact"
-msgstr "Odstranit kontakt"
+#: ../../index.php:212 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Musíte být přihlášeni pro použití rozšíření."
 
-#: ../../mod/contacts.php:493
-msgid "Last update:"
-msgstr "Poslední aktualizace:"
+#: ../../index.php:256 ../../mod/help.php:90
+msgid "Not Found"
+msgstr "Nenalezen"
 
-#: ../../mod/contacts.php:495
-msgid "Update public posts"
-msgstr "Aktualizovat veřejné příspěvky"
-
-#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
-msgid "Update now"
-msgstr "Aktualizovat"
+#: ../../index.php:259 ../../mod/help.php:93
+msgid "Page not found."
+msgstr "Stránka nenalezena"
 
-#: ../../mod/contacts.php:504
-msgid "Currently blocked"
-msgstr "V současnosti zablokováno"
+#: ../../index.php:368 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Nedostatečné oprávnění"
 
-#: ../../mod/contacts.php:505
-msgid "Currently ignored"
-msgstr "V současnosti ignorováno"
+#: ../../index.php:369 ../../mod/mood.php:114 ../../mod/display.php:499
+#: ../../mod/register.php:42 ../../mod/dfrn_confirm.php:55
+#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:58
+#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10
+#: ../../mod/attach.php:33 ../../mod/regmod.php:110 ../../mod/crepair.php:119
+#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:254
+#: ../../mod/settings.php:102 ../../mod/settings.php:596
+#: ../../mod/settings.php:601 ../../mod/profiles.php:165
+#: ../../mod/profiles.php:603 ../../mod/group.php:19 ../../mod/follow.php:9
+#: ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/viewcontacts.php:24 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/wall_attach.php:55
+#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/events.php:140 ../../mod/delegate.php:12 ../../mod/nogroup.php:25
+#: ../../mod/fsuggest.php:78 ../../mod/item.php:168 ../../mod/item.php:184
+#: ../../mod/notifications.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
+#: ../../include/items.php:4696
+msgid "Permission denied."
+msgstr "Přístup odmítnut."
 
-#: ../../mod/contacts.php:506
-msgid "Currently archived"
-msgstr "Aktuálně archivován"
+#: ../../index.php:428
+msgid "toggle mobile"
+msgstr "přepnout mobil"
 
-#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Skrýt tento kontakt před ostatními"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
+#: ../../include/nav.php:105 ../../include/nav.php:146
+msgid "Home"
+msgstr "Domů"
 
-#: ../../mod/contacts.php:507
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:146
+msgid "Your posts and conversations"
+msgstr "Vaše příspěvky a konverzace"
 
-#: ../../mod/contacts.php:508
-msgid "Notification for new posts"
-msgstr "Upozornění na nové příspěvky"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2114
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../include/nav.php:77 ../../include/profile_advanced.php:7
+#: ../../include/profile_advanced.php:87
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:508
-msgid "Send a notification of every new post of this contact"
-msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Vaše profilová stránka"
 
-#: ../../mod/contacts.php:509
-msgid "Fetch further information for feeds"
-msgstr "Načíst další informace pro kanál"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2121
+#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Fotografie"
 
-#: ../../mod/contacts.php:510
-msgid "Disabled"
-msgstr "Zakázáno"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Vaše fotky"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information"
-msgstr "Načíst informace"
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2138
+#: ../../mod/events.php:370 ../../include/nav.php:80
+msgid "Events"
+msgstr "Události"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information and keywords"
-msgstr "Načíst informace a klíčová slova"
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Vaše události"
 
-#: ../../mod/contacts.php:512
-msgid "Blacklisted keywords"
-msgstr "Zakázaná klíčová slova"
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Osobní poznámky"
 
-#: ../../mod/contacts.php:512
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Vaše osobní fotky"
 
-#: ../../mod/contacts.php:563
-msgid "Suggestions"
-msgstr "Doporučení"
+#: ../../view/theme/perihel/theme.php:38
+#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
+#: ../../include/nav.php:129
+msgid "Community"
+msgstr "Komunita"
 
-#: ../../mod/contacts.php:566
-msgid "Suggest potential friends"
-msgstr "Navrhnout potenciální přátele"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "nikdy nezobrazit"
 
-#: ../../mod/contacts.php:569 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Všechny kontakty"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "zobrazit"
 
-#: ../../mod/contacts.php:572
-msgid "Show all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: ../../view/theme/perihel/config.php:97
+#: ../../view/theme/diabook/config.php:150
+#: ../../view/theme/quattro/config.php:66
+#: ../../view/theme/zero-childs/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/clean/config.php:84
+#: ../../view/theme/duepuntozero/config.php:61
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:55
+#: ../../view/theme/vier-mobil/config.php:49
+msgid "Theme settings"
+msgstr "Nastavení téma"
 
-#: ../../mod/contacts.php:575
-msgid "Unblocked"
-msgstr "Odblokován"
+#: ../../view/theme/perihel/config.php:98
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/zero-childs/cleanzero/config.php:84
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
+msgstr "Nastav velikost písma pro přízpěvky a komentáře."
 
-#: ../../mod/contacts.php:578
-msgid "Only show unblocked contacts"
-msgstr "Zobrazit pouze neblokované kontakty"
+#: ../../view/theme/perihel/config.php:99
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Nastav výšku řádku  pro přízpěvky a komentáře."
 
-#: ../../mod/contacts.php:582
-msgid "Blocked"
-msgstr "Blokován"
+#: ../../view/theme/perihel/config.php:100
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Nastav rozlišení pro prostřední sloupec"
 
-#: ../../mod/contacts.php:585
-msgid "Only show blocked contacts"
-msgstr "Zobrazit pouze blokované kontakty"
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:702
+#: ../../include/nav.php:175
+msgid "Contacts"
+msgstr "Kontakty"
 
-#: ../../mod/contacts.php:589
-msgid "Ignored"
-msgstr "Ignorován"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vaše kontakty"
 
-#: ../../mod/contacts.php:592
-msgid "Only show ignored contacts"
-msgstr "Zobrazit pouze ignorované kontakty"
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+#: ../../view/theme/diabook/config.php:158
+msgid "Community Pages"
+msgstr "Komunitní stránky"
 
-#: ../../mod/contacts.php:596
-msgid "Archived"
-msgstr "Archivován"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Komunitní profily"
 
-#: ../../mod/contacts.php:599
-msgid "Only show archived contacts"
-msgstr "Zobrazit pouze archivované kontakty"
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Poslední uživatelé"
 
-#: ../../mod/contacts.php:603
-msgid "Hidden"
-msgstr "Skrytý"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Poslední líbí/nelíbí"
 
-#: ../../mod/contacts.php:606
-msgid "Only show hidden contacts"
-msgstr "Zobrazit pouze skryté kontakty"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../include/text.php:1966
+msgid "event"
+msgstr "událost"
 
-#: ../../mod/contacts.php:654
-msgid "Mutual Friendship"
-msgstr "Vzájemné přátelství"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+#: ../../include/diaspora.php:2087
+msgid "status"
+msgstr "Stav"
 
-#: ../../mod/contacts.php:658
-msgid "is a fan of yours"
-msgstr "je Váš fanoušek"
+#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/subthread.php:87
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1968 ../../include/diaspora.php:2087
+msgid "photo"
+msgstr "fotografie"
 
-#: ../../mod/contacts.php:662
-msgid "you are a fan of"
-msgstr "jste fanouškem"
+#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:166
+#: ../../include/conversation.php:137 ../../include/diaspora.php:2103
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s má rád %2$s' na %3$s"
 
-#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editovat kontakt"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Poslední fotografie"
 
-#: ../../mod/contacts.php:701 ../../include/nav.php:175
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Kontakty"
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+msgid "Contact Photos"
+msgstr "Fotogalerie kontaktu"
 
-#: ../../mod/contacts.php:705
-msgid "Search your contacts"
-msgstr "Prohledat Vaše kontakty"
+#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
+#: ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+msgid "Profile Photos"
+msgstr "Profilové fotografie"
 
-#: ../../mod/contacts.php:706 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Zjištění: "
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Nalézt Přátele"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Najít"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokální Adresář"
 
-#: ../../mod/contacts.php:712 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Aktualizace"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Globální adresář"
 
-#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Odstranit"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Podobné zájmy"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Žádný profil"
+#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:68
+#: ../../include/contact_widgets.php:35
+msgid "Friend Suggestions"
+msgstr "Návrhy přátel"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Správa identit a / nebo stránek"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Pozvat přátele"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
+#: ../../mod/admin.php:1082 ../../mod/admin.php:1303 ../../mod/settings.php:85
+#: ../../include/nav.php:170
+msgid "Settings"
+msgstr "Nastavení"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Vyberte identitu pro správu: "
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Příspěvek úspěšně odeslán"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Nastavit faktor přiblížení pro Earth Layers"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Nedostatečné oprávnění"
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Neplatný identifikátor profilu."
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor viditelnosti profilu "
-
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profil"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Pomoc nebo @ProNováčky ?"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Klikněte na kontakt pro přidání nebo odebrání"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Propojené služby"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Viditelný pro"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Nastavení barevného schematu"
 
-#: ../../mod/display.php:70 ../../mod/display.php:260
-#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
-#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
-#: ../../include/items.php:4487
-msgid "Item not found."
-msgstr "Položka nenalezena."
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Nastavit přiblížení pro Earth Layer"
 
-#: ../../mod/display.php:200 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Veřejný přístup odepřen."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Zarovnání"
 
-#: ../../mod/display.php:308 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Přístup na tento profil byl omezen."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Vlevo"
 
-#: ../../mod/display.php:472
-msgid "Item has been removed."
-msgstr "Položka byla odstraněna."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Uprostřed"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Vítejte na Friendica"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/zero-childs/cleanzero/config.php:86
+#: ../../view/theme/clean/config.php:87
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Barevné schéma"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Seznam doporučení pro nového člena"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Velikost písma u příspěvků"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Velikost písma textů"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Začínáme"
+#: ../../view/theme/zero-childs/cleanzero/config.php:83
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Prohlídka Friendica "
+#: ../../view/theme/zero-childs/cleanzero/config.php:85
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Nastavení šířku grafické šablony"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Nastavit barevné schéma"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
-#: ../../mod/admin.php:1297 ../../mod/settings.php:85
-#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Nastavení"
+#: ../../view/theme/clean/config.php:56
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/user.php:247
+#: ../../include/text.php:1702
+msgid "default"
+msgstr "standardní"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Navštivte své nastavení"
+#: ../../view/theme/clean/config.php:57
+msgid "Midnight"
+msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."
+#: ../../view/theme/clean/config.php:58
+msgid "Bootstrap"
+msgstr ""
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."
+#: ../../view/theme/clean/config.php:59
+msgid "Shades of Pink"
+msgstr ""
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:665
-msgid "Upload Profile Photo"
-msgstr "Nahrát profilovou fotografii"
+#: ../../view/theme/clean/config.php:60
+msgid "Lime and Orange"
+msgstr ""
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
+#: ../../view/theme/clean/config.php:61
+msgid "GeoCities Retro"
+msgstr ""
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editujte Váš profil"
+#: ../../view/theme/clean/config.php:85
+msgid "Background Image"
+msgstr ""
 
-#: ../../mod/newmember.php:38
+#: ../../view/theme/clean/config.php:85
 msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky."
+"The URL to a picture (e.g. from your photo album) that should be used as "
+"background image."
+msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profilová klíčová slova"
+#: ../../view/theme/clean/config.php:86
+msgid "Background Color"
+msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
+#: ../../view/theme/clean/config.php:86
+msgid "HEX value for the background color. Don't include the #"
+msgstr ""
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Probíhá pokus o připojení"
+#: ../../view/theme/clean/config.php:88
+msgid "font size"
+msgstr ""
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../view/theme/clean/config.php:88
+msgid "base font size for your interface"
+msgstr ""
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr ""
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importování emaiů"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Navštivte Vaši stránku s kontakty"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Navštivte lokální adresář Friendica"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
+#: ../../view/theme/vier/config.php:56
+#: ../../view/theme/vier-mobil/config.php:50
+msgid "Set style"
+msgstr "Nastavit styl"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Nalezení nových lidí"
+#: ../../boot.php:744
+msgid "Delete this item?"
+msgstr "Odstranit tuto položku?"
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
+#: ../../boot.php:747
+msgid "show fewer"
+msgstr "zobrazit méně"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Skupiny"
+#: ../../boot.php:1117
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Seskupte si své kontakty"
+#: ../../boot.php:1235
+msgid "Create a New Account"
+msgstr "Vytvořit nový účet"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
+#: ../../boot.php:1236 ../../mod/register.php:269 ../../include/nav.php:109
+msgid "Register"
+msgstr "Registrovat"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Proč nejsou mé příspěvky veřejné?"
+#: ../../boot.php:1260 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Odhlásit se"
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
+#: ../../boot.php:1261 ../../mod/bookmarklet.php:12 ../../include/nav.php:92
+msgid "Login"
+msgstr "Přihlásit se"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Získání nápovědy"
+#: ../../boot.php:1263
+msgid "Nickname or Email address: "
+msgstr "Přezdívka nebo e-mailová adresa:"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Navštivte sekci nápovědy"
+#: ../../boot.php:1264
+msgid "Password: "
+msgstr "Heslo: "
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
+#: ../../boot.php:1265
+msgid "Remember me"
+msgstr "Pamatuj si mne"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
+#: ../../boot.php:1268
+msgid "Or login using OpenID: "
+msgstr "Nebo přihlášení pomocí OpenID: "
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
+#: ../../boot.php:1274
+msgid "Forgot your password?"
+msgstr "Zapomněli jste své heslo?"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Přihlášení se nezdařilo."
+#: ../../boot.php:1275 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Obnovení hesla"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
+#: ../../boot.php:1277
+msgid "Website Terms of Service"
+msgstr "Podmínky použití serveru"
 
-#: ../../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
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Profilové fotografie"
+#: ../../boot.php:1278
+msgid "terms of service"
+msgstr "podmínky použití"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Nepodařilo se snížit velikost obrázku [%s]."
+#: ../../boot.php:1280
+msgid "Website Privacy Policy"
+msgstr "Pravidla ochrany soukromí serveru"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
+#: ../../boot.php:1281
+msgid "privacy policy"
+msgstr "Ochrana soukromí"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Obrázek nelze zpracovat "
+#: ../../boot.php:1414
+msgid "Requested account is not available."
+msgstr "Požadovaný účet není dostupný."
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Obrázek překročil limit velikosti %d"
+#: ../../boot.php:1453 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Požadovaný profil není k dispozici."
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Obrázek není možné zprocesovat"
+#: ../../boot.php:1496 ../../boot.php:1630
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Upravit profil"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Nahrát soubor:"
+#: ../../boot.php:1563 ../../mod/suggest.php:90 ../../mod/match.php:58
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
+msgstr "Spojit"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Vybrat profil:"
+#: ../../boot.php:1595
+msgid "Message"
+msgstr "Zpráva"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Nahrát"
+#: ../../boot.php:1601 ../../include/nav.php:173
+msgid "Profiles"
+msgstr "Profily"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "nebo"
+#: ../../boot.php:1601
+msgid "Manage/edit profiles"
+msgstr "Spravovat/upravit profily"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "přeskočit tento krok "
+#: ../../boot.php:1606 ../../boot.php:1632 ../../mod/profiles.php:789
+msgid "Change profile photo"
+msgstr "Změnit profilovou fotografii"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "Vybrat fotografii z Vašich fotoalb"
+#: ../../boot.php:1607 ../../mod/profiles.php:790
+msgid "Create New Profile"
+msgstr "Vytvořit nový profil"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Oříznout obrázek"
+#: ../../boot.php:1617 ../../mod/profiles.php:801
+msgid "Profile Image"
+msgstr "Profilový obrázek"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
+#: ../../boot.php:1620 ../../mod/profiles.php:803
+msgid "visible to everybody"
+msgstr "viditelné pro všechny"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Editace dokončena"
+#: ../../boot.php:1621 ../../mod/profiles.php:804
+msgid "Edit visibility"
+msgstr "Upravit viditelnost"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Obrázek byl úspěšně nahrán."
+#: ../../boot.php:1643 ../../mod/directory.php:136 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:170
+msgid "Location:"
+msgstr "Místo:"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Nahrání obrázku selhalo."
+#: ../../boot.php:1645 ../../mod/directory.php:138
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Pohlaví:"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1965 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "fotografie"
+#: ../../boot.php:1648 ../../mod/directory.php:140
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "Stav"
+#: ../../boot.php:1650 ../../mod/directory.php:142
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Domácí stránka:"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s následuje %3$s uživatele %2$s"
+#: ../../boot.php:1652 ../../mod/directory.php:144
+#: ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "O mě:"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Štítek odstraněn"
+#: ../../boot.php:1701
+msgid "Network:"
+msgstr "Síť:"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Odebrat štítek položky"
+#: ../../boot.php:1731 ../../boot.php:1817
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Vyberte štítek k odebrání: "
+#: ../../boot.php:1732 ../../boot.php:1818
+msgid "F d"
+msgstr "d. F"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Odstranit"
+#: ../../boot.php:1777 ../../boot.php:1858
+msgid "[today]"
+msgstr "[Dnes]"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Uložit do složky:"
+#: ../../boot.php:1789
+msgid "Birthday Reminders"
+msgstr "Připomínka narozenin"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- vyber -"
+#: ../../boot.php:1790
+msgid "Birthdays this week:"
+msgstr "Narozeniny tento týden:"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:955
-msgid "Save"
-msgstr "Uložit"
+#: ../../boot.php:1851
+msgid "[No description]"
+msgstr "[Žádný popis]"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt přidán"
+#: ../../boot.php:1869
+msgid "Event Reminders"
+msgstr "Připomenutí událostí"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Nelze nalézt původní příspěvek."
+#: ../../boot.php:1870
+msgid "Events this week:"
+msgstr "Události tohoto týdne:"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Prázdný příspěvek odstraněn."
+#: ../../boot.php:2107 ../../include/nav.php:76
+msgid "Status"
+msgstr "Stav"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Fotografie na zdi"
+#: ../../boot.php:2110
+msgid "Status Messages and Posts"
+msgstr "Statusové zprávy a příspěvky "
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Chyba systému. Příspěvek nebyl uložen."
+#: ../../boot.php:2117
+msgid "Profile Details"
+msgstr "Detaily profilu"
 
-#: ../../mod/item.php:964
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
+#: ../../boot.php:2124 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Fotoalba"
 
-#: ../../mod/item.php:966
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Videa"
+
+#: ../../boot.php:2141
+msgid "Events and Calendar"
+msgstr "Události a kalendář"
+
+#: ../../boot.php:2145 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Osobní poznámky"
+
+#: ../../boot.php:2148
+msgid "Only You Can See This"
+msgstr "Toto můžete vidět jen Vy"
+
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Můžete je navštívit online na adrese %s"
+msgid "%1$s is currently %2$s"
+msgstr "%1$s je právě %2$s"
 
-#: ../../mod/item.php:967
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Nálada"
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"
+
+#: ../../mod/display.php:82 ../../mod/display.php:284
+#: ../../mod/display.php:503 ../../mod/decrypt.php:15 ../../mod/admin.php:169
+#: ../../mod/admin.php:1030 ../../mod/admin.php:1243 ../../mod/notice.php:15
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4500
+msgid "Item not found."
+msgstr "Položka nenalezena."
+
+#: ../../mod/display.php:212 ../../mod/_search.php:89
+#: ../../mod/directory.php:33 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:762 ../../mod/community.php:18
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/videos.php:115
+msgid "Public access denied."
+msgstr "Veřejný přístup odepřen."
+
+#: ../../mod/display.php:332 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Přístup na tento profil byl omezen."
+
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "Položka byla odstraněna."
+
+#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Přístup odmítnut"
+
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Příspěvek byl vytvořen"
+
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
+msgstr "Toto je Friendica, verze"
+
+#: ../../mod/friendica.php:63
+msgid "running at web location"
+msgstr "běžící na webu"
+
+#: ../../mod/friendica.php:65
 msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>."
 
-#: ../../mod/item.php:971
+#: ../../mod/friendica.php:67
+msgid "Bug reports and issues: please visit"
+msgstr "Pro hlášení chyb a námětů na změny navštivte:"
+
+#: ../../mod/friendica.php:68
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"
+
+#: ../../mod/friendica.php:82
+msgid "Installed plugins/addons/apps:"
+msgstr "Instalované pluginy/doplňky/aplikace:"
+
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
+msgstr "Nejsou žádné nainstalované doplňky/aplikace"
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%s posted an update."
-msgstr "%s poslal aktualizaci."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s vítá %2$s"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Skupina vytvořena."
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Nelze vytvořit skupinu."
+#: ../../mod/register.php:96
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Skupina nenalezena."
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Vaši registraci nelze zpracovat."
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Název skupiny byl změněn."
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "Vaše registrace čeká na schválení vlastníkem serveru."
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Uložit Skupinu"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Vytvořit skupinu kontaktů / přátel."
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Název skupiny: "
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Skupina odstraněna. "
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Vaše OpenID (nepovinné): "
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Nelze odstranit skupinu."
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Editor skupin"
+#: ../../mod/register.php:233 ../../mod/api.php:105 ../../mod/suggest.php:29
+#: ../../mod/dfrn_request.php:830 ../../mod/contacts.php:337
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/profiles.php:646
+#: ../../mod/profiles.php:649 ../../mod/message.php:209
+#: ../../include/items.php:4541
+msgid "Yes"
+msgstr "Ano"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Členové"
+#: ../../mod/register.php:234 ../../mod/api.php:106
+#: ../../mod/dfrn_request.php:830 ../../mod/settings.php:1010
+#: ../../mod/settings.php:1016 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1028 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1045
+#: ../../mod/settings.php:1051 ../../mod/settings.php:1081
+#: ../../mod/settings.php:1082 ../../mod/settings.php:1083
+#: ../../mod/settings.php:1084 ../../mod/settings.php:1085
+#: ../../mod/profiles.php:646 ../../mod/profiles.php:650
+msgid "No"
+msgstr "Ne"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Musíte být přihlášeni pro použití rozšíření."
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "Členství na tomto webu je pouze na pozvání."
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplikace"
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "Vaše pozvání ID:"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Žádné nainstalované aplikace."
+#: ../../mod/register.php:255 ../../mod/admin.php:603
+msgid "Registration"
+msgstr "Registrace"
+
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vaše celé jméno (např. Jan Novák):"
+
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Vaše e-mailová adresa:"
+
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@$sitename</strong>\"."
+
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Vyberte přezdívku:"
+
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
+
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Import Vašeho profilu do této friendica instance"
 
 #: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
-#: ../../mod/profiles.php:596
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
+#: ../../mod/profiles.php:615
 msgid "Profile not found."
 msgstr "Profil nenalezen"
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
+#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
 msgid "Contact not found."
 msgstr "Kontakt nenalezen."
 
@@ -1080,7 +1184,7 @@ msgid "Unable to update your contact profile details on our system"
 msgstr "Nelze aktualizovat Váš profil v našem systému"
 
 #: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:3979
+#: ../../include/items.php:3992
 msgid "[Name Withheld]"
 msgstr "[Jméno odepřeno]"
 
@@ -1089,65 +1193,33 @@ msgstr "[Jméno odepřeno]"
 msgid "%1$s has joined %2$s"
 msgstr "%1$s se připojil k %2$s"
 
-#: ../../mod/profile.php:21 ../../boot.php:1453
-msgid "Requested profile is not available."
-msgstr "Požadovaný profil není k dispozici."
-
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipy pro nové členy"
-
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Není vybráno žádné video"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Povolit připojení aplikacím"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Přístup k této položce je omezen."
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1402
-msgid "View Video"
-msgstr "Zobrazit video"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Pro pokračování se prosím přihlaste."
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Zobrazit album"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Aktuální Videa"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Nenalezen žádný platný účet."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Nahrát nová videa"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s označen uživatelem %2$s %3$s s %4$s"
-
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Návrhy přátelství odeslány "
-
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Navrhněte přátelé"
-
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Navrhněte přátelé pro uživatele %s"
-
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Nenalezen žádný platný účet."
-
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
-
-#: ../../mod/lostpass.php:42
+#: ../../mod/lostpass.php:42
 #, php-format
 msgid ""
 "\n"
@@ -1161,7 +1233,7 @@ msgid ""
 "\n"
 "\t\tYour password will not be changed unless we can verify that you\n"
 "\t\tissued this request."
-msgstr ""
+msgstr "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."
 
 #: ../../mod/lostpass.php:53
 #, php-format
@@ -1191,10 +1263,6 @@ msgid ""
 "Password reset failed."
 msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1275
-msgid "Password Reset"
-msgstr "Obnovení hesla"
-
 #: ../../mod/lostpass.php:110
 msgid "Your password has been reset as requested."
 msgstr "Vaše heslo bylo na Vaše přání resetováno."
@@ -1265,575 +1333,710 @@ msgstr "Přezdívka nebo e-mail: "
 msgid "Reset"
 msgstr "Reset"
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s má rád %2$s' na %3$s"
-
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s nemá rád %2$s na %3$s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} chce být Vaším přítelem"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Nevybrán příjemce."
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} vám poslal zprávu"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Nebylo možné zjistit Vaši domácí lokaci."
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} požaduje registraci"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Zprávu se nepodařilo odeslat."
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} komentoval příspěvek uživatele %s"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Sběr zpráv selhal."
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} má rád příspěvek uživatele %s"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Zpráva odeslána."
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} nemá rád příspěvek uživatele %s"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Žádný příjemce."
 
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} se skamarádil s %s"
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a link URL:"
+msgstr "Zadejte prosím URL odkaz:"
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} zasláno"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Odeslat soukromou zprávu"
 
-#: ../../mod/ping.php:281
+#: ../../mod/wallmessage.php:143
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} označen %s' příspěvek s #%s"
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} vás zmínil v příspěvku"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "Adresát:"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Žádné kontakty."
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Předmět:"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
-msgid "View Contacts"
-msgstr "Zobrazit kontakty"
+#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
+#: ../../mod/message.php:558 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Vaše zpráva:"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Neplatný identifikátor požadavku."
+#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../include/conversation.php:1091
+msgid "Upload photo"
+msgstr "Nahrát fotografii"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Odstranit"
+#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../include/conversation.php:1095
+msgid "Insert web link"
+msgstr "Vložit webový odkaz"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Systém"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Vítejte na Friendica"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:143
-msgid "Network"
-msgstr "Síť"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Seznam doporučení pro nového člena"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Osobní"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Domů"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Začínáme"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:152
-msgid "Introductions"
-msgstr "Představení"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Prohlídka Friendica "
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zobrazit ignorované žádosti"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Skrýt ignorované žádosti"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Navštivte své nastavení"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Typ oznámení: "
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Návrh přátelství"
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "navrhl %s"
+#: ../../mod/newmember.php:36 ../../mod/profiles.php:684
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Nahrát profilovou fotografii"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Zveřejnit aktivitu nového přítele."
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "je-li použitelné"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editujte Váš profil"
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:977
-msgid "Approve"
-msgstr "Schválit"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Vaši údajní známí: "
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profilová klíčová slova"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ano"
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "ne"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Probíhá pokus o připojení"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Schválit jako: "
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Přítel"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Sdílené"
-
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fanoušek / obdivovatel"
-
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Přítel / žádost o připojení"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nový následovník"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importování emaiů"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Žádné představení."
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:153
-msgid "Notifications"
-msgstr "Upozornění"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Navštivte Vaši stránku s kontakty"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
-msgstr "Uživateli %s se líbí příspěvek uživatele %s"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Navštivte lokální adresář Friendica"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s se nyní přátelí s %s"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s vytvořil nový příspěvek"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Nalezení nových lidí"
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s okomentoval příspěvek uživatele %s'"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Žádné další síťové upozornění."
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Skupiny"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Upozornění Sítě"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Seskupte si své kontakty"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Žádné další systémová upozornění."
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Systémová upozornění"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Proč nejsou mé příspěvky veřejné?"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Žádné další osobní upozornění."
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Osobní upozornění"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Získání nápovědy"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Žádné další domácí upozornění."
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Navštivte sekci nápovědy"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Upozornění na vstupní straně"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Zdrojový text (bbcode):"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Opravdu chcete smazat tento návrh?"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:"
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:844 ../../mod/contacts.php:340
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1129
+#: ../../include/items.php:4544
+msgid "Cancel"
+msgstr "Zrušit"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Zdrojový vstup: "
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorovat / skrýt"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Výsledky hledání pro:"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/network.php:185 ../../mod/_search.php:21 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Odstranit termín"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/network.php:194 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Uložená hledání"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
+msgstr "přidat"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Dle komentářů"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Řadit podle data komentáře"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Vstupní data (ve formátu Diaspora): "
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Dle data"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Řadit podle data příspěvku"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Zde není nic nového"
+#: ../../mod/network.php:371 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Osobní"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Smazat notifikace"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
 
-#: ../../mod/message.php:9 ../../include/nav.php:162
-msgid "New Message"
-msgstr "Nová zpráva"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nové"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Nevybrán příjemce."
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Proud aktivit - dle data"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Nepodařilo se najít kontaktní informace."
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Sdílené odkazy"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Zprávu se nepodařilo odeslat."
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Zajímavé odkazy"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Sběr zpráv selhal."
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "S hvězdičkou"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Zpráva odeslána."
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Oblíbené přízpěvky"
 
-#: ../../mod/message.php:182 ../../include/nav.php:159
-msgid "Messages"
-msgstr "Zprávy"
-
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Opravdu chcete smazat tuto zprávu?"
-
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Zpráva odstraněna."
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě."
+msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
+msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Konverzace odstraněna."
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Zadejte prosím URL odkaz:"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Žádná taková skupina"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Odeslat soukromou zprávu"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Skupina je prázdná"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "Adresát:"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Skupina: "
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Předmět:"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Vaše zpráva:"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Nahrát fotografii"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Neplatný kontakt."
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Vložit webový odkaz"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Komunikační server - Nastavení"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Čekejte prosím"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Nelze se připojit k databázi."
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Žádné zprávy."
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Nelze vytvořit tabulku."
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Neznámý odesilatel - %s"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Vaše databáze Friendica  byla nainstalována."
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Vy a %s"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s a Vy"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Odstranit konverzaci"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Testování systému"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D M R - g:i A"
+#: ../../mod/install.php:207 ../../mod/events.php:373
+msgid "Next"
+msgstr "Dále"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d zpráva"
-msgstr[1] "%d zprávy"
-msgstr[2] "%d zpráv"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Otestovat znovu"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Zpráva není k dispozici."
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Databázové spojení"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Smazat zprávu"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
 
-#: ../../mod/message.php:548
+#: ../../mod/install.php:229
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Poslat odpověď"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Vložený obsah - obnovte stránku pro zobrazení]"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Jméno databázového serveru"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Nastavení kontaktu změněno"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Přihlašovací jméno k databázi"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Aktualizace kontaktu selhala."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Heslo k databázovému účtu "
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Opravit nastavení kontaktu"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Jméno databáze"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Emailová adresa administrátora webu"
 
-#: ../../mod/crepair.php:142
+#: ../../mod/install.php:238 ../../mod/install.php:277
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Návrat k editoru kontaktu"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr "Žádné zrcadlení"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Nastavení webu"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr "Zrcadlit pro přeposlané příspěvky"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr "Zrcadlit jako mé vlastní příspěvky"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
-#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
-#: ../../mod/settings.php:642
-msgid "Name"
-msgstr "Jméno"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Cesta k \"PHP executable\""
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Přezdívka účtu"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Příkazový řádek PHP"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL adresa účtu"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "Žádost o přátelství URL"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Nalezena PHP verze:"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL adresa potvrzení přátelství"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "Notifikační URL adresa"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL adresa"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Toto je nutné pro fungování doručování zpráv."
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nové foto z této URL adresy"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr "Remote Self"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr "Zrcadlení správ od tohoto kontaktu"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/crepair.php:176
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Generovat kriptovací klíče"
+
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP modul"
+
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP modul"
+
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP modul"
+
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP modul"
+
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP modul"
+
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite modul"
+
+#: ../../mod/install.php:397
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Přístup odmítnut"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Vyhledávání lidí"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Žádné shody"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Fotografie"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Soubory"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty, které nejsou členy skupiny"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
+
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
+
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
+
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
+
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php je editovatelné"
+
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
+
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
+
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
+
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
+
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 je nastaven pro zápis"
+
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
+
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "Url rewrite je funkční."
+
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
+
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dál<h1>"
+
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
 
 #: ../../mod/admin.php:57
 msgid "Theme settings updated."
 msgstr "Nastavení téma zobrazení bylo aktualizováno."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:596
+#: ../../mod/admin.php:104 ../../mod/admin.php:601
 msgid "Site"
 msgstr "Web"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
+#: ../../mod/admin.php:105 ../../mod/admin.php:976 ../../mod/admin.php:991
 msgid "Users"
 msgstr "Uživatelé"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
+#: ../../mod/admin.php:106 ../../mod/admin.php:1080 ../../mod/admin.php:1133
 #: ../../mod/settings.php:57
 msgid "Plugins"
 msgstr "Pluginy"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
+#: ../../mod/admin.php:107 ../../mod/admin.php:1301 ../../mod/admin.php:1335
 msgid "Themes"
 msgstr "Témata"
 
@@ -1841,412 +2044,428 @@ msgstr "Témata"
 msgid "DB updates"
 msgstr "Aktualizace databáze"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1422
 msgid "Logs"
 msgstr "Logy"
 
-#: ../../mod/admin.php:128 ../../include/nav.php:182
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr ""
+
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr ""
+
+#: ../../mod/admin.php:130 ../../include/nav.php:182
 msgid "Admin"
 msgstr "Administrace"
 
-#: ../../mod/admin.php:129
+#: ../../mod/admin.php:131
 msgid "Plugin Features"
 msgstr "Funkčnosti rozšíření"
 
-#: ../../mod/admin.php:131
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr "diagnostika"
+
+#: ../../mod/admin.php:134
 msgid "User registrations waiting for confirmation"
 msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:924
+#: ../../mod/admin.php:193 ../../mod/admin.php:930
 msgid "Normal Account"
 msgstr "Normální účet"
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:925
+#: ../../mod/admin.php:194 ../../mod/admin.php:931
 msgid "Soapbox Account"
 msgstr "Soapbox účet"
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:926
+#: ../../mod/admin.php:195 ../../mod/admin.php:932
 msgid "Community/Celebrity Account"
 msgstr "Komunitní účet / Účet celebrity"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:927
+#: ../../mod/admin.php:196 ../../mod/admin.php:933
 msgid "Automatic Friend Account"
 msgstr "Účet s automatickým schvalováním přátel"
 
-#: ../../mod/admin.php:194
+#: ../../mod/admin.php:197
 msgid "Blog Account"
 msgstr "Účet Blogu"
 
-#: ../../mod/admin.php:195
+#: ../../mod/admin.php:198
 msgid "Private Forum"
 msgstr "Soukromé fórum"
 
-#: ../../mod/admin.php:214
+#: ../../mod/admin.php:217
 msgid "Message queues"
 msgstr "Fronty zpráv"
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
-#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
-#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
+#: ../../mod/admin.php:222 ../../mod/admin.php:600 ../../mod/admin.php:975
+#: ../../mod/admin.php:1079 ../../mod/admin.php:1132 ../../mod/admin.php:1300
+#: ../../mod/admin.php:1334 ../../mod/admin.php:1421
 msgid "Administration"
 msgstr "Administrace"
 
-#: ../../mod/admin.php:220
+#: ../../mod/admin.php:223
 msgid "Summary"
 msgstr "Shrnutí"
 
-#: ../../mod/admin.php:222
+#: ../../mod/admin.php:225
 msgid "Registered users"
 msgstr "Registrovaní uživatelé"
 
-#: ../../mod/admin.php:224
+#: ../../mod/admin.php:227
 msgid "Pending registrations"
 msgstr "Čekající registrace"
 
-#: ../../mod/admin.php:225
+#: ../../mod/admin.php:228
 msgid "Version"
 msgstr "Verze"
 
-#: ../../mod/admin.php:229
+#: ../../mod/admin.php:232
 msgid "Active plugins"
 msgstr "Aktivní pluginy"
 
-#: ../../mod/admin.php:252
+#: ../../mod/admin.php:255
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>"
 
-#: ../../mod/admin.php:500
+#: ../../mod/admin.php:505
 msgid "Site settings updated."
 msgstr "Nastavení webu aktualizováno."
 
-#: ../../mod/admin.php:529 ../../mod/settings.php:828
+#: ../../mod/admin.php:534 ../../mod/settings.php:828
 msgid "No special theme for mobile devices"
 msgstr "žádné speciální téma pro mobilní zařízení"
 
-#: ../../mod/admin.php:547
+#: ../../mod/admin.php:551 ../../mod/contacts.php:419
+msgid "Never"
+msgstr "Nikdy"
+
+#: ../../mod/admin.php:552
 msgid "At post arrival"
 msgstr "Při obdržení příspěvku"
 
-#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
+#: ../../mod/admin.php:553 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "Často"
 
-#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
+#: ../../mod/admin.php:554 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "každou hodinu"
 
-#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
+#: ../../mod/admin.php:555 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "Dvakrát denně"
 
-#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
+#: ../../mod/admin.php:556 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "denně"
 
-#: ../../mod/admin.php:556
+#: ../../mod/admin.php:561
 msgid "Multi user instance"
 msgstr "Více uživatelská instance"
 
-#: ../../mod/admin.php:579
+#: ../../mod/admin.php:584
 msgid "Closed"
 msgstr "Uzavřeno"
 
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:585
 msgid "Requires approval"
 msgstr "Vyžaduje schválení"
 
-#: ../../mod/admin.php:581
+#: ../../mod/admin.php:586
 msgid "Open"
 msgstr "Otevřená"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:590
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:591
 msgid "Force all links to use SSL"
 msgstr "Vyžadovat u všech odkazů použití SSL"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:592
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"
 
-#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
-#: ../../mod/admin.php:1417 ../../mod/settings.php:614
+#: ../../mod/admin.php:602 ../../mod/admin.php:1134 ../../mod/admin.php:1336
+#: ../../mod/admin.php:1423 ../../mod/settings.php:614
 #: ../../mod/settings.php:724 ../../mod/settings.php:798
 #: ../../mod/settings.php:880 ../../mod/settings.php:1113
 msgid "Save Settings"
 msgstr "Uložit Nastavení"
 
-#: ../../mod/admin.php:598 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Registrace"
-
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:604
 msgid "File upload"
 msgstr "Nahrání souborů"
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:605
 msgid "Policies"
 msgstr "Politiky"
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:606
 msgid "Advanced"
 msgstr "Pokročilé"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:607
 msgid "Performance"
 msgstr "Výkonnost"
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:608
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:611
 msgid "Site name"
 msgstr "Název webu"
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:612
 msgid "Host name"
-msgstr ""
+msgstr "Jméno hostitele (host name)"
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:613
+msgid "Sender Email"
+msgstr "Email ddesílatele"
+
+#: ../../mod/admin.php:614
 msgid "Banner/Logo"
 msgstr "Banner/logo"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:615
 msgid "Additional Info"
 msgstr "Dodatečné informace"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:615
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:616
 msgid "System language"
 msgstr "Systémový jazyk"
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:617
 msgid "System theme"
 msgstr "Grafická šablona systému "
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:617
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:618
 msgid "Mobile system theme"
 msgstr "Systémové téma zobrazení pro mobilní zařízení"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:618
 msgid "Theme for mobile devices"
 msgstr "Téma zobrazení pro mobilní zařízení"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:619
 msgid "SSL link policy"
 msgstr "Politika SSL odkazů"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:619
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Určuje, zda-li budou generované odkazy používat SSL"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:620
 msgid "Force SSL"
 msgstr "Vynutit SSL"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:620
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
-msgstr ""
+msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení."
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:621
 msgid "Old style 'Share'"
 msgstr "Sdílení \"postaru\""
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:621
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky."
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:622
 msgid "Hide help entry from navigation menu"
 msgstr "skrýt nápovědu z navigačního menu"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:622
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:623
 msgid "Single user instance"
 msgstr "Jednouživatelská instance"
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:623
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:624
 msgid "Maximum image size"
 msgstr "Maximální velikost obrázků"
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:624
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:625
 msgid "Maximum image length"
 msgstr "Maximální velikost obrázků"
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:625
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:626
 msgid "JPEG image quality"
 msgstr "JPEG kvalita obrázku"
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:626
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:628
 msgid "Register policy"
 msgstr "Politika registrace"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:629
 msgid "Maximum Daily Registrations"
 msgstr "Maximální počet denních registrací"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:629
 msgid ""
 "If registration is permitted above, this sets the maximum number of new user"
 " registrations to accept per day.  If register is set to closed, this "
 "setting has no effect."
 msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:630
 msgid "Register text"
 msgstr "Registrace textu"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:630
 msgid "Will be displayed prominently on the registration page."
 msgstr "Bude zřetelně zobrazeno na registrační stránce."
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:631
 msgid "Accounts abandoned after x days"
 msgstr "Účet je opuštěn po x dnech"
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:631
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:632
 msgid "Allowed friend domains"
 msgstr "Povolené domény přátel"
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:632
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:633
 msgid "Allowed email domains"
 msgstr "Povolené e-mailové domény"
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:633
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:634
 msgid "Block public"
 msgstr "Blokovat veřejnost"
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:634
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni."
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:635
 msgid "Force publish"
 msgstr "Publikovat"
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:635
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:636
 msgid "Global directory update URL"
 msgstr "aktualizace URL adresy Globálního adresáře "
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:636
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:637
 msgid "Allow threaded items"
 msgstr "Povolit vícevláknové zpracování obsahu"
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:637
 msgid "Allow infinite level threading for items on this site."
 msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:638
 msgid "Private posts by default for new users"
 msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:638
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:639
 msgid "Don't include post content in email notifications"
 msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:639
 msgid ""
 "Don't include the content of a post/comment/private message/etc. in the "
 "email notifications that are sent out from this site, as a privacy measure."
 msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:640
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:640
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:641
 msgid "Don't embed private images in posts"
 msgstr "Nepovolit přidávání soukromých správ v příspěvcích"
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:641
 msgid ""
 "Don't replace locally-hosted private photos in posts with an embedded copy "
 "of the image. This means that contacts who receive posts containing private "
@@ -2254,293 +2473,293 @@ msgid ""
 "while."
 msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."
 
-#: ../../mod/admin.php:636
+#: ../../mod/admin.php:642
 msgid "Allow Users to set remote_self"
 msgstr "Umožnit uživatelům nastavit "
 
-#: ../../mod/admin.php:636
+#: ../../mod/admin.php:642
 msgid ""
 "With checking this, every user is allowed to mark every contact as a "
 "remote_self in the repair contact dialog. Setting this flag on a contact "
 "causes mirroring every posting of that contact in the users stream."
 msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:643
 msgid "Block multiple registrations"
 msgstr "Blokovat více registrací"
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:643
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:644
 msgid "OpenID support"
 msgstr "podpora OpenID"
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:644
 msgid "OpenID support for registration and logins."
 msgstr "Podpora OpenID pro registraci a přihlašování."
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:645
 msgid "Fullname check"
 msgstr "kontrola úplného jména"
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:645
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:646
 msgid "UTF-8 Regular expressions"
 msgstr "UTF-8 Regulární výrazy"
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:646
 msgid "Use PHP UTF8 regular expressions"
 msgstr "Použít PHP UTF8 regulární výrazy."
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:647
 msgid "Show Community Page"
 msgstr "Zobrazit stránku komunity"
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:647
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr "Zobrazit Komunitní stránku zobrazující všechny veřejné příspěvky napsané na této stránce."
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:648
 msgid "Enable OStatus support"
 msgstr "Zapnout podporu OStatus"
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:648
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:649
 msgid "OStatus conversation completion interval"
 msgstr "Interval dokončení konverzace OStatus"
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:649
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:650
 msgid "Enable Diaspora support"
 msgstr "Povolit podporu Diaspora"
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:650
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:651
 msgid "Only allow Friendica contacts"
 msgstr "Povolit pouze Friendica kontakty"
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:651
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:652
 msgid "Verify SSL"
 msgstr "Ověřit SSL"
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:652
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
 
-#: ../../mod/admin.php:647
+#: ../../mod/admin.php:653
 msgid "Proxy user"
 msgstr "Proxy uživatel"
 
-#: ../../mod/admin.php:648
+#: ../../mod/admin.php:654
 msgid "Proxy URL"
 msgstr "Proxy URL adresa"
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:655
 msgid "Network timeout"
 msgstr "čas síťového spojení vypršelo (timeout)"
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:655
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:656
 msgid "Delivery interval"
 msgstr "Interval doručování"
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:656
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery."
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:657
 msgid "Poll interval"
 msgstr "Dotazovací interval"
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:657
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:658
 msgid "Maximum Load Average"
 msgstr "Maximální průměrné zatížení"
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:658
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:660
 msgid "Use MySQL full text engine"
 msgstr "Použít fulltextový vyhledávací stroj MySQL"
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:660
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:661
 msgid "Suppress Language"
 msgstr "Potlačit Jazyk"
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:661
 msgid "Suppress language information in meta information about a posting."
 msgstr "Potlačit jazykové informace v meta informacích o příspěvcích"
 
-#: ../../mod/admin.php:656
+#: ../../mod/admin.php:662
 msgid "Path to item cache"
 msgstr "Cesta k položkám vyrovnávací paměti"
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:663
 msgid "Cache duration in seconds"
 msgstr "Doba platnosti vyrovnávací paměti v sekundách"
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:663
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One"
 " day). To disable the item cache, set the value to -1."
 msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1."
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:664
 msgid "Maximum numbers of comments per post"
 msgstr "Maximální počet komentářů k příspěvku"
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:664
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."
 
-#: ../../mod/admin.php:659
+#: ../../mod/admin.php:665
 msgid "Path for lock file"
 msgstr "Cesta k souboru zámku"
 
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:666
 msgid "Temp path"
 msgstr "Cesta k dočasným souborům"
 
-#: ../../mod/admin.php:661
+#: ../../mod/admin.php:667
 msgid "Base path to installation"
 msgstr "Základní cesta k instalaci"
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:668
 msgid "Disable picture proxy"
 msgstr "Vypnutí obrázkové proxy"
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:668
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
 " systems with very low bandwith."
 msgstr "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti."
 
-#: ../../mod/admin.php:664
+#: ../../mod/admin.php:670
 msgid "New base url"
 msgstr "Nová výchozí url adresa"
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:672
 msgid "Disable noscrape"
-msgstr ""
+msgstr "Zakázat nonscrape"
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:672
 msgid ""
 "The noscrape feature speeds up directory submissions by using JSON data "
 "instead of HTML scraping. Disabling it will cause higher load on your server"
 " and the directory server."
-msgstr ""
+msgstr "Funkčnost noscrape urychlí odesílání adresářů použitím JSON místo HTML. Zakázáním této funkčnosti se zvýší zatížení Vašeho serveru a stejně jako Vašeho adresářového serveru."
 
-#: ../../mod/admin.php:683
+#: ../../mod/admin.php:689
 msgid "Update has been marked successful"
 msgstr "Aktualizace byla označena jako úspěšná."
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:697
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována."
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:700
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr "Provádění aktualizace databáze %s skončilo chybou: %s"
 
-#: ../../mod/admin.php:706
+#: ../../mod/admin.php:712
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr "Vykonávání %s selhalo s chybou: %s"
 
-#: ../../mod/admin.php:709
+#: ../../mod/admin.php:715
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Aktualizace %s byla úspěšně aplikována."
 
-#: ../../mod/admin.php:713
+#: ../../mod/admin.php:719
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."
 
-#: ../../mod/admin.php:715
+#: ../../mod/admin.php:721
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána."
 
-#: ../../mod/admin.php:734
+#: ../../mod/admin.php:740
 msgid "No failed updates."
 msgstr "Žádné neúspěšné aktualizace."
 
-#: ../../mod/admin.php:735
+#: ../../mod/admin.php:741
 msgid "Check database structure"
 msgstr "Ověření struktury databáze"
 
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:746
 msgid "Failed Updates"
 msgstr "Neúspěšné aktualizace"
 
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:747
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."
 
-#: ../../mod/admin.php:742
+#: ../../mod/admin.php:748
 msgid "Mark success (if update was manually applied)"
 msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"
 
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:749
 msgid "Attempt to execute this update step automatically"
 msgstr "Pokusit se provést tuto aktualizaci automaticky."
 
-#: ../../mod/admin.php:775
+#: ../../mod/admin.php:781
 #, php-format
 msgid ""
 "\n"
@@ -2548,7 +2767,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr "\n\t\t\tDrahý %1$s,\n\t\t\t\tadministrátor webu %2$s pro Vás vytvořil uživatelský účet."
 
-#: ../../mod/admin.php:778
+#: ../../mod/admin.php:784
 #, php-format
 msgid ""
 "\n"
@@ -2578,12 +2797,12 @@ msgid ""
 "\t\t\tThank you and welcome to %4$s."
 msgstr ""
 
-#: ../../mod/admin.php:810 ../../include/user.php:413
+#: ../../mod/admin.php:816 ../../include/user.php:413
 #, php-format
 msgid "Registration details for %s"
 msgstr "Registrační údaje pro %s"
 
-#: ../../mod/admin.php:822
+#: ../../mod/admin.php:828
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
@@ -2591,7 +2810,7 @@ msgstr[0] "%s uživatel blokován/odblokován"
 msgstr[1] "%s uživatelů blokováno/odblokováno"
 msgstr[2] "%s uživatelů blokováno/odblokováno"
 
-#: ../../mod/admin.php:829
+#: ../../mod/admin.php:835
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
@@ -2599,967 +2818,1056 @@ msgstr[0] "%s uživatel smazán"
 msgstr[1] "%s uživatelů smazáno"
 msgstr[2] "%s uživatelů smazáno"
 
-#: ../../mod/admin.php:868
+#: ../../mod/admin.php:874
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Uživatel '%s' smazán"
 
-#: ../../mod/admin.php:876
+#: ../../mod/admin.php:882
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Uživatel '%s' odblokován"
 
-#: ../../mod/admin.php:876
+#: ../../mod/admin.php:882
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Uživatel '%s' blokován"
 
-#: ../../mod/admin.php:971
+#: ../../mod/admin.php:977
 msgid "Add User"
 msgstr "Přidat Uživatele"
 
-#: ../../mod/admin.php:972
+#: ../../mod/admin.php:978
 msgid "select all"
 msgstr "Vybrat vše"
 
-#: ../../mod/admin.php:973
+#: ../../mod/admin.php:979
 msgid "User registrations waiting for confirm"
 msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../mod/admin.php:974
+#: ../../mod/admin.php:980
 msgid "User waiting for permanent deletion"
 msgstr "Uživatel čeká na trvalé smazání"
 
-#: ../../mod/admin.php:975
+#: ../../mod/admin.php:981
 msgid "Request date"
 msgstr "Datum žádosti"
 
-#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
-#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1007 ../../mod/crepair.php:165
+#: ../../mod/settings.php:616 ../../mod/settings.php:642
+msgid "Name"
+msgstr "Jméno"
+
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1009 ../../include/contact_selectors.php:79
 #: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "E-mail"
 
-#: ../../mod/admin.php:976
+#: ../../mod/admin.php:982
 msgid "No registrations."
 msgstr "Žádné registrace."
 
-#: ../../mod/admin.php:978
+#: ../../mod/admin.php:983 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Schválit"
+
+#: ../../mod/admin.php:984
 msgid "Deny"
 msgstr "Odmítnout"
 
-#: ../../mod/admin.php:982
+#: ../../mod/admin.php:986 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Block"
+msgstr "Blokovat"
+
+#: ../../mod/admin.php:987 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Unblock"
+msgstr "Odblokovat"
+
+#: ../../mod/admin.php:988
 msgid "Site admin"
 msgstr "Site administrátor"
 
-#: ../../mod/admin.php:983
+#: ../../mod/admin.php:989
 msgid "Account expired"
 msgstr "Účtu vypršela platnost"
 
-#: ../../mod/admin.php:986
+#: ../../mod/admin.php:992
 msgid "New User"
 msgstr "Nový uživatel"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Register date"
 msgstr "Datum registrace"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Last login"
 msgstr "Datum posledního přihlášení"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Last item"
 msgstr "Poslední položka"
 
-#: ../../mod/admin.php:987
+#: ../../mod/admin.php:993
 msgid "Deleted since"
 msgstr "Smazán od"
 
-#: ../../mod/admin.php:988 ../../mod/settings.php:36
+#: ../../mod/admin.php:994 ../../mod/settings.php:36
 msgid "Account"
 msgstr "Účet"
 
-#: ../../mod/admin.php:990
+#: ../../mod/admin.php:996
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: ../../mod/admin.php:991
+#: ../../mod/admin.php:997
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: ../../mod/admin.php:1001
+#: ../../mod/admin.php:1007
 msgid "Name of the new user."
 msgstr "Jméno nového uživatele"
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1008
 msgid "Nickname"
 msgstr "Přezdívka"
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1008
 msgid "Nickname of the new user."
 msgstr "Přezdívka nového uživatele."
 
-#: ../../mod/admin.php:1003
+#: ../../mod/admin.php:1009
 msgid "Email address of the new user."
 msgstr "Emailová adresa nového uživatele."
 
-#: ../../mod/admin.php:1036
+#: ../../mod/admin.php:1042
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Plugin %s zakázán."
 
-#: ../../mod/admin.php:1040
+#: ../../mod/admin.php:1046
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Plugin %s povolen."
 
-#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
+#: ../../mod/admin.php:1056 ../../mod/admin.php:1272
 msgid "Disable"
 msgstr "Zakázat"
 
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
+#: ../../mod/admin.php:1058 ../../mod/admin.php:1274
 msgid "Enable"
 msgstr "Povolit"
 
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
+#: ../../mod/admin.php:1081 ../../mod/admin.php:1302
 msgid "Toggle"
 msgstr "Přepnout"
 
-#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
+#: ../../mod/admin.php:1089 ../../mod/admin.php:1312
 msgid "Author: "
 msgstr "Autor: "
 
-#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
+#: ../../mod/admin.php:1090 ../../mod/admin.php:1313
 msgid "Maintainer: "
 msgstr "Správce: "
 
-#: ../../mod/admin.php:1226
+#: ../../mod/admin.php:1232
 msgid "No themes found."
 msgstr "Nenalezeny žádná témata."
 
-#: ../../mod/admin.php:1288
+#: ../../mod/admin.php:1294
 msgid "Screenshot"
 msgstr "Snímek obrazovky"
 
-#: ../../mod/admin.php:1334
+#: ../../mod/admin.php:1340
 msgid "[Experimental]"
 msgstr "[Experimentální]"
 
-#: ../../mod/admin.php:1335
+#: ../../mod/admin.php:1341
 msgid "[Unsupported]"
 msgstr "[Nepodporováno]"
 
-#: ../../mod/admin.php:1362
+#: ../../mod/admin.php:1368
 msgid "Log settings updated."
 msgstr "Nastavení protokolu aktualizováno."
 
-#: ../../mod/admin.php:1418
+#: ../../mod/admin.php:1424
 msgid "Clear"
 msgstr "Vyčistit"
 
-#: ../../mod/admin.php:1424
+#: ../../mod/admin.php:1430
 msgid "Enable Debugging"
 msgstr "Povolit ladění"
 
-#: ../../mod/admin.php:1425
+#: ../../mod/admin.php:1431
 msgid "Log file"
 msgstr "Soubor s logem"
 
-#: ../../mod/admin.php:1425
+#: ../../mod/admin.php:1431
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"
 
-#: ../../mod/admin.php:1426
+#: ../../mod/admin.php:1432
 msgid "Log level"
 msgstr "Úroveň auditu"
 
-#: ../../mod/admin.php:1476
+#: ../../mod/admin.php:1481 ../../mod/contacts.php:498
+msgid "Update now"
+msgstr "Aktualizovat"
+
+#: ../../mod/admin.php:1482
 msgid "Close"
 msgstr "Zavřít"
 
-#: ../../mod/admin.php:1482
+#: ../../mod/admin.php:1488
 msgid "FTP Host"
 msgstr "Hostitel FTP"
 
-#: ../../mod/admin.php:1483
+#: ../../mod/admin.php:1489
 msgid "FTP Path"
 msgstr "Cesta FTP"
 
-#: ../../mod/admin.php:1484
+#: ../../mod/admin.php:1490
 msgid "FTP User"
 msgstr "FTP uživatel"
 
-#: ../../mod/admin.php:1485
+#: ../../mod/admin.php:1491
 msgid "FTP Password"
 msgstr "FTP heslo"
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Výsledky hledání pro:"
+#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:953
+#: ../../include/text.php:954 ../../include/nav.php:119
+msgid "Search"
+msgstr "Vyhledávání"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Odstranit termín"
+#: ../../mod/_search.php:180 ../../mod/_search.php:206
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:71
+msgid "No results."
+msgstr "Žádné výsledky."
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Uložená hledání"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipy pro nové členy"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "přidat"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "odkaz"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Dle komentářů"
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s označen uživatelem %2$s %3$s s %4$s"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Řadit podle data komentáře"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Položka nenalezena"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Dle data"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Upravit příspěvek"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Řadit podle data příspěvku"
+#: ../../mod/editpost.php:109 ../../mod/notes.php:63 ../../mod/filer.php:31
+#: ../../include/text.php:956
+msgid "Save"
+msgstr "Uložit"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
+msgstr "nahrát fotky"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nové"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
+msgstr "Přiložit soubor"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Proud aktivit - dle data"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
+msgstr "přidat soubor"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Sdílené odkazy"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
+msgstr "webový odkaz"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Zajímavé odkazy"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
+msgstr "Zadejte odkaz na video"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "S hvězdičkou"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
+msgstr "odkaz na video"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Oblíbené přízpěvky"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
+msgstr "Zadejte odkaz na zvukový záznam"
 
-#: ../../mod/network.php:463
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě."
-msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
-msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
+msgstr "odkaz na audio"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
+msgstr "Nastavte vaši polohu"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Žádná taková skupina"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
+msgstr "nastavit místo"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Skupina je prázdná"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
+msgstr "Odstranit adresu v prohlížeči"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Skupina: "
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
+msgstr "vymazat místo"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
+msgstr "Nastavení oprávnění"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
+msgstr "skrytá kopie: e-mailové adresy"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Neplatný kontakt."
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
+msgstr "Veřejný příspěvek"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Přátelé uživatele %s"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
+msgstr "Nastavit titulek"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Žádní přátelé k zobrazení"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
+msgstr "Kategorie (čárkou oddělený seznam)"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Název události a datum začátku jsou vyžadovány."
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Příklad: bob@example.com, mary@example.com"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Položka není k dispozici."
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editovat událost"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Položka nebyla nalezena."
 
-#: ../../mod/events.php:335 ../../include/text.php:1644
-#: ../../include/text.php:1654
-msgid "link to source"
-msgstr "odkaz na zdroj"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Účet schválen."
 
-#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Události"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrace zrušena pro %s"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Vytvořit novou událost"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Přihlaste se, prosím."
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Předchozí"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Nalézt na tomto webu"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Dále"
+#: ../../mod/directory.php:61 ../../mod/contacts.php:707
+msgid "Finding: "
+msgstr "Zjištění: "
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hodina:minuta"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Adresář serveru"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detaily události"
+#: ../../mod/directory.php:63 ../../mod/contacts.php:708
+#: ../../include/contact_widgets.php:34
+msgid "Find"
+msgstr "Najít"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány."
+#: ../../mod/directory.php:113 ../../mod/profiles.php:735
+msgid "Age: "
+msgstr "Věk: "
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Událost začíná:"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Pohlaví: "
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Vyžadováno"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Žádné záznamy (některé položky mohou být skryty)."
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Datum/čas konce není zadán nebo není relevantní"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Nastavení kontaktu změněno"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Akce končí:"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Aktualizace kontaktu selhala."
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Opravit nastavení kontaktu"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Popis:"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Místo:"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Název:"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Návrat k editoru kontaktu"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Sdílet tuto událost"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Žádné zrcadlení"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Vybrat"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Zrcadlit pro přeposlané příspěvky"
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Zobrazit profil uživatele %s na %s"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Zrcadlit jako mé vlastní příspěvky"
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
-msgstr "%s od %s"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Přezdívka účtu"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Pohled v kontextu"
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d komentář"
-msgstr[1] "%d komentářů"
-msgstr[2] "%d komentářů"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL adresa účtu"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1969
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] "komentář"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "Žádost o přátelství URL"
 
-#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "zobrazit více"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL adresa potvrzení přátelství"
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
-msgid "Private Message"
-msgstr "Soukromá zpráva"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "Notifikační URL adresa"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
-msgid "I like this (toggle)"
-msgstr "Líbí se mi to (přepínač)"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL adresa"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
-msgid "like"
-msgstr "má rád"
-
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
-msgid "I don't like this (toggle)"
-msgstr "Nelíbí se mi to (přepínač)"
-
-#: ../../mod/content.php:685 ../../object/Item.php:232
-msgid "dislike"
-msgstr "nemá rád"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nové foto z této URL adresy"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "Share this"
-msgstr "Sdílet toto"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr "Remote Self"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "share"
-msgstr "sdílí"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr "Zrcadlení správ od tohoto kontaktu"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
-#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
-msgid "This is you"
-msgstr "Nastavte Vaši polohu"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Okomentovat"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Přesunout účet"
 
-#: ../../mod/content.php:711 ../../object/Item.php:679
-msgid "Bold"
-msgstr "Tučné"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Můžete importovat účet z jiného Friendica serveru."
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
-msgid "Italic"
-msgstr "Kurzíva"
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
-msgid "Underline"
-msgstr "Podrtžené"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
-msgid "Quote"
-msgstr "Citovat"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Soubor s účtem"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
-msgid "Code"
-msgstr "Kód"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
-msgid "Image"
-msgstr "Obrázek"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Vzdálené soukromé informace nejsou k dispozici."
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
-msgid "Link"
-msgstr "Odkaz"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Viditelné pro:"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
-msgid "Video"
-msgstr "Video"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Nápověda:"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Náhled"
+#: ../../mod/help.php:84 ../../include/nav.php:114
+msgid "Help"
+msgstr "Nápověda"
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Upravit"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Žádný profil"
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "přidat hvězdu"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Toto pozvání již bylo přijato."
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "odebrat hvězdu"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "přepnout hvězdu"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "označeno hvězdou"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "přidat štítek"
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d požadovaný parametr nebyl nalezen na daném místě"
+msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
+msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "uložit do složky"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Představení dokončeno."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "pro"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Neopravitelná chyba protokolu"
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Zeď-na-Zeď"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil není k dispozici."
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "přes Zeď-na-Zeď "
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Odstranit můj účet"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Ochrana proti spamu byla aktivována"
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Prosím, zadejte své heslo pro ověření:"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Neplatný odkaz"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Komunikační server - Nastavení"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Neplatná emailová adresa"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Nelze se připojit k databázi."
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Nelze vytvořit tabulku."
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Vaše databáze Friendica  byla nainstalována."
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Již jste se zde zavedli."
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Zřejmě jste již přátelé se %s."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Neplatné URL profilu."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Testování systému"
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Nepovolené URL profilu."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Otestovat znovu"
+#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:188
+msgid "Failed to update contact record."
+msgstr "Nepodařilo se aktualizovat kontakt."
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Databázové spojení"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Vaše žádost o propojení byla odeslána."
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
 
-#: ../../mod/install.php:229
+#: ../../mod/dfrn_request.php:660
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Skrýt tento kontakt"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Jméno databázového serveru"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Vítejte doma %s."
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Přihlašovací jméno k databázi"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Prosím potvrďte Vaši žádost o propojení %s."
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Heslo k databázovému účtu "
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Potvrdit"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Jméno databáze"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Emailová adresa administrátora webu"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Požadavek o přátelství / kontaktování"
+
+#: ../../mod/dfrn_request.php:828
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Odpovězte, prosím, následující:"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Nastavení webu"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Zná Vás uživatel %s ?"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Přidat osobní poznámku:"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Cesta k \"PHP executable\""
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet / Federativní Sociální Web"
 
-#: ../../mod/install.php:326
+#: ../../mod/dfrn_request.php:838 ../../mod/settings.php:736
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../mod/dfrn_request.php:839
+#, php-format
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Příkazový řádek PHP"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Odeslat žádost"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Nalezena PHP verze:"
+#: ../../mod/update_profile.php:41 ../../mod/update_network.php:25
+#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
+#: ../../mod/update_notes.php:37
+msgid "[Embedded content - reload page to view]"
+msgstr "[Vložený obsah - obnovte stránku pro zobrazení]"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
+msgstr "Pohled v kontextu"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
+#: ../../mod/contacts.php:108
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d kontakt upraven."
+msgstr[1] "%d kontakty upraveny"
+msgstr[2] "%d kontaktů upraveno"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Toto je nutné pro fungování doručování zpráv."
+#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
+msgid "Could not access contact record."
+msgstr "Nelze získat přístup k záznamu kontaktu."
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/contacts.php:153
+msgid "Could not locate selected profile."
+msgstr "Nelze nalézt vybraný profil."
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
+#: ../../mod/contacts.php:186
+msgid "Contact updated."
+msgstr "Kontakt aktualizován."
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/contacts.php:287
+msgid "Contact has been blocked"
+msgstr "Kontakt byl zablokován"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Generovat kriptovací klíče"
+#: ../../mod/contacts.php:287
+msgid "Contact has been unblocked"
+msgstr "Kontakt byl odblokován"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP modul"
+#: ../../mod/contacts.php:298
+msgid "Contact has been ignored"
+msgstr "Kontakt bude ignorován"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP modul"
+#: ../../mod/contacts.php:298
+msgid "Contact has been unignored"
+msgstr "Kontakt přestal být ignorován"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP modul"
+#: ../../mod/contacts.php:310
+msgid "Contact has been archived"
+msgstr "Kontakt byl archivován"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP modul"
+#: ../../mod/contacts.php:310
+msgid "Contact has been unarchived"
+msgstr "Kontakt byl vrácen z archívu."
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP modul"
+#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
+msgid "Do you really want to delete this contact?"
+msgstr "Opravdu chcete smazat tento kontakt?"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite modul"
+#: ../../mod/contacts.php:352
+msgid "Contact has been removed."
+msgstr "Kontakt byl odstraněn."
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
+#: ../../mod/contacts.php:390
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Jste vzájemní přátelé s uživatelem %s"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
+#: ../../mod/contacts.php:394
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Sdílíte s uživatelem %s"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
+#: ../../mod/contacts.php:399
+#, php-format
+msgid "%s is sharing with you"
+msgstr "uživatel %s sdílí s vámi"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
+#: ../../mod/contacts.php:416
+msgid "Private communications are not available for this contact."
+msgstr "Soukromá komunikace není dostupná pro tento kontakt."
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
+#: ../../mod/contacts.php:423
+msgid "(Update was successful)"
+msgstr "(Aktualizace byla úspěšná)"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
+#: ../../mod/contacts.php:423
+msgid "(Update was not successful)"
+msgstr "(Aktualizace nebyla úspěšná)"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
+#: ../../mod/contacts.php:425
+msgid "Suggest friends"
+msgstr "Navrhněte přátelé"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
+#: ../../mod/contacts.php:429
+#, php-format
+msgid "Network type: %s"
+msgstr "Typ sítě: %s"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
+#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d sdílený kontakt"
+msgstr[1] "%d sdílených kontaktů"
+msgstr[2] "%d sdílených kontaktů"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
+#: ../../mod/contacts.php:437
+msgid "View all contacts"
+msgstr "Zobrazit všechny kontakty"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php je editovatelné"
+#: ../../mod/contacts.php:445
+msgid "Toggle Blocked status"
+msgstr "Přepnout stav Blokováno"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715
+msgid "Unignore"
+msgstr "Přestat ignorovat"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorovat"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
+#: ../../mod/contacts.php:451
+msgid "Toggle Ignored status"
+msgstr "Přepnout stav Ignorováno"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Unarchive"
+msgstr "Vrátit z archívu"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 je nastaven pro zápis"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Archive"
+msgstr "Archivovat"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
+#: ../../mod/contacts.php:458
+msgid "Toggle Archive status"
+msgstr "Přepnout stav Archivováno"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "Url rewrite je funkční."
+#: ../../mod/contacts.php:461
+msgid "Repair"
+msgstr "Opravit"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
+#: ../../mod/contacts.php:464
+msgid "Advanced Contact Settings"
+msgstr "Pokročilé nastavení kontaktu"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dál<h1>"
+#: ../../mod/contacts.php:470
+msgid "Communications lost with this contact!"
+msgstr "Komunikace s tímto kontaktem byla ztracena!"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
+#: ../../mod/contacts.php:473
+msgid "Contact Editor"
+msgstr "Editor kontaktu"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#: ../../mod/contacts.php:476
+msgid "Profile Visibility"
+msgstr "Viditelnost profilu"
+
+#: ../../mod/contacts.php:477
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Nebylo možné zjistit Vaši domácí lokaci."
+#: ../../mod/contacts.php:478
+msgid "Contact Information / Notes"
+msgstr "Kontaktní informace / poznámky"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Žádný příjemce."
+#: ../../mod/contacts.php:479
+msgid "Edit contact notes"
+msgstr "Editovat poznámky kontaktu"
 
-#: ../../mod/wallmessage.php:143
+#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
+#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
 #, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Navštivte profil uživatele %s [%s]"
+
+#: ../../mod/contacts.php:485
+msgid "Block/Unblock contact"
+msgstr "Blokovat / Odblokovat kontakt"
+
+#: ../../mod/contacts.php:486
+msgid "Ignore contact"
+msgstr "Ignorovat kontakt"
+
+#: ../../mod/contacts.php:487
+msgid "Repair URL settings"
+msgstr "Opravit nastavení adresy URL "
+
+#: ../../mod/contacts.php:488
+msgid "View conversations"
+msgstr "Zobrazit konverzace"
+
+#: ../../mod/contacts.php:490
+msgid "Delete contact"
+msgstr "Odstranit kontakt"
+
+#: ../../mod/contacts.php:494
+msgid "Last update:"
+msgstr "Poslední aktualizace:"
+
+#: ../../mod/contacts.php:496
+msgid "Update public posts"
+msgstr "Aktualizovat veřejné příspěvky"
+
+#: ../../mod/contacts.php:505
+msgid "Currently blocked"
+msgstr "V současnosti zablokováno"
+
+#: ../../mod/contacts.php:506
+msgid "Currently ignored"
+msgstr "V současnosti ignorováno"
+
+#: ../../mod/contacts.php:507
+msgid "Currently archived"
+msgstr "Aktuálně archivován"
+
+#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Skrýt tento kontakt před ostatními"
+
+#: ../../mod/contacts.php:508
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Nápověda:"
+#: ../../mod/contacts.php:509
+msgid "Notification for new posts"
+msgstr "Upozornění na nové příspěvky"
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Nápověda"
+#: ../../mod/contacts.php:509
+msgid "Send a notification of every new post of this contact"
+msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu"
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Nenalezen"
+#: ../../mod/contacts.php:510
+msgid "Fetch further information for feeds"
+msgstr "Načítat další informace pro kanál"
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Stránka nenalezena"
+#: ../../mod/contacts.php:511
+msgid "Disabled"
+msgstr "Zakázáno"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s vítá %2$s"
+#: ../../mod/contacts.php:511
+msgid "Fetch information"
+msgstr "Načítat informace"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Vítá Vás %s"
+#: ../../mod/contacts.php:511
+msgid "Fetch information and keywords"
+msgstr "Načítat informace a klíčová slova"
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"
+#: ../../mod/contacts.php:513
+msgid "Blacklisted keywords"
+msgstr "Zakázaná klíčová slova"
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Nebo - nenahrával jste prázdný soubor?"
+#: ../../mod/contacts.php:513
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\""
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Velikost souboru přesáhla limit %d"
+#: ../../mod/contacts.php:564
+msgid "Suggestions"
+msgstr "Doporučení"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Nahrání souboru se nezdařilo."
+#: ../../mod/contacts.php:567
+msgid "Suggest potential friends"
+msgstr "Navrhnout potenciální přátele"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Shoda profilu"
+#: ../../mod/contacts.php:570 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Všechny kontakty"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
+#: ../../mod/contacts.php:573
+msgid "Show all contacts"
+msgstr "Zobrazit všechny kontakty"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "zajímá se o:"
+#: ../../mod/contacts.php:576
+msgid "Unblocked"
+msgstr "Odblokován"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Spojit"
+#: ../../mod/contacts.php:579
+msgid "Only show unblocked contacts"
+msgstr "Zobrazit pouze neblokované kontakty"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "odkaz"
+#: ../../mod/contacts.php:583
+msgid "Blocked"
+msgstr "Blokován"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Není k dispozici."
+#: ../../mod/contacts.php:586
+msgid "Only show blocked contacts"
+msgstr "Zobrazit pouze blokované kontakty"
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Komunita"
+#: ../../mod/contacts.php:590
+msgid "Ignored"
+msgstr "Ignorován"
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:170 ../../mod/search.php:196
-msgid "No results."
-msgstr "Žádné výsledky."
+#: ../../mod/contacts.php:593
+msgid "Only show ignored contacts"
+msgstr "Zobrazit pouze ignorované kontakty"
+
+#: ../../mod/contacts.php:597
+msgid "Archived"
+msgstr "Archivován"
+
+#: ../../mod/contacts.php:600
+msgid "Only show archived contacts"
+msgstr "Zobrazit pouze archivované kontakty"
+
+#: ../../mod/contacts.php:604
+msgid "Hidden"
+msgstr "Skrytý"
+
+#: ../../mod/contacts.php:607
+msgid "Only show hidden contacts"
+msgstr "Zobrazit pouze skryté kontakty"
+
+#: ../../mod/contacts.php:655
+msgid "Mutual Friendship"
+msgstr "Vzájemné přátelství"
+
+#: ../../mod/contacts.php:659
+msgid "is a fan of yours"
+msgstr "je Váš fanoušek"
+
+#: ../../mod/contacts.php:663
+msgid "you are a fan of"
+msgstr "jste fanouškem"
+
+#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Editovat kontakt"
+
+#: ../../mod/contacts.php:706
+msgid "Search your contacts"
+msgstr "Prohledat Vaše kontakty"
+
+#: ../../mod/contacts.php:713 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
+msgstr "Aktualizace"
 
 #: ../../mod/settings.php:29 ../../mod/photos.php:80
 msgid "everybody"
@@ -3731,11 +4039,6 @@ msgstr "Další Funkčnosti"
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Vestavěná podpora pro připojení s %s je %s"
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
 #: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "enabled"
 msgstr "povoleno"
@@ -3923,18 +4226,6 @@ msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publikovat Váš výchozí profil v místním adresáři webu?"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:627
-#: ../../mod/profiles.php:631 ../../mod/api.php:106
-msgid "No"
-msgstr "Ne"
-
 #: ../../mod/settings.php:1016
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?"
@@ -3951,7 +4242,7 @@ msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
-msgstr ""
+msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí."
 
 #: ../../mod/settings.php:1033
 msgid "Allow friends to post to your profile page?"
@@ -3973,6 +4264,10 @@ msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?"
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil <strong>není zveřejněn</strong>."
 
+#: ../../mod/settings.php:1062 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "nebo"
+
 #: ../../mod/settings.php:1067
 msgid "Your Identity Address is"
 msgstr "Vaše adresa identity je"
@@ -4177,7 +4472,7 @@ msgstr "Pouze textové notifikační e-maily"
 
 #: ../../mod/settings.php:1187
 msgid "Send text only notification emails, without the html part"
-msgstr ""
+msgstr "Posílat pouze textové notifikační e-maily, bez html části."
 
 #: ../../mod/settings.php:1189
 msgid "Advanced Account/Page Type Settings"
@@ -4201,914 +4496,806 @@ msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vaši
 msgid "Resend relocate message to contacts"
 msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Toto pozvání již bylo přijato."
-
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil smazán."
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nový profil vytvořen."
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d požadovaný parametr nebyl nalezen na daném místě"
-msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
-msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profil není možné naklonovat."
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Představení dokončeno."
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Jméno profilu je povinné."
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Neopravitelná chyba protokolu"
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Rodinný Stav"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil není k dispozici."
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Romatický partner"
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Libí se mi"
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Ochrana proti spamu byla aktivována"
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Nelibí se mi"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Práce/Zaměstnání"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Neplatný odkaz"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Náboženství"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Neplatná emailová adresa"
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Politické přesvědčení"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Pohlaví"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese."
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Sexuální orientace"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Již jste se zde zavedli."
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Domácí stránka"
 
-#: ../../mod/dfrn_request.php:480
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Zřejmě jste již přátelé se %s."
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:683
+msgid "Interests"
+msgstr "Zájmy"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Neplatné URL profilu."
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Adresa"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nepovolené URL profilu."
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:679
+msgid "Location"
+msgstr "Lokace"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Vaše žádost o propojení byla odeslána."
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profil aktualizován."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
+#: ../../mod/profiles.php:553
+msgid " and "
+msgstr " a "
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
+#: ../../mod/profiles.php:561
+msgid "public profile"
+msgstr "veřejný profil"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Skrýt tento kontakt"
+#: ../../mod/profiles.php:564
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s změnil %2$s na &ldquo;%3$s&rdquo;"
 
-#: ../../mod/dfrn_request.php:674
+#: ../../mod/profiles.php:565
 #, php-format
-msgid "Welcome home %s."
-msgstr "Vítejte doma %s."
+msgid " - Visit %1$s's %2$s"
+msgstr " - Navštivte %2$s uživatele %1$s"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/profiles.php:568
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Prosím potvrďte Vaši žádost o propojení %s."
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s aktualizoval %2$s, změnou %3$s."
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Potvrdit"
+#: ../../mod/profiles.php:643
+msgid "Hide contacts and friends:"
+msgstr "Skrýt kontakty a přátele:"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
+#: ../../mod/profiles.php:648
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>."
+#: ../../mod/profiles.php:670
+msgid "Edit Profile Details"
+msgstr "Upravit podrobnosti profilu "
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Požadavek o přátelství / kontaktování"
+#: ../../mod/profiles.php:672
+msgid "Change Profile Photo"
+msgstr "Změna Profilové fotky"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/profiles.php:673
+msgid "View this profile"
+msgstr "Zobrazit tento profil"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Odpovězte, prosím, následující:"
+#: ../../mod/profiles.php:674
+msgid "Create a new profile using these settings"
+msgstr "Vytvořit nový profil pomocí tohoto nastavení"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "Zná Vás uživatel %s ?"
+#: ../../mod/profiles.php:675
+msgid "Clone this profile"
+msgstr "Klonovat tento profil"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Přidat osobní poznámku:"
+#: ../../mod/profiles.php:676
+msgid "Delete this profile"
+msgstr "Smazat tento profil"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/profiles.php:677
+msgid "Basic information"
+msgstr "Základní informace"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet / Federativní Sociální Web"
+#: ../../mod/profiles.php:678
+msgid "Profile picture"
+msgstr "Profilový obrázek"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
+#: ../../mod/profiles.php:680
+msgid "Preferences"
+msgstr "Nastavení"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
+#: ../../mod/profiles.php:681
+msgid "Status information"
+msgstr "Statusové informace"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Odeslat žádost"
+#: ../../mod/profiles.php:682
+msgid "Additional information"
+msgstr "Dodatečné informace"
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
+#: ../../mod/profiles.php:685
+msgid "Profile Name:"
+msgstr "Jméno profilu:"
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr ""
+#: ../../mod/profiles.php:686
+msgid "Your Full Name:"
+msgstr "Vaše celé jméno:"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Vaši registraci nelze zpracovat."
+#: ../../mod/profiles.php:687
+msgid "Title/Description:"
+msgstr "Název / Popis:"
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
-msgstr "Vaše registrace čeká na schválení vlastníkem serveru."
+#: ../../mod/profiles.php:688
+msgid "Your Gender:"
+msgstr "Vaše pohlaví:"
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
+#: ../../mod/profiles.php:689
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Narozeniny uživatele (%s):"
 
-#: ../../mod/register.php:214
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."
+#: ../../mod/profiles.php:690
+msgid "Street Address:"
+msgstr "Ulice:"
 
-#: ../../mod/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
+#: ../../mod/profiles.php:691
+msgid "Locality/City:"
+msgstr "Město:"
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Vaše OpenID (nepovinné): "
+#: ../../mod/profiles.php:692
+msgid "Postal/Zip Code:"
+msgstr "PSČ:"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
+#: ../../mod/profiles.php:693
+msgid "Country:"
+msgstr "Země:"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "Členství na tomto webu je pouze na pozvání."
+#: ../../mod/profiles.php:694
+msgid "Region/State:"
+msgstr "Region / stát:"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "Vaše pozvání ID:"
+#: ../../mod/profiles.php:695
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vaše celé jméno (např. Jan Novák):"
+#: ../../mod/profiles.php:696
+msgid "Who: (if applicable)"
+msgstr "Kdo: (pokud je možné)"
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Vaše e-mailová adresa:"
+#: ../../mod/profiles.php:697
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@$sitename</strong>\"."
+#: ../../mod/profiles.php:698
+msgid "Since [date]:"
+msgstr "Od [data]:"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Vyberte přezdívku:"
+#: ../../mod/profiles.php:699 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Sexuální preference:"
 
-#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
-msgid "Register"
-msgstr "Registrovat"
+#: ../../mod/profiles.php:700
+msgid "Homepage URL:"
+msgstr "Odkaz na domovskou stránku:"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/profiles.php:701 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Rodné město"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Import Vašeho profilu do této friendica instance"
+#: ../../mod/profiles.php:702 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Politické přesvědčení:"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Systém vypnut z důvodů údržby"
+#: ../../mod/profiles.php:703
+msgid "Religious Views:"
+msgstr "Náboženské přesvědčení:"
 
-#: ../../mod/search.php:99 ../../include/text.php:952
-#: ../../include/text.php:953 ../../include/nav.php:119
-msgid "Search"
-msgstr "Vyhledávání"
+#: ../../mod/profiles.php:704
+msgid "Public Keywords:"
+msgstr "Veřejná klíčová slova:"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Globální adresář"
+#: ../../mod/profiles.php:705
+msgid "Private Keywords:"
+msgstr "Soukromá klíčová slova:"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Nalézt na tomto webu"
+#: ../../mod/profiles.php:706 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Líbí se:"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Adresář serveru"
+#: ../../mod/profiles.php:707 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Nelibí se:"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:716
-msgid "Age: "
-msgstr "Věk: "
+#: ../../mod/profiles.php:708
+msgid "Example: fishing photography software"
+msgstr "Příklad: fishing photography software"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Pohlaví: "
+#: ../../mod/profiles.php:709
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
 
-#: ../../mod/directory.php:138 ../../boot.php:1645
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Pohlaví:"
+#: ../../mod/profiles.php:710
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
 
-#: ../../mod/directory.php:140 ../../boot.php:1648
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/profiles.php:711
+msgid "Tell us about yourself..."
+msgstr "Řekněte nám něco o sobě ..."
 
-#: ../../mod/directory.php:142 ../../boot.php:1650
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Domácí stránka:"
+#: ../../mod/profiles.php:712
+msgid "Hobbies/Interests"
+msgstr "Koníčky/zájmy"
 
-#: ../../mod/directory.php:144 ../../boot.php:1652
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "O mě:"
+#: ../../mod/profiles.php:713
+msgid "Contact information and Social Networks"
+msgstr "Kontaktní informace a sociální sítě"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Žádné záznamy (některé položky mohou být skryty)."
+#: ../../mod/profiles.php:714
+msgid "Musical interests"
+msgstr "Hudební vkus"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Žádní potenciální delegáti stránky nenalezeni."
+#: ../../mod/profiles.php:715
+msgid "Books, literature"
+msgstr "Knihy, literatura"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:168
-msgid "Delegate Page Management"
-msgstr "Správa delegátů stránky"
+#: ../../mod/profiles.php:716
+msgid "Television"
+msgstr "Televize"
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
+#: ../../mod/profiles.php:717
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/tanec/kultura/zábava"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Stávající správci stránky"
+#: ../../mod/profiles.php:718
+msgid "Love/romance"
+msgstr "Láska/romantika"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Stávající delegáti stránky "
+#: ../../mod/profiles.php:719
+msgid "Work/employment"
+msgstr "Práce/zaměstnání"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potenciální delegáti"
+#: ../../mod/profiles.php:720
+msgid "School/education"
+msgstr "Škola/vzdělání"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Přidat"
+#: ../../mod/profiles.php:725
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Žádné záznamy."
+#: ../../mod/profiles.php:788
+msgid "Edit/Manage Profiles"
+msgstr "Upravit / Spravovat profily"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Společní přátelé"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Skupina vytvořena."
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Žádné společné kontakty."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Nelze vytvořit skupinu."
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Exportovat účet"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Skupina nenalezena."
 
-#: ../../mod/uexport.php:77
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server."
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Název skupiny byl změněn."
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
-msgstr "Exportovat vše"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Uložit Skupinu"
 
-#: ../../mod/uexport.php:78
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Vytvořit skupinu kontaktů / přátel."
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s je právě %2$s"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Název skupiny: "
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Nálada"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Skupina odstraněna. "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Nelze odstranit skupinu."
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Opravdu chcete smazat tento návrh?"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Editor skupin"
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Návrhy přátel"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Členové"
 
-#: ../../mod/suggest.php:74
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "Klikněte na kontakt pro přidání nebo odebrání"
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorovat / skrýt"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Zdrojový text (bbcode):"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil smazán."
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Zdrojový vstup: "
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nový profil vytvořen."
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profil není možné naklonovat."
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../mod/profiles.php:172
-msgid "Profile Name is required."
-msgstr "Jméno profilu je povinné."
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../mod/profiles.php:323
-msgid "Marital Status"
-msgstr "Rodinný Stav"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/profiles.php:327
-msgid "Romantic Partner"
-msgstr "Romatický partner"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/profiles.php:331
-msgid "Likes"
-msgstr "Libí se mi"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/profiles.php:335
-msgid "Dislikes"
-msgstr "Nelibí se mi"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/profiles.php:339
-msgid "Work/Employment"
-msgstr "Práce/Zaměstnání"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Vstupní data (ve formátu Diaspora): "
 
-#: ../../mod/profiles.php:342
-msgid "Religion"
-msgstr "Náboženství"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/profiles.php:346
-msgid "Political Views"
-msgstr "Politické přesvědčení"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Není k dispozici."
 
-#: ../../mod/profiles.php:350
-msgid "Gender"
-msgstr "Pohlaví"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt přidán"
 
-#: ../../mod/profiles.php:354
-msgid "Sexual Preference"
-msgstr "Sexuální orientace"
+#: ../../mod/notify.php:75 ../../mod/notifications.php:336
+msgid "No more system notifications."
+msgstr "Žádné další systémová upozornění."
 
-#: ../../mod/profiles.php:358
-msgid "Homepage"
-msgstr "Domácí stránka"
+#: ../../mod/notify.php:79 ../../mod/notifications.php:340
+msgid "System Notifications"
+msgstr "Systémová upozornění"
 
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
-msgid "Interests"
-msgstr "Zájmy"
+#: ../../mod/message.php:9 ../../include/nav.php:162
+msgid "New Message"
+msgstr "Nová zpráva"
 
-#: ../../mod/profiles.php:366
-msgid "Address"
-msgstr "Adresa"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Nepodařilo se najít kontaktní informace."
 
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
-msgid "Location"
-msgstr "Lokace"
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
+msgstr "Zprávy"
 
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
-msgstr "Profil aktualizován."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Opravdu chcete smazat tuto zprávu?"
 
-#: ../../mod/profiles.php:534
-msgid " and "
-msgstr " a "
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Zpráva odstraněna."
 
-#: ../../mod/profiles.php:542
-msgid "public profile"
-msgstr "veřejný profil"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Konverzace odstraněna."
 
-#: ../../mod/profiles.php:545
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s změnil %2$s na &ldquo;%3$s&rdquo;"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Žádné zprávy."
 
-#: ../../mod/profiles.php:546
+#: ../../mod/message.php:378
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Navštivte %2$s uživatele %1$s"
+msgid "Unknown sender - %s"
+msgstr "Neznámý odesilatel - %s"
 
-#: ../../mod/profiles.php:549
+#: ../../mod/message.php:381
 #, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s aktualizoval %2$s, změnou %3$s."
-
-#: ../../mod/profiles.php:624
-msgid "Hide contacts and friends:"
-msgstr "Skrýt kontakty a přátele:"
-
-#: ../../mod/profiles.php:629
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
+msgid "You and %s"
+msgstr "Vy a %s"
 
-#: ../../mod/profiles.php:651
-msgid "Edit Profile Details"
-msgstr "Upravit podrobnosti profilu "
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s a Vy"
 
-#: ../../mod/profiles.php:653
-msgid "Change Profile Photo"
-msgstr "Změna Profilové fotky"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Odstranit konverzaci"
 
-#: ../../mod/profiles.php:654
-msgid "View this profile"
-msgstr "Zobrazit tento profil"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D M R - g:i A"
 
-#: ../../mod/profiles.php:655
-msgid "Create a new profile using these settings"
-msgstr "Vytvořit nový profil pomocí tohoto nastavení"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d zpráva"
+msgstr[1] "%d zprávy"
+msgstr[2] "%d zpráv"
 
-#: ../../mod/profiles.php:656
-msgid "Clone this profile"
-msgstr "Klonovat tento profil"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Zpráva není k dispozici."
 
-#: ../../mod/profiles.php:657
-msgid "Delete this profile"
-msgstr "Smazat tento profil"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Smazat zprávu"
 
-#: ../../mod/profiles.php:658
-msgid "Basic information"
-msgstr "Základní informace"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
 
-#: ../../mod/profiles.php:659
-msgid "Profile picture"
-msgstr "Profilový obrázek"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Poslat odpověď"
 
-#: ../../mod/profiles.php:661
-msgid "Preferences"
-msgstr "Nastavení"
+#: ../../mod/like.php:168 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s nemá rád %2$s na %3$s"
 
-#: ../../mod/profiles.php:662
-msgid "Status information"
-msgstr "Statusové informace"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Příspěvek úspěšně odeslán"
 
-#: ../../mod/profiles.php:663
-msgid "Additional information"
-msgstr "Dodatečné informace"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:148
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/profiles.php:666
-msgid "Profile Name:"
-msgstr "Jméno profilu:"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Časová konverze"
 
-#: ../../mod/profiles.php:667
-msgid "Your Full Name:"
-msgstr "Vaše celé jméno:"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
 
-#: ../../mod/profiles.php:668
-msgid "Title/Description:"
-msgstr "Název / Popis:"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC čas: %s"
 
-#: ../../mod/profiles.php:669
-msgid "Your Gender:"
-msgstr "Vaše pohlaví:"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuální časové pásmo: %s"
 
-#: ../../mod/profiles.php:670
+#: ../../mod/localtime.php:36
 #, php-format
-msgid "Birthday (%s):"
-msgstr "Narozeniny uživatele (%s):"
+msgid "Converted localtime: %s"
+msgstr "Převedený lokální čas : %s"
 
-#: ../../mod/profiles.php:671
-msgid "Street Address:"
-msgstr "Ulice:"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Prosím, vyberte své časové pásmo:"
 
-#: ../../mod/profiles.php:672
-msgid "Locality/City:"
-msgstr "Město:"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
+msgstr "Uložit do složky:"
 
-#: ../../mod/profiles.php:673
-msgid "Postal/Zip Code:"
-msgstr "PSČ:"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- vyber -"
 
-#: ../../mod/profiles.php:674
-msgid "Country:"
-msgstr "Země:"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Neplatný identifikátor profilu."
 
-#: ../../mod/profiles.php:675
-msgid "Region/State:"
-msgstr "Region / stát:"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor viditelnosti profilu "
 
-#: ../../mod/profiles.php:676
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Viditelný pro"
 
-#: ../../mod/profiles.php:677
-msgid "Who: (if applicable)"
-msgstr "Kdo: (pokud je možné)"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
 
-#: ../../mod/profiles.php:678
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Žádné kontakty."
 
-#: ../../mod/profiles.php:679
-msgid "Since [date]:"
-msgstr "Od [data]:"
+#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
+msgid "View Contacts"
+msgstr "Zobrazit kontakty"
 
-#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Sexuální preference:"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Vyhledávání lidí"
 
-#: ../../mod/profiles.php:681
-msgid "Homepage URL:"
-msgstr "Odkaz na domovskou stránku:"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Žádné shody"
 
-#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Rodné město"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Nahrát nové fotografie"
 
-#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politické přesvědčení:"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontakt byl zablokován"
 
-#: ../../mod/profiles.php:684
-msgid "Religious Views:"
-msgstr "Náboženské přesvědčení:"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album nenalezeno."
 
-#: ../../mod/profiles.php:685
-msgid "Public Keywords:"
-msgstr "Veřejná klíčová slova:"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Smazat album"
 
-#: ../../mod/profiles.php:686
-msgid "Private Keywords:"
-msgstr "Soukromá klíčová slova:"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
 
-#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Líbí se:"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Smazat fotografii"
 
-#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Nelibí se:"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Opravdu chcete smazat tuto fotografii?"
 
-#: ../../mod/profiles.php:689
-msgid "Example: fishing photography software"
-msgstr "Příklad: fishing photography software"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s byl označen v %2$s uživatelem %3$s"
 
-#: ../../mod/profiles.php:690
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "fotografie"
 
-#: ../../mod/profiles.php:691
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "Velikost obrázku překračuje limit velikosti"
 
-#: ../../mod/profiles.php:692
-msgid "Tell us about yourself..."
-msgstr "Řekněte nám něco o sobě ..."
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Soubor obrázku je prázdný."
 
-#: ../../mod/profiles.php:693
-msgid "Hobbies/Interests"
-msgstr "Koníčky/zájmy"
+#: ../../mod/photos.php:807 ../../mod/wall_upload.php:144
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Obrázek není možné zprocesovat"
 
-#: ../../mod/profiles.php:694
-msgid "Contact information and Social Networks"
-msgstr "Kontaktní informace a sociální sítě"
+#: ../../mod/photos.php:834 ../../mod/wall_upload.php:172
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Nahrání obrázku selhalo."
 
-#: ../../mod/profiles.php:695
-msgid "Musical interests"
-msgstr "Hudební vkus"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Není vybrána žádná fotografie"
 
-#: ../../mod/profiles.php:696
-msgid "Books, literature"
-msgstr "Knihy, literatura"
+#: ../../mod/photos.php:1031 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Přístup k této položce je omezen."
 
-#: ../../mod/profiles.php:697
-msgid "Television"
-msgstr "Televize"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
 
-#: ../../mod/profiles.php:698
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/tanec/kultura/zábava"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Nahrání fotografií "
 
-#: ../../mod/profiles.php:699
-msgid "Love/romance"
-msgstr "Láska/romantika"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Název nového alba: "
 
-#: ../../mod/profiles.php:700
-msgid "Work/employment"
-msgstr "Práce/zaměstnání"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "nebo stávající název alba: "
 
-#: ../../mod/profiles.php:701
-msgid "School/education"
-msgstr "Škola/vzdělání"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Nezobrazovat stav pro tento upload"
 
-#: ../../mod/profiles.php:706
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Oprávnění:"
 
-#: ../../mod/profiles.php:769
-msgid "Edit/Manage Profiles"
-msgstr "Upravit / Spravovat profily"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Soukromé Fotografie"
 
-#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
-msgid "Change profile photo"
-msgstr "Změnit profilovou fotografii"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Veřejné Fotografie"
 
-#: ../../mod/profiles.php:771 ../../boot.php:1607
-msgid "Create New Profile"
-msgstr "Vytvořit nový profil"
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Edituj album"
 
-#: ../../mod/profiles.php:782 ../../boot.php:1617
-msgid "Profile Image"
-msgstr "Profilový obrázek"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Zobrazit nejprve nejnovější:"
 
-#: ../../mod/profiles.php:784 ../../boot.php:1620
-msgid "visible to everybody"
-msgstr "viditelné pro všechny"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Zobrazit nejprve nejstarší:"
 
-#: ../../mod/profiles.php:785 ../../boot.php:1621
-msgid "Edit visibility"
-msgstr "Upravit viditelnost"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Zobraz fotografii"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Položka nenalezena"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Upravit příspěvek"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Fotografie není k dispozici"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "nahrát fotky"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Zobrazit obrázek"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Přiložit soubor"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Editovat fotografii"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "přidat soubor"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Použít jako profilovou fotografii"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "webový odkaz"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Zobrazit v plné velikosti"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Zadejte odkaz na video"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Štítky: "
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "odkaz na video"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Odstranit všechny štítky]"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Zadejte odkaz na zvukový záznam"
-
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "odkaz na audio"
-
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Nastavte vaši polohu"
-
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "nastavit místo"
-
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Odstranit adresu v prohlížeči"
-
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "vymazat místo"
-
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Nastavení oprávnění"
-
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "skrytá kopie: e-mailové adresy"
-
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Veřejný příspěvek"
-
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Nastavit titulek"
-
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Kategorie (čárkou oddělený seznam)"
-
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Příklad: bob@example.com, mary@example.com"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Rotovat po směru hodinových ručiček (doprava)"
 
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
-msgstr "Toto je Friendica, verze"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Rotovat proti směru hodinových ručiček (doleva)"
 
-#: ../../mod/friendica.php:63
-msgid "running at web location"
-msgstr "běžící na webu"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Nové jméno alba"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>."
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Titulek"
 
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
-msgstr "Pro hlášení chyb a námětů na změny navštivte:"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Přidat štítek"
 
-#: ../../mod/friendica.php:68
+#: ../../mod/photos.php:1512
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"
-
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
-msgstr "Instalované pluginy/doplňky/aplikace:"
-
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
-msgstr "Nejsou žádné nainstalované doplňky/aplikace"
-
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Povolit připojení aplikacím"
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Soukromé fotografie"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Pro pokračování se prosím přihlaste."
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Veřejné fotografie"
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
+msgstr "Sdílet"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Vzdálené soukromé informace nejsou k dispozici."
+#: ../../mod/photos.php:1808 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Zobrazit album"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Viditelné pro:"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Aktuální fotografie"
 
-#: ../../mod/notes.php:44 ../../boot.php:2145
-msgid "Personal Notes"
-msgstr "Osobní poznámky"
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Nebo - nenahrával jste prázdný soubor?"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Časová konverze"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Velikost souboru přesáhla limit %d"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Nahrání souboru se nezdařilo."
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC čas: %s"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Není vybráno žádné video"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuální časové pásmo: %s"
+#: ../../mod/videos.php:301 ../../include/text.php:1405
+msgid "View Video"
+msgstr "Zobrazit video"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Převedený lokální čas : %s"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Aktuální Videa"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Prosím, vyberte své časové pásmo:"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Nahrát nová videa"
 
 #: ../../mod/poke.php:192
 msgid "Poke/Prod"
@@ -5130,1034 +5317,930 @@ msgstr "Vyberte, co si přejete příjemci udělat"
 msgid "Make this post private"
 msgstr "Změnit tento příspěvek na soukromý"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Celkový limit pozvánek byl překročen"
-
-#: ../../mod/invite.php:49
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : není platná e-mailová adresa."
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s následuje %3$s uživatele %2$s"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Prosím přidejte se k nám na Friendice"
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exportovat účet"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Doručení zprávy se nezdařilo."
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Exportovat vše"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d zpráva odeslána."
-msgstr[1] "%d zprávy odeslány."
-msgstr[2] "%d zprávy odeslány."
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Nemáte k dispozici žádné další pozvánky"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Společní přátelé"
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Žádné společné kontakty."
 
-#: ../../mod/invite.php:122
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
 #, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
+msgid "Image exceeds size limit of %d"
+msgstr "Obrázek překročil limit velikosti %d"
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."
+#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178
+#: ../../mod/wall_upload.php:185 ../../mod/item.php:484
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Fotografie na zdi"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
-
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Poslat pozvánky"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Zadejte e-mailové adresy, jednu na řádek:"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Nepodařilo se snížit velikost obrázku [%s]."
 
-#: ../../mod/invite.php:135
+#: ../../mod/profile_photo.php:118
 msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Budete muset zadat kód této pozvánky: $invite_code"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Obrázek nelze zpracovat "
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Nahrát soubor:"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Vybrat profil:"
 
-#: ../../mod/photos.php:52 ../../boot.php:2124
-msgid "Photo Albums"
-msgstr "Fotoalba"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Nahrát"
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Fotogalerie kontaktu"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "přeskočit tento krok "
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Nahrát nové fotografie"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "Vybrat fotografii z Vašich fotoalb"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontakt byl zablokován"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Oříznout obrázek"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album nenalezeno."
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Smazat album"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Editace dokončena"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Obrázek byl úspěšně nahrán."
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Smazat fotografii"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplikace"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Opravdu chcete smazat tuto fotografii?"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Žádné nainstalované aplikace."
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s byl označen v %2$s uživatelem %3$s"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Zde není nic nového"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "fotografie"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Smazat notifikace"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "Velikost obrázku překračuje limit velikosti"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Shoda profilu"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Soubor obrázku je prázdný."
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Není vybrána žádná fotografie"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "zajímá se o:"
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Štítek odstraněn"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Nahrání fotografií "
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Odebrat štítek položky"
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Název nového alba: "
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Vyberte štítek k odebrání: "
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "nebo stávající název alba: "
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
+msgstr "Odstranit"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Nezobrazovat stav pro tento upload"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Název události a datum začátku jsou vyžadovány."
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Oprávnění:"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Soukromé Fotografie"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editovat událost"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Veřejné Fotografie"
+#: ../../mod/events.php:335 ../../include/text.php:1647
+#: ../../include/text.php:1657
+msgid "link to source"
+msgstr "odkaz na zdroj"
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Edituj album"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Vytvořit novou událost"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Zobrazit nejprve nejnovější:"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Předchozí"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Zobrazit nejprve nejstarší:"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hodina:minuta"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Zobraz fotografii"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detaily události"
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány."
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Fotografie není k dispozici"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Událost začíná:"
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Zobrazit obrázek"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Vyžadováno"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Editovat fotografii"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Datum/čas konce není zadán nebo není relevantní"
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Použít jako profilovou fotografii"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Akce končí:"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Zobrazit v plné velikosti"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Štítky: "
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Popis:"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Odstranit všechny štítky]"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Název:"
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Rotovat po směru hodinových ručiček (doprava)"
-
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Rotovat proti směru hodinových ručiček (doleva)"
-
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Nové jméno alba"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Sdílet tuto událost"
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Titulek"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Žádní potenciální delegáti stránky nenalezeni."
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Přidat štítek"
+#: ../../mod/delegate.php:130 ../../include/nav.php:168
+msgid "Delegate Page Management"
+msgstr "Správa delegátů stránky"
 
-#: ../../mod/photos.php:1512
+#: ../../mod/delegate.php:132
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Soukromé fotografie"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Stávající správci stránky"
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Veřejné fotografie"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Stávající delegáti stránky "
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Sdílet"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potenciální delegáti"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Aktuální fotografie"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Přidat"
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Účet schválen."
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Žádné záznamy."
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrace zrušena pro %s"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty, které nejsou členy skupiny"
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Přihlaste se, prosím."
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Soubory"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Přesunout účet"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systém vypnut z důvodů údržby"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Můžete importovat účet z jiného Friendica serveru."
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Odstranit můj účet"
 
-#: ../../mod/uimport.php:68
+#: ../../mod/removeme.php:47
 msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Prosím, zadejte své heslo pro ověření:"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Soubor s účtem"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Návrhy přátelství odeslány "
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Navrhněte přátelé"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Položka není k dispozici."
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Navrhněte přátelé pro uživatele %s"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Položka nebyla nalezena."
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
+msgstr "Nelze nalézt původní příspěvek."
 
-#: ../../boot.php:744
-msgid "Delete this item?"
-msgstr "Odstranit tuto položku?"
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
+msgstr "Prázdný příspěvek odstraněn."
 
-#: ../../boot.php:747
-msgid "show fewer"
-msgstr "zobrazit méně"
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
+msgstr "Chyba systému. Příspěvek nebyl uložen."
 
-#: ../../boot.php:1117
+#: ../../mod/item.php:964
 #, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
-
-#: ../../boot.php:1235
-msgid "Create a New Account"
-msgstr "Vytvořit nový účet"
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
 
-#: ../../boot.php:1260 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Odhlásit se"
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Můžete je navštívit online na adrese %s"
 
-#: ../../boot.php:1261 ../../include/nav.php:92
-msgid "Login"
-msgstr "Přihlásit se"
+#: ../../mod/item.php:967
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
 
-#: ../../boot.php:1263
-msgid "Nickname or Email address: "
-msgstr "Přezdívka nebo e-mailová adresa:"
+#: ../../mod/item.php:971
+#, php-format
+msgid "%s posted an update."
+msgstr "%s poslal aktualizaci."
 
-#: ../../boot.php:1264
-msgid "Password: "
-msgstr "Heslo: "
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} chce být Vaším přítelem"
 
-#: ../../boot.php:1265
-msgid "Remember me"
-msgstr "Pamatuj si mne"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} vám poslal zprávu"
 
-#: ../../boot.php:1268
-msgid "Or login using OpenID: "
-msgstr "Nebo přihlášení pomocí OpenID: "
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} požaduje registraci"
 
-#: ../../boot.php:1274
-msgid "Forgot your password?"
-msgstr "Zapomněli jste své heslo?"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} komentoval příspěvek uživatele %s"
 
-#: ../../boot.php:1277
-msgid "Website Terms of Service"
-msgstr "Podmínky použití serveru"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} má rád příspěvek uživatele %s"
 
-#: ../../boot.php:1278
-msgid "terms of service"
-msgstr "podmínky použití"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} nemá rád příspěvek uživatele %s"
 
-#: ../../boot.php:1280
-msgid "Website Privacy Policy"
-msgstr "Pravidla ochrany soukromí serveru"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} se skamarádil s %s"
 
-#: ../../boot.php:1281
-msgid "privacy policy"
-msgstr "Ochrana soukromí"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} zasláno"
 
-#: ../../boot.php:1414
-msgid "Requested account is not available."
-msgstr "Požadovaný účet není dostupný."
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} označen %s' příspěvek s #%s"
 
-#: ../../boot.php:1496 ../../boot.php:1630
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Upravit profil"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} vás zmínil v příspěvku"
 
-#: ../../boot.php:1595
-msgid "Message"
-msgstr "Zpráva"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
 
-#: ../../boot.php:1601 ../../include/nav.php:173
-msgid "Profiles"
-msgstr "Profily"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
 
-#: ../../boot.php:1601
-msgid "Manage/edit profiles"
-msgstr "Spravovat/upravit profily"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Přihlášení se nezdařilo."
 
-#: ../../boot.php:1701
-msgid "Network:"
-msgstr "Síť:"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Neplatný identifikátor požadavku."
 
-#: ../../boot.php:1731 ../../boot.php:1817
-msgid "g A l F d"
-msgstr "g A l F d"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Odstranit"
 
-#: ../../boot.php:1732 ../../boot.php:1818
-msgid "F d"
-msgstr "d. F"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Systém"
 
-#: ../../boot.php:1777 ../../boot.php:1858
-msgid "[today]"
-msgstr "[Dnes]"
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
+msgstr "Síť"
 
-#: ../../boot.php:1789
-msgid "Birthday Reminders"
-msgstr "Připomínka narozenin"
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
+msgstr "Představení"
 
-#: ../../boot.php:1790
-msgid "Birthdays this week:"
-msgstr "Narozeniny tento týden:"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zobrazit ignorované žádosti"
 
-#: ../../boot.php:1851
-msgid "[No description]"
-msgstr "[Žádný popis]"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Skrýt ignorované žádosti"
 
-#: ../../boot.php:1869
-msgid "Event Reminders"
-msgstr "Připomenutí událostí"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Typ oznámení: "
 
-#: ../../boot.php:1870
-msgid "Events this week:"
-msgstr "Události tohoto týdne:"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Návrh přátelství"
 
-#: ../../boot.php:2107 ../../include/nav.php:76
-msgid "Status"
-msgstr "Stav"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "navrhl %s"
 
-#: ../../boot.php:2110
-msgid "Status Messages and Posts"
-msgstr "Statusové zprávy a příspěvky "
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Zveřejnit aktivitu nového přítele."
 
-#: ../../boot.php:2117
-msgid "Profile Details"
-msgstr "Detaily profilu"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "je-li použitelné"
 
-#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Videa"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Vaši údajní známí: "
 
-#: ../../boot.php:2141
-msgid "Events and Calendar"
-msgstr "Události a kalendář"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ano"
 
-#: ../../boot.php:2148
-msgid "Only You Can See This"
-msgstr "Toto můžete vidět jen Vy"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "ne"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Tento záznam byl editován"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Schválit jako: "
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignorovat vlákno"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Přítel"
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "přestat ignorovat vlákno"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Sdílené"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "přepnout stav Ignorování"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fanoušek / obdivovatel"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "ignorován"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Přítel / žádost o připojení"
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Kategorie:"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nový následovník"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Vyplněn pod:"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Žádné představení."
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "přes"
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
+msgstr "Upozornění"
 
-#: ../../include/dbstructure.php:26
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
 #, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."
+msgid "%s liked %s's post"
+msgstr "Uživateli %s se líbí příspěvek uživatele %s"
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Chybová zpráva je\n[pre]%s[/pre]"
+msgid "%s disliked %s's post"
+msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Při vytváření databázových tabulek došlo k chybám."
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s se nyní přátelí s %s"
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr "Při provádění databázových změn došlo k chybám."
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
+msgstr "%s vytvořil nový příspěvek"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Odhlášen."
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s okomentoval příspěvek uživatele %s'"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
+msgstr "Žádné další síťové upozornění."
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Chybová zpráva byla:"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
+msgstr "Upozornění Sítě"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Přidat nový kontakt"
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
+msgstr "Žádné další osobní upozornění."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Zadejte adresu nebo umístění webu"
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
+msgstr "Osobní upozornění"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
+msgstr "Žádné další domácí upozornění."
 
-#: ../../include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "Pozvánka %d k dispozici"
-msgstr[1] "Pozvánky %d k dispozici"
-msgstr[2] "Pozvánky %d k dispozici"
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
+msgstr "Upozornění na vstupní straně"
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Nalézt lidi"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Celkový limit pozvánek byl překročen"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Zadejte jméno nebo zájmy"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : není platná e-mailová adresa."
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Připojit / Následovat"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Prosím přidejte se k nám na Friendice"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Příklady: Robert Morgenstein, rybaření"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Podobné zájmy"
-
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Náhodný Profil"
-
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Pozvat přátele"
-
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Sítě"
-
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Všechny sítě"
-
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Uložené složky"
-
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Všechno"
-
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Kategorie"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Obecné funkčnosti"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Vícenásobné profily"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Schopnost vytvořit vícenásobné profily"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Nastavení vytváření příspěvků"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Richtext Editor"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Povolit richtext editor"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Náhled příspěvku"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Doručení zprávy se nezdařilo."
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d zpráva odeslána."
+msgstr[1] "%d zprávy odeslány."
+msgstr[2] "%d zprávy odeslány."
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Automaticky zmíněná Fóra"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Nemáte k dispozici žádné další pozvánky"
 
-#: ../../include/features.php:33
+#: ../../mod/invite.php:120
+#, php-format
 msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"
-
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Síťové postranní widgety"
-
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Vyhledávat dle Data"
-
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Možnost označit příspěvky dle časového intervalu"
-
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Skupinový Filtr"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
-
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Síťový Filtr"
-
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
-
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Uložit kritéria vyhledávání pro znovupoužití"
-
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Síťové záložky"
-
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Osobní síťový záložka "
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
-
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Nová záložka síť"
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
-
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "záložka Síťové sdílené odkazy "
-
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
-
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Nástroje Příspěvků/Komentářů"
-
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Násobné mazání"
-
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Označit a smazat více "
-
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Editovat Odeslané příspěvky"
-
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
-
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Štítkování"
-
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Kategorie příspěvků"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Přidat kategorie k Vašim příspěvkům"
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Možnost řadit příspěvky do složek"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Označit příspěvky jako neoblíbené"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Poslat pozvánky"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Zadejte e-mailové adresy, jednu na řádek:"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Příspěvky s hvězdou"
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Možnost označit příspěvky s indikátorem hvězdy"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Budete muset zadat kód této pozvánky: $invite_code"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Utlumit upozornění na přísvěvky"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Možnost stlumit upozornění pro vlákno"
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Chybí URL adresa."
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Správa identit a / nebo stránek"
 
-#: ../../include/follow.php:59
+#: ../../mod/manage.php:107
 msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Vyberte identitu pro správu: "
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Vítá Vás %s"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Autor nebo jméno nenalezeno"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Přátelé uživatele %s"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Této adrese neodpovídá žádné URL prohlížeče."
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Žádní přátelé k zobrazení"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Přidat nový kontakt"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Zadejte adresu nebo umístění webu"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "Pozvánka %d k dispozici"
+msgstr[1] "Pozvánky %d k dispozici"
+msgstr[2] "Pozvánky %d k dispozici"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Nepodařilo se získat kontaktní informace."
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Nalézt lidi"
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "následující"
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Zadejte jméno nebo zájmy"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem."
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Připojit / Následovat"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Defaultní soukromá skrupina pro nové kontakty."
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Příklady: Robert Morgenstein, rybaření"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Všichni"
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Náhodný Profil"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "editovat"
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Sítě"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editovat skupinu"
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Všechny sítě"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Vytvořit novou skupinu"
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
+msgstr "Uložené složky"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakty, které nejsou v žádné skupině"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Všechno"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Různé"
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Kategorie"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "rok"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Klikněte zde pro aktualizaci."
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "měsíc"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Tato akce překročí limit nastavené Vaším předplatným."
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "den"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Tato akce není v rámci Vašeho předplatného dostupná."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nikdy"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1063
+#: ../../include/api.php:1065
+msgid "User not found."
+msgstr "Uživatel nenalezen"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "méně než před sekundou"
+#: ../../include/api.php:771
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "let"
+#: ../../include/api.php:790
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "měsíců"
+#: ../../include/api.php:809
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "týdnem"
+#: ../../include/api.php:1272
+msgid "There is no status with this id."
+msgstr "Není tu žádný status s tímto id."
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "týdny"
+#: ../../include/api.php:1342
+msgid "There is no conversation with this id."
+msgstr "Nemáme žádnou konverzaci s tímto id."
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "dnů"
+#: ../../include/api.php:1614
+msgid "Invalid request."
+msgstr "Neplatný požadavek."
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "hodina"
+#: ../../include/api.php:1625
+msgid "Invalid item."
+msgstr "Neplatná položka."
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "hodin"
+#: ../../include/api.php:1635
+msgid "Invalid action. "
+msgstr "Neplatná akce"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minuta"
+#: ../../include/api.php:1643
+msgid "DB error"
+msgstr "DB chyba"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minut"
+#: ../../include/network.php:895
+msgid "view full size"
+msgstr "zobrazit v plné velikosti"
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "sekunda"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:154
+msgid "Starts:"
+msgstr "Začíná:"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "sekund"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:162
+msgid "Finishes:"
+msgstr "Končí:"
 
-#: ../../include/datetime.php:305
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
 #, php-format
-msgid "%1$d %2$s ago"
-msgstr "před %1$d %2$s"
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'"
 
-#: ../../include/datetime.php:477 ../../include/items.php:2195
-#, php-format
-msgid "%s's birthday"
-msgstr "%s má narozeniny"
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
+msgid "(no subject)"
+msgstr "(Bez předmětu)"
 
-#: ../../include/datetime.php:478 ../../include/items.php:2196
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Veselé narozeniny %s"
+#: ../../include/notifier.php:796 ../../include/enotify.php:33
+#: ../../include/delivery.php:467
+msgid "noreply"
+msgstr "neodpovídat"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Viditelné pro všechny"
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Pozvánka je vyžadována."
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "zobrazit"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Pozvánka nemohla být ověřena."
 
-#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "nikdy nezobrazit"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Neplatný odkaz OpenID"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[bez předmětu]"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "následování zastaveno"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Chybová zpráva byla:"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Šťouchnout"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Zadejte prosím požadované informace."
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Zobrazit Status"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Použijte prosím kratší jméno."
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Zobrazit Profil"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Jméno je příliš krátké."
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Zobrazit Fotky"
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Zobrazit Příspěvky sítě"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Editovat Kontakty"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Neplatná e-mailová adresa."
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Odstranit kontakt"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Tento e-mail nelze použít."
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Poslat soukromou zprávu"
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Vítejte "
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Prosím nahrejte profilovou fotografii"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Vítejte zpět "
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
 
-#: ../../include/security.php:366
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
+
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
+
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Přátelé"
+
+#: ../../include/user.php:377
+#, php-format
 msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t"
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "událost"
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr ""
 
 #: ../../include/conversation.php:207
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr "%1$s šťouchnul %2$s"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1004
+#: ../../include/conversation.php:211 ../../include/text.php:1005
 msgid "poked"
 msgstr "šťouchnut"
 
@@ -6182,6 +6265,37 @@ msgstr "Smazat vybrané položky"
 msgid "Follow Thread"
 msgstr "Následovat vlákno"
 
+#: ../../include/conversation.php:876 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Zobrazit Status"
+
+#: ../../include/conversation.php:877 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Zobrazit Profil"
+
+#: ../../include/conversation.php:878 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Zobrazit Fotky"
+
+#: ../../include/conversation.php:879 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Zobrazit Příspěvky sítě"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Editovat Kontakty"
+
+#: ../../include/conversation.php:881 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Poslat soukromou zprávu"
+
+#: ../../include/conversation.php:882 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Šťouchnout"
+
 #: ../../include/conversation.php:944
 #, php-format
 msgid "%s likes this."
@@ -6270,39 +6384,76 @@ msgstr "Zveřejnit na Groups"
 msgid "Private post"
 msgstr "Soukromý příspěvek"
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "zobrazit v plné velikosti"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Odhlášen."
+
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Chyba dekódování uživatelského účtu"
+
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
+
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Chyba! Nelze ověřit přezdívku"
+
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Uživatel '%s' již na tomto serveru existuje!"
 
-#: ../../include/text.php:296
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Chyba vytváření uživatele"
+
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Chyba vytváření uživatelského účtu"
+
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakt nenaimporován"
+msgstr[1] "%d kontaktů nenaimporováno"
+msgstr[2] "%d kontakty nenaimporovány"
+
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
+
+#: ../../include/text.php:297
 msgid "newer"
 msgstr "novější"
 
-#: ../../include/text.php:298
+#: ../../include/text.php:299
 msgid "older"
 msgstr "starší"
 
-#: ../../include/text.php:303
+#: ../../include/text.php:304
 msgid "prev"
 msgstr "předchozí"
 
-#: ../../include/text.php:305
+#: ../../include/text.php:306
 msgid "first"
 msgstr "první"
 
-#: ../../include/text.php:337
+#: ../../include/text.php:338
 msgid "last"
 msgstr "poslední"
 
-#: ../../include/text.php:340
+#: ../../include/text.php:341
 msgid "next"
 msgstr "další"
 
-#: ../../include/text.php:854
+#: ../../include/text.php:855
 msgid "No contacts"
 msgstr "Žádné kontakty"
 
-#: ../../include/text.php:863
+#: ../../include/text.php:864
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
@@ -6310,472 +6461,616 @@ msgstr[0] "%d kontakt"
 msgstr[1] "%d kontaktů"
 msgstr[2] "%d kontaktů"
 
-#: ../../include/text.php:1004
+#: ../../include/text.php:1005
 msgid "poke"
 msgstr "šťouchnout"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "ping"
 msgstr "cinknout"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "pinged"
 msgstr "cinkut"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prod"
 msgstr "pobídnout"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prodded"
 msgstr "pobídnut"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slap"
 msgstr "dát facku"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slapped"
 msgstr "být uhozen"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "finger"
 msgstr "osahávat"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "fingered"
 msgstr "osaháván"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuff"
 msgstr "odmítnout"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuffed"
 msgstr "odmítnut"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1024
 msgid "happy"
 msgstr "šťasný"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1025
 msgid "sad"
 msgstr "smutný"
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1026
 msgid "mellow"
 msgstr "jemný"
 
-#: ../../include/text.php:1026
+#: ../../include/text.php:1027
 msgid "tired"
 msgstr "unavený"
 
-#: ../../include/text.php:1027
+#: ../../include/text.php:1028
 msgid "perky"
 msgstr "emergický"
 
-#: ../../include/text.php:1028
+#: ../../include/text.php:1029
 msgid "angry"
 msgstr "nazlobený"
 
-#: ../../include/text.php:1029
+#: ../../include/text.php:1030
 msgid "stupified"
 msgstr "otupen"
 
-#: ../../include/text.php:1030
+#: ../../include/text.php:1031
 msgid "puzzled"
 msgstr "popletený"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1032
 msgid "interested"
 msgstr "zajímavý"
 
-#: ../../include/text.php:1032
+#: ../../include/text.php:1033
 msgid "bitter"
 msgstr "hořký"
 
-#: ../../include/text.php:1033
+#: ../../include/text.php:1034
 msgid "cheerful"
 msgstr "radnostný"
 
-#: ../../include/text.php:1034
+#: ../../include/text.php:1035
 msgid "alive"
 msgstr "naživu"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1036
 msgid "annoyed"
 msgstr "otráven"
 
-#: ../../include/text.php:1036
+#: ../../include/text.php:1037
 msgid "anxious"
 msgstr "znepokojený"
 
-#: ../../include/text.php:1037
+#: ../../include/text.php:1038
 msgid "cranky"
 msgstr "mrzutý"
 
-#: ../../include/text.php:1038
+#: ../../include/text.php:1039
 msgid "disturbed"
 msgstr "vyrušen"
 
-#: ../../include/text.php:1039
+#: ../../include/text.php:1040
 msgid "frustrated"
 msgstr "frustrovaný"
 
-#: ../../include/text.php:1040
+#: ../../include/text.php:1041
 msgid "motivated"
 msgstr "motivovaný"
 
-#: ../../include/text.php:1041
+#: ../../include/text.php:1042
 msgid "relaxed"
 msgstr "uvolněný"
 
-#: ../../include/text.php:1042
+#: ../../include/text.php:1043
 msgid "surprised"
 msgstr "překvapený"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Monday"
 msgstr "Pondělí"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Tuesday"
 msgstr "Úterý"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Wednesday"
 msgstr "Středa"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Thursday"
 msgstr "Čtvrtek"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Friday"
 msgstr "Pátek"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Saturday"
 msgstr "Sobota"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Sunday"
 msgstr "Neděle"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "January"
 msgstr "Ledna"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "February"
 msgstr "Února"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "March"
 msgstr "Března"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "April"
 msgstr "Dubna"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "May"
 msgstr "Května"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "June"
 msgstr "Června"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "July"
 msgstr "Července"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "August"
 msgstr "Srpna"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "September"
 msgstr "Září"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "October"
 msgstr "Října"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "November"
 msgstr "Listopadu"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "December"
 msgstr "Prosinec"
 
-#: ../../include/text.php:1434
+#: ../../include/text.php:1437
 msgid "bytes"
 msgstr "bytů"
 
-#: ../../include/text.php:1458 ../../include/text.php:1470
+#: ../../include/text.php:1461 ../../include/text.php:1473
 msgid "Click to open/close"
 msgstr "Klikněte pro otevření/zavření"
 
-#: ../../include/text.php:1699 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "standardní"
-
-#: ../../include/text.php:1711
+#: ../../include/text.php:1714
 msgid "Select an alternate language"
 msgstr "Vyběr alternativního jazyka"
 
-#: ../../include/text.php:1967
+#: ../../include/text.php:1970
 msgid "activity"
 msgstr "aktivita"
 
-#: ../../include/text.php:1970
+#: ../../include/text.php:1973
 msgid "post"
 msgstr "příspěvek"
 
-#: ../../include/text.php:2138
+#: ../../include/text.php:2141
 msgid "Item filed"
 msgstr "Položka vyplněna"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
-#: ../../include/bbcode.php:1028
-msgid "Image/photo"
-msgstr "Obrázek/fotografie"
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Friendica Notifikace"
+
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Děkujeme, "
+
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrátor"
+
+#: ../../include/enotify.php:64
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
+
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s"
+
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s."
+
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s Vám poslal %2$s."
+
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "soukromá zpráva"
+
+#: ../../include/enotify.php:72
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
+
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]"
+
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]"
+
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]"
+
+#: ../../include/enotify.php:149
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s"
+
+#: ../../include/enotify.php:150
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."
+
+#: ../../include/enotify.php:153 ../../include/enotify.php:168
+#: ../../include/enotify.php:181 ../../include/enotify.php:194
+#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
+
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"
+
+#: ../../include/enotify.php:162
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s"
+
+#: ../../include/enotify.php:164
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]"
+
+#: ../../include/enotify.php:175
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Upozornění] %s Vás označil"
+
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s Vás označil na %2$s"
+
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]Vás označil[/url]."
+
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s nasdílel nový příspěvek"
+
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s nasdílel nový příspěvek na %2$s"
+
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]."
+
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
+
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s Vás šťouchnul na %2$s"
+
+#: ../../include/enotify.php:204
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]."
+
+#: ../../include/enotify.php:219
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Upozornění] %s označil Váš příspěvek"
+
+#: ../../include/enotify.php:220
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s označil Váš příspěvek na %2$s"
 
-#: ../../include/bbcode.php:528
+#: ../../include/enotify.php:221
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]"
 
-#: ../../include/bbcode.php:562
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Upozornění] Obdrženo přestavení"
+
+#: ../../include/enotify.php:233
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>"
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s"
 
-#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
-msgid "$1 wrote:"
-msgstr "$1 napsal:"
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s."
 
-#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
-msgid "Encrypted content"
-msgstr "Šifrovaný obsah"
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Můžete navštívit jejich profil na %s"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(Bez předmětu)"
+#: ../../include/enotify.php:239
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:31
-msgid "noreply"
-msgstr "neodpovídat"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí"
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'"
+msgid "%1$s is sharing with you at %2$s"
+msgstr "uživatel %1$s sdílí s vámi ma %2$s"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Neznámé | Nezařazeno"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Upozornění] Máte nového následovníka"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Okamžitě blokovat "
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Máte nového následovníka na %2$s : %1$s"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "pochybný, spammer, self-makerter"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Znám ho ale, ale bez rozhodnutí"
+#: ../../include/enotify.php:271
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, pravděpodobně neškodný"
+#: ../../include/enotify.php:272
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s."
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Renomovaný, má mou důvěru"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Jméno:"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Týdenně"
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Měsíčně"
+#: ../../include/enotify.php:281
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Upozornění] Spojení akceptováno"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]."
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Prosím navštivte %s  pokud chcete změnit tento vztah."
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/enotify.php:307
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../include/enotify.php:309
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Systém Friendica :Upozornění] registrační požadavek"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s"
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora konektor"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'."
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../include/enotify.php:327
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."
 
-#: ../../include/Scrape.php:593
+#: ../../include/Scrape.php:614
 msgid " on Last.fm"
 msgstr " na Last.fm"
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Začíná:"
-
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Končí:"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem."
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Defaultní soukromá skrupina pro nové kontakty."
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Všichni"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Narozeniny:"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editovat"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Věk:"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editovat skupinu"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "pro %1$d %2$s"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Vytvořit novou skupinu"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Štítky:"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakty, které nejsou v žádné skupině"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Náboženství:"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Chybí URL adresa."
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Koníčky/zájmy:"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktní informace a sociální sítě:"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Hudební vkus:"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Knihy, literatura:"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Autor nebo jméno nenalezeno"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televize:"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Této adrese neodpovídá žádné URL prohlížeče."
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/tanec/kultura/zábava:"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Láska/romance"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Práce/zaměstnání:"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Škola/vzdělávání:"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Klikněte zde pro aktualizaci."
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Nepodařilo se získat kontaktní informace."
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Tato akce překročí limit nastavené Vaším předplatným."
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "následující"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Tato akce není v rámci Vašeho předplatného dostupná."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[bez předmětu]"
 
 #: ../../include/nav.php:73
 msgid "End this session"
 msgstr "Konec této relace"
 
-#: ../../include/nav.php:76 ../../include/nav.php:146
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Vaše příspěvky a konverzace"
-
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Vaše profilová stránka"
-
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Vaše fotky"
-
 #: ../../include/nav.php:79
 msgid "Your videos"
 msgstr "Vaše videa"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Vaše události"
-
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Osobní poznámky"
-
 #: ../../include/nav.php:81
 msgid "Your personal notes"
 msgstr "Vaše osobní poznámky"
@@ -6896,920 +7191,727 @@ msgstr "Navigace"
 msgid "Site map"
 msgstr "Mapa webu"
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1062
-#: ../../include/api.php:1064
-msgid "User not found."
-msgstr "Uživatel nenalezen"
-
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:1271
-msgid "There is no status with this id."
-msgstr "Není tu žádný status s tímto id."
-
-#: ../../include/api.php:1341
-msgid "There is no conversation with this id."
-msgstr "Nemáme žádnou konverzaci s tímto id."
-
-#: ../../include/api.php:1613
-msgid "Invalid request."
-msgstr "Neplatný požadavek."
-
-#: ../../include/api.php:1624
-msgid "Invalid item."
-msgstr "Neplatná položka."
-
-#: ../../include/api.php:1634
-msgid "Invalid action. "
-msgstr "Neplatná akce"
-
-#: ../../include/api.php:1642
-msgid "DB error"
-msgstr "DB chyba"
-
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Pozvánka je vyžadována."
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Pozvánka nemohla být ověřena."
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Neplatný odkaz OpenID"
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Zadejte prosím požadované informace."
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Použijte prosím kratší jméno."
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Jméno je příliš krátké."
-
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
-
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
-
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Neplatná e-mailová adresa."
-
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Tento e-mail nelze použít."
-
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."
-
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
-
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."
-
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
-
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Přátelé"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Narozeniny:"
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Věk:"
 
-#: ../../include/user.php:381
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr ""
-
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Sdílení oznámení ze sítě Diaspora"
-
-#: ../../include/diaspora.php:2332
-msgid "Attachments:"
-msgstr "Přílohy:"
-
-#: ../../include/items.php:4526
-msgid "Do you really want to delete this item?"
-msgstr "Opravdu chcete smazat tuto položku?"
+msgid "for %1$d %2$s"
+msgstr "pro %1$d %2$s"
 
-#: ../../include/items.php:4749
-msgid "Archives"
-msgstr "Archív"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Štítky:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Muž"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Náboženství:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Žena"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Koníčky/zájmy:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "V současné době muž"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktní informace a sociální sítě:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "V současné době žena"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Hudební vkus:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Většinou muž"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Knihy, literatura:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Většinou žena"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televize:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/tanec/kultura/zábava:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Láska/romance"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexuál"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Práce/zaměstnání:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodit"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Škola/vzdělávání:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutrál"
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
+#: ../../include/bbcode.php:1048
+msgid "Image/photo"
+msgstr "Obrázek/fotografie"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nespecifikováno"
+#: ../../include/bbcode.php:528
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Jiné"
+#: ../../include/bbcode.php:562
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Nerozhodnuto"
+#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
+msgid "$1 wrote:"
+msgstr "$1 napsal:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Muži"
+#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
+msgid "Encrypted content"
+msgstr "Šifrovaný obsah"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Ženy"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Neznámé | Nezařazeno"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Okamžitě blokovat "
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbička"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "pochybný, spammer, self-makerter"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Bez preferencí"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Znám ho ale, ale bez rozhodnutí"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuál"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, pravděpodobně neškodný"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuál"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Renomovaný, má mou důvěru"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Týdenně"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "panic/panna"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Měsíčně"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetišista"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Hodně"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nesexuální"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Svobodný"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Osamnělý"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Dostupný"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nedostupný"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Zamilovaný"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Zabouchnutý"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora konektor"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Seznamující se"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Nevěrný"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Závislý na sexu"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Různé"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Přátelé / výhody"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "rok"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ležérní"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "měsíc"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Zadaný"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "den"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Ženatý/vdaná"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nikdy"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Pomyslně ženatý/vdaná"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "méně než před sekundou"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partneři"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "let"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Žijící ve společné domácnosti"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "měsíců"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Zvykové právo"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "týdnem"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Šťastný"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "týdny"
+
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "dnů"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nehledající"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "hodina"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "hodin"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Zrazen"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minuta"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Odloučený"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minut"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Nestálý"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "sekunda"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Rozvedený(á)"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "sekund"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Pomyslně rozvedený"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "před %1$d %2$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Ovdovělý(á)"
+#: ../../include/datetime.php:477 ../../include/items.php:2204
+#, php-format
+msgid "%s's birthday"
+msgstr "%s má narozeniny"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Nejistý"
+#: ../../include/datetime.php:478 ../../include/items.php:2205
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Veselé narozeniny %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Je to složité"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Obecné funkčnosti"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Nezajímá"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Vícenásobné profily"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Zeptej se mě"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Schopnost vytvořit vícenásobné profily"
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Friendica Notifikace"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Nastavení vytváření příspěvků"
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Děkujeme, "
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Richtext Editor"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrátor"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Povolit richtext editor"
 
-#: ../../include/enotify.php:61
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Náhled příspěvku"
 
-#: ../../include/enotify.php:65
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
 
-#: ../../include/enotify.php:67
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Automaticky zmíněná Fóra"
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s Vám poslal %2$s."
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"
 
-#: ../../include/enotify.php:68
-msgid "a private message"
-msgstr "soukromá zpráva"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Síťové postranní widgety"
 
-#: ../../include/enotify.php:69
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Vyhledávat dle Data"
 
-#: ../../include/enotify.php:121
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Možnost označit příspěvky dle časového intervalu"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Skupinový Filtr"
 
-#: ../../include/enotify.php:136
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
 
-#: ../../include/enotify.php:146
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Síťový Filtr"
 
-#: ../../include/enotify.php:147
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
 
-#: ../../include/enotify.php:150 ../../include/enotify.php:165
-#: ../../include/enotify.php:178 ../../include/enotify.php:191
-#: ../../include/enotify.php:209 ../../include/enotify.php:222
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Uložit kritéria vyhledávání pro znovupoužití"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Síťové záložky"
 
-#: ../../include/enotify.php:159
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Osobní síťový záložka "
 
-#: ../../include/enotify.php:161
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Upozornění] %s Vás označil"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nová záložka síť"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s Vás označil na %2$s"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]Vás označil[/url]."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "záložka Síťové sdílené odkazy "
 
-#: ../../include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s nasdílel nový příspěvek"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s nasdílel nový příspěvek na %2$s"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Nástroje Příspěvků/Komentářů"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Násobné mazání"
 
-#: ../../include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Označit a smazat více "
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s Vás šťouchnul na %2$s"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editovat Odeslané příspěvky"
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]."
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
 
-#: ../../include/enotify.php:216
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Upozornění] %s označil Váš příspěvek"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Štítkování"
 
-#: ../../include/enotify.php:217
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s označil Váš příspěvek na %2$s"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
 
-#: ../../include/enotify.php:218
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Kategorie příspěvků"
 
-#: ../../include/enotify.php:229
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Upozornění] Obdrženo přestavení"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Přidat kategorie k Vašim příspěvkům"
 
-#: ../../include/enotify.php:230
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Možnost řadit příspěvky do složek"
 
-#: ../../include/enotify.php:231
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Označit příspěvky jako neoblíbené"
 
-#: ../../include/enotify.php:234 ../../include/enotify.php:276
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Můžete navštívit jejich profil na %s"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
 
-#: ../../include/enotify.php:236
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Příspěvky s hvězdou"
 
-#: ../../include/enotify.php:244
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Možnost označit příspěvky s indikátorem hvězdy"
 
-#: ../../include/enotify.php:245 ../../include/enotify.php:246
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "uživatel %1$s sdílí s vámi ma %2$s"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Utlumit upozornění na přísvěvky"
 
-#: ../../include/enotify.php:252
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Upozornění] Máte nového následovníka"
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Možnost stlumit upozornění pro vlákno"
 
-#: ../../include/enotify.php:253 ../../include/enotify.php:254
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Máte nového následovníka na %2$s : %1$s"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Sdílení oznámení ze sítě Diaspora"
 
-#: ../../include/enotify.php:267
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
+#: ../../include/diaspora.php:2520
+msgid "Attachments:"
+msgstr "Přílohy:"
 
-#: ../../include/enotify.php:268
+#: ../../include/dbstructure.php:26
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s"
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."
 
-#: ../../include/enotify.php:269
+#: ../../include/dbstructure.php:31
 #, php-format
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s."
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Chybová zpráva je\n[pre]%s[/pre]"
 
-#: ../../include/enotify.php:274
-msgid "Name:"
-msgstr "Jméno:"
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
+msgstr "Při vytváření databázových tabulek došlo k chybám."
 
-#: ../../include/enotify.php:275
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
+msgstr "Při provádění databázových změn došlo k chybám."
 
-#: ../../include/enotify.php:278
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Viditelné pro všechny"
 
-#: ../../include/enotify.php:286 ../../include/enotify.php:299
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Upozornění] Spojení akceptováno"
+#: ../../include/items.php:4539
+msgid "Do you really want to delete this item?"
+msgstr "Opravdu chcete smazat tuto položku?"
 
-#: ../../include/enotify.php:287 ../../include/enotify.php:300
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s"
+#: ../../include/items.php:4762
+msgid "Archives"
+msgstr "Archív"
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:301
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]."
+#: ../../include/oembed.php:212
+msgid "Embedded content"
+msgstr "vložený obsah"
 
-#: ../../include/enotify.php:291
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."
+#: ../../include/oembed.php:221
+msgid "Embedding disabled"
+msgstr "Vkládání zakázáno"
 
-#: ../../include/enotify.php:294 ../../include/enotify.php:308
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Prosím navštivte %s  pokud chcete změnit tento vztah."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Vítejte "
 
-#: ../../include/enotify.php:304
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Prosím nahrejte profilovou fotografii"
 
-#: ../../include/enotify.php:306
-#, php-format
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Vítejte zpět "
+
+#: ../../include/security.php:366
 msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
 
-#: ../../include/enotify.php:319
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Systém Friendica :Upozornění] registrační požadavek"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Muž"
 
-#: ../../include/enotify.php:320
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Žena"
 
-#: ../../include/enotify.php:321
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "V současné době muž"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "V současné době žena"
 
-#: ../../include/enotify.php:327
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Většinou muž"
 
-#: ../../include/oembed.php:210
-msgid "Embedded content"
-msgstr "vložený obsah"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Většinou žena"
 
-#: ../../include/oembed.php:219
-msgid "Embedding disabled"
-msgstr "Vkládání zakázáno"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Chyba dekódování uživatelského účtu"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexuál"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Chyba! Nelze ověřit přezdívku"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodit"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Uživatel '%s' již na tomto serveru existuje!"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutrál"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Chyba vytváření uživatele"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nespecifikováno"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Chyba vytváření uživatelského účtu"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Jiné"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d kontakt nenaimporován"
-msgstr[1] "%d kontaktů nenaimporováno"
-msgstr[2] "%d kontakty nenaimporovány"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Nerozhodnuto"
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Muži"
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "přepnout mobil"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Ženy"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Nastavení téma"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbička"
+
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Bez preferencí"
+
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuál"
+
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuál"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Nastav velikost písma pro přízpěvky a komentáře."
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "panic/panna"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Nastavení šířku grafické šablony"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Barevné schéma"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetišista"
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Nastav výšku řádku  pro přízpěvky a komentáře."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Hodně"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Nastavit barevné schéma"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nesexuální"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Zarovnání"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Svobodný"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Vlevo"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Osamnělý"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Uprostřed"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Dostupný"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Velikost písma u příspěvků"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nedostupný"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Velikost písma textů"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Zamilovaný"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Nastav rozlišení pro prostřední sloupec"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Zabouchnutý"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Nastavení barevného schematu"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Seznamující se"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Nastavit přiblížení pro Earth Layer"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Nevěrný"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Závislý na sexu"
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Přátelé / výhody"
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
-msgstr "Komunitní stránky"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Ležérní"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Zadaný"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Komunitní profily"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Ženatý/vdaná"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Pomoc nebo @ProNováčky ?"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Pomyslně ženatý/vdaná"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Propojené služby"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partneři"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Nalézt Přátele"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Žijící ve společné domácnosti"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Poslední uživatelé"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Zvykové právo"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Poslední fotografie"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Šťastný"
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Poslední líbí/nelíbí"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nehledající"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Vaše kontakty"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Vaše osobní fotky"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Zrazen"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokální Adresář"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Odloučený"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Nastavit faktor přiblížení pro Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Nestálý"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Rozvedený(á)"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "Nastavit styl"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Pomyslně rozvedený"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Ovdovělý(á)"
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Nejistý"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Je to složité"
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Nezajímá"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Zeptej se mě"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "následování zastaveno"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr ""
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Odstranit kontakt"
index 8bd40257cd6fc4eda2acda3f3740986e07758b03..1dcc73c40a868adce34625ed57b032727c78971c 100644 (file)
@@ -5,211 +5,228 @@ function string_plural_select_cs($n){
        return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d kontakt upraven.",
-       1 => "%d kontakty upraveny",
-       2 => "%d kontaktů upraveno",
+$a->strings["This entry was edited"] = "Tento záznam byl editován";
+$a->strings["Private Message"] = "Soukromá zpráva";
+$a->strings["Edit"] = "Upravit";
+$a->strings["Select"] = "Vybrat";
+$a->strings["Delete"] = "Odstranit";
+$a->strings["save to folder"] = "uložit do složky";
+$a->strings["add star"] = "přidat hvězdu";
+$a->strings["remove star"] = "odebrat hvězdu";
+$a->strings["toggle star status"] = "přepnout hvězdu";
+$a->strings["starred"] = "označeno hvězdou";
+$a->strings["ignore thread"] = "ignorovat vlákno";
+$a->strings["unignore thread"] = "přestat ignorovat vlákno";
+$a->strings["toggle ignore status"] = "přepnout stav Ignorování";
+$a->strings["ignored"] = "ignorován";
+$a->strings["add tag"] = "přidat štítek";
+$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)";
+$a->strings["like"] = "má rád";
+$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)";
+$a->strings["dislike"] = "nemá rád";
+$a->strings["Share this"] = "Sdílet toto";
+$a->strings["share"] = "sdílí";
+$a->strings["Categories:"] = "Kategorie:";
+$a->strings["Filed under:"] = "Vyplněn pod:";
+$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s";
+$a->strings["to"] = "pro";
+$a->strings["via"] = "přes";
+$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď";
+$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď ";
+$a->strings["%s from %s"] = "%s od %s";
+$a->strings["Comment"] = "Okomentovat";
+$a->strings["Please wait"] = "Čekejte prosím";
+$a->strings["%d comment"] = array(
+       0 => "%d komentář",
+       1 => "%d komentářů",
+       2 => "%d komentářů",
 );
-$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu.";
-$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil.";
-$a->strings["Contact updated."] = "Kontakt aktualizován.";
-$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
-$a->strings["Permission denied."] = "Přístup odmítnut.";
-$a->strings["Contact has been blocked"] = "Kontakt byl zablokován";
-$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován";
-$a->strings["Contact has been ignored"] = "Kontakt bude ignorován";
-$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován";
-$a->strings["Contact has been archived"] = "Kontakt byl archivován";
-$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu.";
-$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?";
-$a->strings["Yes"] = "Ano";
-$a->strings["Cancel"] = "Zrušit";
-$a->strings["Contact has been removed."] = "Kontakt byl odstraněn.";
-$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s";
-$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s";
-$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi";
-$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt.";
-$a->strings["Never"] = "Nikdy";
-$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)";
-$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)";
-$a->strings["Suggest friends"] = "Navrhněte přátelé";
-$a->strings["Network type: %s"] = "Typ sítě: %s";
-$a->strings["%d contact in common"] = array(
-       0 => "%d sdílený kontakt",
-       1 => "%d sdílených kontaktů",
-       2 => "%d sdílených kontaktů",
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "",
+       2 => "komentář",
 );
-$a->strings["View all contacts"] = "Zobrazit všechny kontakty";
-$a->strings["Unblock"] = "Odblokovat";
-$a->strings["Block"] = "Blokovat";
-$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno";
-$a->strings["Unignore"] = "Přestat ignorovat";
-$a->strings["Ignore"] = "Ignorovat";
-$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno";
-$a->strings["Unarchive"] = "Vrátit z archívu";
-$a->strings["Archive"] = "Archivovat";
-$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno";
-$a->strings["Repair"] = "Opravit";
-$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu";
-$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!";
-$a->strings["Contact Editor"] = "Editor kontaktu";
+$a->strings["show more"] = "zobrazit více";
+$a->strings["This is you"] = "Nastavte Vaši polohu";
 $a->strings["Submit"] = "Odeslat";
-$a->strings["Profile Visibility"] = "Viditelnost profilu";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.";
-$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky";
-$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu";
-$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
-$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt";
-$a->strings["Ignore contact"] = "Ignorovat kontakt";
-$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL ";
-$a->strings["View conversations"] = "Zobrazit konverzace";
-$a->strings["Delete contact"] = "Odstranit kontakt";
-$a->strings["Last update:"] = "Poslední aktualizace:";
-$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky";
-$a->strings["Update now"] = "Aktualizovat";
-$a->strings["Currently blocked"] = "V současnosti zablokováno";
-$a->strings["Currently ignored"] = "V současnosti ignorováno";
-$a->strings["Currently archived"] = "Aktuálně archivován";
-$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné";
-$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky";
-$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu";
-$a->strings["Fetch further information for feeds"] = "Načíst další informace pro kanál";
-$a->strings["Disabled"] = "Zakázáno";
-$a->strings["Fetch information"] = "Načíst informace";
-$a->strings["Fetch information and keywords"] = "Načíst informace a klíčová slova";
-$a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
-$a->strings["Suggestions"] = "Doporučení";
-$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele";
-$a->strings["All Contacts"] = "Všechny kontakty";
-$a->strings["Show all contacts"] = "Zobrazit všechny kontakty";
-$a->strings["Unblocked"] = "Odblokován";
-$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty";
-$a->strings["Blocked"] = "Blokován";
-$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty";
-$a->strings["Ignored"] = "Ignorován";
-$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty";
-$a->strings["Archived"] = "Archivován";
-$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty";
-$a->strings["Hidden"] = "Skrytý";
-$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty";
-$a->strings["Mutual Friendship"] = "Vzájemné přátelství";
-$a->strings["is a fan of yours"] = "je Váš fanoušek";
-$a->strings["you are a fan of"] = "jste fanouškem";
-$a->strings["Edit contact"] = "Editovat kontakt";
-$a->strings["Contacts"] = "Kontakty";
-$a->strings["Search your contacts"] = "Prohledat Vaše kontakty";
-$a->strings["Finding: "] = "Zjištění: ";
-$a->strings["Find"] = "Najít";
-$a->strings["Update"] = "Aktualizace";
-$a->strings["Delete"] = "Odstranit";
-$a->strings["No profile"] = "Žádný profil";
-$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
-$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
-$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
+$a->strings["Bold"] = "Tučné";
+$a->strings["Italic"] = "Kurzíva";
+$a->strings["Underline"] = "Podrtžené";
+$a->strings["Quote"] = "Citovat";
+$a->strings["Code"] = "Kód";
+$a->strings["Image"] = "Obrázek";
+$a->strings["Link"] = "Odkaz";
+$a->strings["Video"] = "Video";
+$a->strings["Preview"] = "Náhled";
+$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření.";
+$a->strings["Not Found"] = "Nenalezen";
+$a->strings["Page not found."] = "Stránka nenalezena";
 $a->strings["Permission denied"] = "Nedostatečné oprávnění";
-$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
-$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
+$a->strings["Permission denied."] = "Přístup odmítnut.";
+$a->strings["toggle mobile"] = "přepnout mobil";
+$a->strings["Home"] = "Domů";
+$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
 $a->strings["Profile"] = "Profil";
-$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
-$a->strings["Visible To"] = "Viditelný pro";
-$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )";
-$a->strings["Item not found."] = "Položka nenalezena.";
-$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
-$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen.";
-$a->strings["Item has been removed."] = "Položka byla odstraněna.";
-$a->strings["Welcome to Friendica"] = "Vítejte na Friendica";
-$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace.";
-$a->strings["Getting Started"] = "Začínáme";
-$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica ";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit.";
-$a->strings["Settings"] = "Nastavení";
-$a->strings["Go to Your Settings"] = "Navštivte své nastavení";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít.";
-$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají.";
-$a->strings["Edit Your Profile"] = "Editujte Váš profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky.";
-$a->strings["Profile Keywords"] = "Profilová klíčová slova";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství.";
-$a->strings["Connecting"] = "Probíhá pokus o připojení";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web.";
-$a->strings["Importing Emails"] = "Importování emaiů";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu";
-$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>.";
-$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována.";
-$a->strings["Finding New People"] = "Nalezení nových lidí";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.";
-$a->strings["Groups"] = "Skupiny";
-$a->strings["Group Your Contacts"] = "Seskupte si své kontakty";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.";
-$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu";
-$a->strings["Getting Help"] = "Získání nápovědy";
-$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
-$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
-$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
-$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
-$a->strings["Profile Photos"] = "Profilové fotografie";
-$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s].";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě.";
-$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
-$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d";
-$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
-$a->strings["Upload File:"] = "Nahrát soubor:";
-$a->strings["Select a profile:"] = "Vybrat profil:";
-$a->strings["Upload"] = "Nahrát";
-$a->strings["or"] = "nebo";
-$a->strings["skip this step"] = "přeskočit tento krok ";
-$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
-$a->strings["Crop Image"] = "Oříznout obrázek";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení.";
-$a->strings["Done Editing"] = "Editace dokončena";
-$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán.";
-$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
-$a->strings["photo"] = "fotografie";
+$a->strings["Your profile page"] = "Vaše profilová stránka";
+$a->strings["Photos"] = "Fotografie";
+$a->strings["Your photos"] = "Vaše fotky";
+$a->strings["Events"] = "Události";
+$a->strings["Your events"] = "Vaše události";
+$a->strings["Personal notes"] = "Osobní poznámky";
+$a->strings["Your personal photos"] = "Vaše osobní fotky";
+$a->strings["Community"] = "Komunita";
+$a->strings["don't show"] = "nikdy nezobrazit";
+$a->strings["show"] = "zobrazit";
+$a->strings["Theme settings"] = "Nastavení téma";
+$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře.";
+$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku  pro přízpěvky a komentáře.";
+$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec";
+$a->strings["Contacts"] = "Kontakty";
+$a->strings["Your contacts"] = "Vaše kontakty";
+$a->strings["Community Pages"] = "Komunitní stránky";
+$a->strings["Community Profiles"] = "Komunitní profily";
+$a->strings["Last users"] = "Poslední uživatelé";
+$a->strings["Last likes"] = "Poslední líbí/nelíbí";
+$a->strings["event"] = "událost";
 $a->strings["status"] = "Stav";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
-$a->strings["Tag removed"] = "Štítek odstraněn";
-$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
-$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
-$a->strings["Remove"] = "Odstranit";
-$a->strings["Save to Folder:"] = "Uložit do složky:";
-$a->strings["- select -"] = "- vyber -";
-$a->strings["Save"] = "Uložit";
-$a->strings["Contact added"] = "Kontakt přidán";
-$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek.";
-$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn.";
-$a->strings["Wall Photos"] = "Fotografie na zdi";
-$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica.";
-$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam.";
-$a->strings["%s posted an update."] = "%s poslal aktualizaci.";
-$a->strings["Group created."] = "Skupina vytvořena.";
-$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
-$a->strings["Group not found."] = "Skupina nenalezena.";
-$a->strings["Group name changed."] = "Název skupiny byl změněn.";
-$a->strings["Save Group"] = "Uložit Skupinu";
-$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
-$a->strings["Group Name: "] = "Název skupiny: ";
-$a->strings["Group removed."] = "Skupina odstraněna. ";
-$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
-$a->strings["Group Editor"] = "Editor skupin";
-$a->strings["Members"] = "Členové";
-$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření.";
-$a->strings["Applications"] = "Aplikace";
-$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
+$a->strings["photo"] = "fotografie";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s";
+$a->strings["Last photos"] = "Poslední fotografie";
+$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
+$a->strings["Profile Photos"] = "Profilové fotografie";
+$a->strings["Find Friends"] = "Nalézt Přátele";
+$a->strings["Local Directory"] = "Lokální Adresář";
+$a->strings["Global Directory"] = "Globální adresář";
+$a->strings["Similar Interests"] = "Podobné zájmy";
+$a->strings["Friend Suggestions"] = "Návrhy přátel";
+$a->strings["Invite Friends"] = "Pozvat přátele";
+$a->strings["Settings"] = "Nastavení";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers";
+$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers";
+$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
+$a->strings["Connect Services"] = "Propojené služby";
+$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:";
+$a->strings["Set color scheme"] = "Nastavení barevného schematu";
+$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer";
+$a->strings["Alignment"] = "Zarovnání";
+$a->strings["Left"] = "Vlevo";
+$a->strings["Center"] = "Uprostřed";
+$a->strings["Color scheme"] = "Barevné schéma";
+$a->strings["Posts font size"] = "Velikost písma u příspěvků";
+$a->strings["Textareas font size"] = "Velikost písma textů";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)";
+$a->strings["Set theme width"] = "Nastavení šířku grafické šablony";
+$a->strings["Set colour scheme"] = "Nastavit barevné schéma";
+$a->strings["default"] = "standardní";
+$a->strings["Midnight"] = "";
+$a->strings["Bootstrap"] = "";
+$a->strings["Shades of Pink"] = "";
+$a->strings["Lime and Orange"] = "";
+$a->strings["GeoCities Retro"] = "";
+$a->strings["Background Image"] = "";
+$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "";
+$a->strings["Background Color"] = "";
+$a->strings["HEX value for the background color. Don't include the #"] = "";
+$a->strings["font size"] = "";
+$a->strings["base font size for your interface"] = "";
+$a->strings["greenzero"] = "";
+$a->strings["purplezero"] = "";
+$a->strings["easterbunny"] = "";
+$a->strings["darkzero"] = "";
+$a->strings["comix"] = "";
+$a->strings["slackr"] = "";
+$a->strings["Variations"] = "";
+$a->strings["Set style"] = "Nastavit styl";
+$a->strings["Delete this item?"] = "Odstranit tuto položku?";
+$a->strings["show fewer"] = "zobrazit méně";
+$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
+$a->strings["Create a New Account"] = "Vytvořit nový účet";
+$a->strings["Register"] = "Registrovat";
+$a->strings["Logout"] = "Odhlásit se";
+$a->strings["Login"] = "Přihlásit se";
+$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:";
+$a->strings["Password: "] = "Heslo: ";
+$a->strings["Remember me"] = "Pamatuj si mne";
+$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: ";
+$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
+$a->strings["Password Reset"] = "Obnovení hesla";
+$a->strings["Website Terms of Service"] = "Podmínky použití serveru";
+$a->strings["terms of service"] = "podmínky použití";
+$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
+$a->strings["privacy policy"] = "Ochrana soukromí";
+$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
+$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
+$a->strings["Edit profile"] = "Upravit profil";
+$a->strings["Connect"] = "Spojit";
+$a->strings["Message"] = "Zpráva";
+$a->strings["Profiles"] = "Profily";
+$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
+$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
+$a->strings["Create New Profile"] = "Vytvořit nový profil";
+$a->strings["Profile Image"] = "Profilový obrázek";
+$a->strings["visible to everybody"] = "viditelné pro všechny";
+$a->strings["Edit visibility"] = "Upravit viditelnost";
+$a->strings["Location:"] = "Místo:";
+$a->strings["Gender:"] = "Pohlaví:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Domácí stránka:";
+$a->strings["About:"] = "O mě:";
+$a->strings["Network:"] = "Síť:";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[Dnes]";
+$a->strings["Birthday Reminders"] = "Připomínka narozenin";
+$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
+$a->strings["[No description]"] = "[Žádný popis]";
+$a->strings["Event Reminders"] = "Připomenutí událostí";
+$a->strings["Events this week:"] = "Události tohoto týdne:";
+$a->strings["Status"] = "Stav";
+$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
+$a->strings["Profile Details"] = "Detaily profilu";
+$a->strings["Photo Albums"] = "Fotoalba";
+$a->strings["Videos"] = "Videa";
+$a->strings["Events and Calendar"] = "Události a kalendář";
+$a->strings["Personal Notes"] = "Osobní poznámky";
+$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
+$a->strings["Mood"] = "Nálada";
+$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
+$a->strings["Item not found."] = "Položka nenalezena.";
+$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
+$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen.";
+$a->strings["Item has been removed."] = "Položka byla odstraněna.";
+$a->strings["Access denied."] = "Přístup odmítnut";
+$a->strings["The post was created"] = "Příspěvek byl vytvořen";
+$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
+$a->strings["running at web location"] = "běžící na webu";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>.";
+$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com";
+$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:";
+$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení.";
+$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
+$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
+$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
+$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
+$a->strings["Yes"] = "Ano";
+$a->strings["No"] = "Ne";
+$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
+$a->strings["Your invitation ID: "] = "Vaše pozvání ID:";
+$a->strings["Registration"] = "Registrace";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):";
+$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@\$sitename</strong>\".";
+$a->strings["Choose a nickname: "] = "Vyberte přezdívku:";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
 $a->strings["Profile not found."] = "Profil nenalezen";
 $a->strings["Contact not found."] = "Kontakt nenalezen.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen.";
@@ -231,25 +248,16 @@ $a->strings["Unable to set your contact credentials on our system."] = "Nelze na
 $a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému";
 $a->strings["[Name Withheld]"] = "[Jméno odepřeno]";
 $a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s";
-$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
-$a->strings["Tips for New Members"] = "Tipy pro nové členy";
-$a->strings["No videos selected"] = "Není vybráno žádné video";
-$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
-$a->strings["View Video"] = "Zobrazit video";
-$a->strings["View Album"] = "Zobrazit album";
-$a->strings["Recent Videos"] = "Aktuální Videa";
-$a->strings["Upload New Videos"] = "Nahrát nová videa";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s";
-$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány ";
-$a->strings["Suggest Friends"] = "Navrhněte přátelé";
-$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s";
+$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
+$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
+$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
 $a->strings["No valid account found."] = "Nenalezen žádný platný účet.";
 $a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti.";
 $a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s";
 $a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla";
 $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo.";
-$a->strings["Password Reset"] = "Obnovení hesla";
 $a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno.";
 $a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku";
 $a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
@@ -262,134 +270,150 @@ $a->strings["Forgot your Password?"] = "Zapomněli jste heslo?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce.";
 $a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: ";
 $a->strings["Reset"] = "Reset";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s";
-$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
-$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
-$a->strings["{0} requested registration"] = "{0} požaduje registraci";
-$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s";
-$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s";
-$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s";
-$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s";
-$a->strings["{0} posted"] = "{0} zasláno";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku";
-$a->strings["No contacts."] = "Žádné kontakty.";
-$a->strings["View Contacts"] = "Zobrazit kontakty";
-$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
-$a->strings["Discard"] = "Odstranit";
-$a->strings["System"] = "Systém";
-$a->strings["Network"] = "Síť";
-$a->strings["Personal"] = "Osobní";
-$a->strings["Home"] = "Domů";
-$a->strings["Introductions"] = "Představení";
-$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
-$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
-$a->strings["Notification type: "] = "Typ oznámení: ";
-$a->strings["Friend Suggestion"] = "Návrh přátelství";
-$a->strings["suggested by %s"] = "navrhl %s";
-$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele.";
-$a->strings["if applicable"] = "je-li použitelné";
-$a->strings["Approve"] = "Schválit";
-$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
-$a->strings["yes"] = "ano";
-$a->strings["no"] = "ne";
-$a->strings["Approve as: "] = "Schválit jako: ";
-$a->strings["Friend"] = "Přítel";
-$a->strings["Sharer"] = "Sdílené";
-$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel";
-$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
-$a->strings["New Follower"] = "Nový následovník";
-$a->strings["No introductions."] = "Žádné představení.";
-$a->strings["Notifications"] = "Upozornění";
-$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
-$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
-$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
-$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
-$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
-$a->strings["No more network notifications."] = "Žádné další síťové upozornění.";
-$a->strings["Network Notifications"] = "Upozornění Sítě";
-$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
-$a->strings["System Notifications"] = "Systémová upozornění";
-$a->strings["No more personal notifications."] = "Žádné další osobní upozornění.";
-$a->strings["Personal Notifications"] = "Osobní upozornění";
-$a->strings["No more home notifications."] = "Žádné další domácí upozornění.";
-$a->strings["Home Notifications"] = "Upozornění na vstupní straně";
-$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:";
-$a->strings["Source input: "] = "Zdrojový vstup: ";
-$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Nothing new here"] = "Zde není nic nového";
-$a->strings["Clear notifications"] = "Smazat notifikace";
-$a->strings["New Message"] = "Nová zpráva";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.";
 $a->strings["No recipient selected."] = "Nevybrán příjemce.";
-$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
+$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci.";
 $a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat.";
 $a->strings["Message collection failure."] = "Sběr zpráv selhal.";
 $a->strings["Message sent."] = "Zpráva odeslána.";
-$a->strings["Messages"] = "Zprávy";
-$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
-$a->strings["Message deleted."] = "Zpráva odstraněna.";
-$a->strings["Conversation removed."] = "Konverzace odstraněna.";
+$a->strings["No recipient."] = "Žádný příjemce.";
 $a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:";
 $a->strings["Send Private Message"] = "Odeslat soukromou zprávu";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.";
 $a->strings["To:"] = "Adresát:";
 $a->strings["Subject:"] = "Předmět:";
 $a->strings["Your message:"] = "Vaše zpráva:";
 $a->strings["Upload photo"] = "Nahrát fotografii";
 $a->strings["Insert web link"] = "Vložit webový odkaz";
-$a->strings["Please wait"] = "Čekejte prosím";
-$a->strings["No messages."] = "Žádné zprávy.";
-$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
-$a->strings["You and %s"] = "Vy a %s";
-$a->strings["%s and You"] = "%s a Vy";
-$a->strings["Delete conversation"] = "Odstranit konverzaci";
-$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d zpráva",
-       1 => "%d zprávy",
-       2 => "%d zpráv",
-);
-$a->strings["Message not available."] = "Zpráva není k dispozici.";
-$a->strings["Delete message"] = "Smazat zprávu";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
-$a->strings["Send Reply"] = "Poslat odpověď";
-$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]";
-$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
-$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
-$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce.";
-$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
-$a->strings["No mirroring"] = "Žádné zrcadlení";
-$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky";
-$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky";
-$a->strings["Name"] = "Jméno";
-$a->strings["Account Nickname"] = "Přezdívka účtu";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
-$a->strings["Account URL"] = "URL adresa účtu";
-$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
-$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
-$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
-$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
-$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
-$a->strings["Remote Self"] = "Remote Self";
-$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu.";
-$a->strings["Access denied."] = "Přístup odmítnut";
-$a->strings["People Search"] = "Vyhledávání lidí";
-$a->strings["No matches"] = "Žádné shody";
-$a->strings["Photos"] = "Fotografie";
-$a->strings["Files"] = "Soubory";
-$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
+$a->strings["Welcome to Friendica"] = "Vítejte na Friendica";
+$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace.";
+$a->strings["Getting Started"] = "Začínáme";
+$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica ";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit.";
+$a->strings["Go to Your Settings"] = "Navštivte své nastavení";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít.";
+$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají.";
+$a->strings["Edit Your Profile"] = "Editujte Váš profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky.";
+$a->strings["Profile Keywords"] = "Profilová klíčová slova";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství.";
+$a->strings["Connecting"] = "Probíhá pokus o připojení";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web.";
+$a->strings["Importing Emails"] = "Importování emaiů";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu";
+$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>.";
+$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována.";
+$a->strings["Finding New People"] = "Nalezení nových lidí";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.";
+$a->strings["Groups"] = "Skupiny";
+$a->strings["Group Your Contacts"] = "Seskupte si své kontakty";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.";
+$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu";
+$a->strings["Getting Help"] = "Získání nápovědy";
+$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
+$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
+$a->strings["Cancel"] = "Zrušit";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
+$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
+$a->strings["Search Results For:"] = "Výsledky hledání pro:";
+$a->strings["Remove term"] = "Odstranit termín";
+$a->strings["Saved Searches"] = "Uložená hledání";
+$a->strings["add"] = "přidat";
+$a->strings["Commented Order"] = "Dle komentářů";
+$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře";
+$a->strings["Posted Order"] = "Dle data";
+$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku";
+$a->strings["Personal"] = "Osobní";
+$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují";
+$a->strings["New"] = "Nové";
+$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data";
+$a->strings["Shared Links"] = "Sdílené odkazy";
+$a->strings["Interesting Links"] = "Zajímavé odkazy";
+$a->strings["Starred"] = "S hvězdičkou";
+$a->strings["Favourite Posts"] = "Oblíbené přízpěvky";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.",
+       1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
+       2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení.";
+$a->strings["No such group"] = "Žádná taková skupina";
+$a->strings["Group is empty"] = "Skupina je prázdná";
+$a->strings["Group: "] = "Skupina: ";
+$a->strings["Contact: "] = "Kontakt: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.";
+$a->strings["Invalid contact."] = "Neplatný kontakt.";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
+$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
+$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
+$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
+$a->strings["System check"] = "Testování systému";
+$a->strings["Next"] = "Dále";
+$a->strings["Check again"] = "Otestovat znovu";
+$a->strings["Database connection"] = "Databázové spojení";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
+$a->strings["Database Server Name"] = "Jméno databázového serveru";
+$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
+$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
+$a->strings["Database Name"] = "Jméno databáze";
+$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
+$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
+$a->strings["Site settings"] = "Nastavení webu";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Cesta k \"PHP executable\"";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
+$a->strings["Command line PHP"] = "Příkazový řádek PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
+$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
+$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
+$a->strings["libCurl PHP module"] = "libCurl PHP modul";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
+$a->strings["mysqli PHP module"] = "mysqli PHP modul";
+$a->strings["mb_string PHP module"] = "mb_string PHP modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
+$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
+$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno.";
 $a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno.";
 $a->strings["Site"] = "Web";
 $a->strings["Users"] = "Uživatelé";
@@ -397,8 +421,11 @@ $a->strings["Plugins"] = "Pluginy";
 $a->strings["Themes"] = "Témata";
 $a->strings["DB updates"] = "Aktualizace databáze";
 $a->strings["Logs"] = "Logy";
+$a->strings["probe address"] = "";
+$a->strings["check webfinger"] = "";
 $a->strings["Admin"] = "Administrace";
 $a->strings["Plugin Features"] = "Funkčnosti rozšíření";
+$a->strings["diagnostics"] = "diagnostika";
 $a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení";
 $a->strings["Normal Account"] = "Normální účet";
 $a->strings["Soapbox Account"] = "Soapbox účet";
@@ -416,6 +443,7 @@ $a->strings["Active plugins"] = "Aktivní pluginy";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>";
 $a->strings["Site settings updated."] = "Nastavení webu aktualizováno.";
 $a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení";
+$a->strings["Never"] = "Nikdy";
 $a->strings["At post arrival"] = "Při obdržení příspěvku";
 $a->strings["Frequently"] = "Často";
 $a->strings["Hourly"] = "každou hodinu";
@@ -429,14 +457,14 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL po
 $a->strings["Force all links to use SSL"] = "Vyžadovat u všech odkazů použití SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)";
 $a->strings["Save Settings"] = "Uložit Nastavení";
-$a->strings["Registration"] = "Registrace";
 $a->strings["File upload"] = "Nahrání souborů";
 $a->strings["Policies"] = "Politiky";
 $a->strings["Advanced"] = "Pokročilé";
 $a->strings["Performance"] = "Výkonnost";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server.";
 $a->strings["Site name"] = "Název webu";
-$a->strings["Host name"] = "";
+$a->strings["Host name"] = "Jméno hostitele (host name)";
+$a->strings["Sender Email"] = "Email ddesílatele";
 $a->strings["Banner/Logo"] = "Banner/logo";
 $a->strings["Additional Info"] = "Dodatečné informace";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo.";
@@ -448,7 +476,7 @@ $a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zaříz
 $a->strings["SSL link policy"] = "Politika SSL odkazů";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL";
 $a->strings["Force SSL"] = "Vynutit SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení.";
 $a->strings["Old style 'Share'"] = "Sdílení \"postaru\"";
 $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky.";
 $a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu";
@@ -535,8 +563,8 @@ $a->strings["Base path to installation"] = "Základní cesta k instalaci";
 $a->strings["Disable picture proxy"] = "Vypnutí obrázkové proxy";
 $a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti.";
 $a->strings["New base url"] = "Nová výchozí url adresa";
-$a->strings["Disable noscrape"] = "";
-$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "";
+$a->strings["Disable noscrape"] = "Zakázat nonscrape";
+$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "Funkčnost noscrape urychlí odesílání adresářů použitím JSON místo HTML. Zakázáním této funkčnosti se zvýší zatížení Vašeho serveru a stejně jako Vašeho adresářového serveru.";
 $a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná.";
 $a->strings["Database structure update %s was successfully applied."] = "Aktualizace struktury databáze %s byla úspěšně aplikována.";
 $a->strings["Executing of database structure update %s failed with error: %s"] = "Provádění aktualizace databáze %s skončilo chybou: %s";
@@ -571,9 +599,13 @@ $a->strings["select all"] = "Vybrat vše";
 $a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení";
 $a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání";
 $a->strings["Request date"] = "Datum žádosti";
+$a->strings["Name"] = "Jméno";
 $a->strings["Email"] = "E-mail";
 $a->strings["No registrations."] = "Žádné registrace.";
+$a->strings["Approve"] = "Schválit";
 $a->strings["Deny"] = "Odmítnout";
+$a->strings["Block"] = "Blokovat";
+$a->strings["Unblock"] = "Odblokovat";
 $a->strings["Site admin"] = "Site administrátor";
 $a->strings["Account expired"] = "Účtu vypršela platnost";
 $a->strings["New User"] = "Nový uživatel";
@@ -605,232 +637,255 @@ $a->strings["Enable Debugging"] = "Povolit ladění";
 $a->strings["Log file"] = "Soubor s logem";
 $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica";
 $a->strings["Log level"] = "Úroveň auditu";
+$a->strings["Update now"] = "Aktualizovat";
 $a->strings["Close"] = "Zavřít";
 $a->strings["FTP Host"] = "Hostitel FTP";
 $a->strings["FTP Path"] = "Cesta FTP";
 $a->strings["FTP User"] = "FTP uživatel";
 $a->strings["FTP Password"] = "FTP heslo";
-$a->strings["Search Results For:"] = "Výsledky hledání pro:";
-$a->strings["Remove term"] = "Odstranit termín";
-$a->strings["Saved Searches"] = "Uložená hledání";
-$a->strings["add"] = "přidat";
-$a->strings["Commented Order"] = "Dle komentářů";
-$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře";
-$a->strings["Posted Order"] = "Dle data";
-$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku";
-$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují";
-$a->strings["New"] = "Nové";
-$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data";
-$a->strings["Shared Links"] = "Sdílené odkazy";
-$a->strings["Interesting Links"] = "Zajímavé odkazy";
-$a->strings["Starred"] = "S hvězdičkou";
-$a->strings["Favourite Posts"] = "Oblíbené přízpěvky";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.",
-       1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
-       2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
+$a->strings["Search"] = "Vyhledávání";
+$a->strings["No results."] = "Žádné výsledky.";
+$a->strings["Tips for New Members"] = "Tipy pro nové členy";
+$a->strings["link"] = "odkaz";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s";
+$a->strings["Item not found"] = "Položka nenalezena";
+$a->strings["Edit post"] = "Upravit příspěvek";
+$a->strings["Save"] = "Uložit";
+$a->strings["upload photo"] = "nahrát fotky";
+$a->strings["Attach file"] = "Přiložit soubor";
+$a->strings["attach file"] = "přidat soubor";
+$a->strings["web link"] = "webový odkaz";
+$a->strings["Insert video link"] = "Zadejte odkaz na video";
+$a->strings["video link"] = "odkaz na video";
+$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam";
+$a->strings["audio link"] = "odkaz na audio";
+$a->strings["Set your location"] = "Nastavte vaši polohu";
+$a->strings["set location"] = "nastavit místo";
+$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči";
+$a->strings["clear location"] = "vymazat místo";
+$a->strings["Permission settings"] = "Nastavení oprávnění";
+$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy";
+$a->strings["Public post"] = "Veřejný příspěvek";
+$a->strings["Set title"] = "Nastavit titulek";
+$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com";
+$a->strings["Item not available."] = "Položka není k dispozici.";
+$a->strings["Item was not found."] = "Položka nebyla nalezena.";
+$a->strings["Account approved."] = "Účet schválen.";
+$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
+$a->strings["Please login."] = "Přihlaste se, prosím.";
+$a->strings["Find on this site"] = "Nalézt na tomto webu";
+$a->strings["Finding: "] = "Zjištění: ";
+$a->strings["Site Directory"] = "Adresář serveru";
+$a->strings["Find"] = "Najít";
+$a->strings["Age: "] = "Věk: ";
+$a->strings["Gender: "] = "Pohlaví: ";
+$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";
+$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
+$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
+$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce.";
+$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
+$a->strings["No mirroring"] = "Žádné zrcadlení";
+$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky";
+$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky";
+$a->strings["Account Nickname"] = "Přezdívka účtu";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
+$a->strings["Account URL"] = "URL adresa účtu";
+$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
+$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
+$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
+$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
+$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
+$a->strings["Remote Self"] = "Remote Self";
+$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu.";
+$a->strings["Move account"] = "Přesunout účet";
+$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory";
+$a->strings["Account file"] = "Soubor s účtem";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
+$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici.";
+$a->strings["Visible to:"] = "Viditelné pro:";
+$a->strings["Help:"] = "Nápověda:";
+$a->strings["Help"] = "Nápověda";
+$a->strings["No profile"] = "Žádný profil";
+$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka";
+$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d požadovaný parametr nebyl nalezen na daném místě",
+       1 => "%d požadované parametry nebyly nalezeny na daném místě",
+       2 => "%d požadované parametry nebyly nalezeny na daném místě",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení.";
-$a->strings["No such group"] = "Žádná taková skupina";
-$a->strings["Group is empty"] = "Skupina je prázdná";
-$a->strings["Group: "] = "Skupina: ";
-$a->strings["Contact: "] = "Kontakt: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.";
-$a->strings["Invalid contact."] = "Neplatný kontakt.";
-$a->strings["Friends of %s"] = "Přátelé uživatele %s";
-$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
-$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editovat událost";
-$a->strings["link to source"] = "odkaz na zdroj";
-$a->strings["Events"] = "Události";
-$a->strings["Create New Event"] = "Vytvořit novou událost";
-$a->strings["Previous"] = "Předchozí";
-$a->strings["Next"] = "Dále";
-$a->strings["hour:minute"] = "hodina:minuta";
-$a->strings["Event details"] = "Detaily události";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány.";
-$a->strings["Event Starts:"] = "Událost začíná:";
-$a->strings["Required"] = "Vyžadováno";
-$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
-$a->strings["Event Finishes:"] = "Akce končí:";
-$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
-$a->strings["Description:"] = "Popis:";
-$a->strings["Location:"] = "Místo:";
-$a->strings["Title:"] = "Název:";
-$a->strings["Share this event"] = "Sdílet tuto událost";
-$a->strings["Select"] = "Vybrat";
-$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s";
-$a->strings["%s from %s"] = "%s od %s";
+$a->strings["Introduction complete."] = "Představení dokončeno.";
+$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu";
+$a->strings["Profile unavailable."] = "Profil není k dispozici.";
+$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení.";
+$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin.";
+$a->strings["Invalid locator"] = "Neplatný odkaz";
+$a->strings["Invalid email address."] = "Neplatná emailová adresa";
+$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn.";
+$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese.";
+$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli.";
+$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s.";
+$a->strings["Invalid profile URL."] = "Neplatné URL profilu.";
+$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
+$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
+$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána.";
+$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu.";
+$a->strings["Hide this contact"] = "Skrýt tento kontakt";
+$a->strings["Welcome home %s."] = "Vítejte doma %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s.";
+$a->strings["Confirm"] = "Potvrdit";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>.";
+$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
+$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
+$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole.";
+$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
+$a->strings["Submit Request"] = "Odeslat žádost";
+$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]";
 $a->strings["View in context"] = "Pohled v kontextu";
-$a->strings["%d comment"] = array(
-       0 => "%d komentář",
-       1 => "%d komentářů",
-       2 => "%d komentářů",
+$a->strings["%d contact edited."] = array(
+       0 => "%d kontakt upraven.",
+       1 => "%d kontakty upraveny",
+       2 => "%d kontaktů upraveno",
 );
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "",
-       2 => "komentář",
+$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu.";
+$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil.";
+$a->strings["Contact updated."] = "Kontakt aktualizován.";
+$a->strings["Contact has been blocked"] = "Kontakt byl zablokován";
+$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován";
+$a->strings["Contact has been ignored"] = "Kontakt bude ignorován";
+$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován";
+$a->strings["Contact has been archived"] = "Kontakt byl archivován";
+$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu.";
+$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?";
+$a->strings["Contact has been removed."] = "Kontakt byl odstraněn.";
+$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s";
+$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s";
+$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi";
+$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt.";
+$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)";
+$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)";
+$a->strings["Suggest friends"] = "Navrhněte přátelé";
+$a->strings["Network type: %s"] = "Typ sítě: %s";
+$a->strings["%d contact in common"] = array(
+       0 => "%d sdílený kontakt",
+       1 => "%d sdílených kontaktů",
+       2 => "%d sdílených kontaktů",
 );
-$a->strings["show more"] = "zobrazit více";
-$a->strings["Private Message"] = "Soukromá zpráva";
-$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)";
-$a->strings["like"] = "má rád";
-$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)";
-$a->strings["dislike"] = "nemá rád";
-$a->strings["Share this"] = "Sdílet toto";
-$a->strings["share"] = "sdílí";
-$a->strings["This is you"] = "Nastavte Vaši polohu";
-$a->strings["Comment"] = "Okomentovat";
-$a->strings["Bold"] = "Tučné";
-$a->strings["Italic"] = "Kurzíva";
-$a->strings["Underline"] = "Podrtžené";
-$a->strings["Quote"] = "Citovat";
-$a->strings["Code"] = "Kód";
-$a->strings["Image"] = "Obrázek";
-$a->strings["Link"] = "Odkaz";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Náhled";
-$a->strings["Edit"] = "Upravit";
-$a->strings["add star"] = "přidat hvězdu";
-$a->strings["remove star"] = "odebrat hvězdu";
-$a->strings["toggle star status"] = "přepnout hvězdu";
-$a->strings["starred"] = "označeno hvězdou";
-$a->strings["add tag"] = "přidat štítek";
-$a->strings["save to folder"] = "uložit do složky";
-$a->strings["to"] = "pro";
-$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď";
-$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď ";
-$a->strings["Remove My Account"] = "Odstranit můj účet";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
-$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
-$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
-$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
-$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
-$a->strings["System check"] = "Testování systému";
-$a->strings["Check again"] = "Otestovat znovu";
-$a->strings["Database connection"] = "Databázové spojení";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
-$a->strings["Database Server Name"] = "Jméno databázového serveru";
-$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
-$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
-$a->strings["Database Name"] = "Jméno databáze";
-$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
-$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
-$a->strings["Site settings"] = "Nastavení webu";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Cesta k \"PHP executable\"";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
-$a->strings["Command line PHP"] = "Příkazový řádek PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
-$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
-$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
-$a->strings["libCurl PHP module"] = "libCurl PHP modul";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
-$a->strings["mysqli PHP module"] = "mysqli PHP modul";
-$a->strings["mb_string PHP module"] = "mb_string PHP modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
-$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
-$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.";
-$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci.";
-$a->strings["No recipient."] = "Žádný příjemce.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.";
-$a->strings["Help:"] = "Nápověda:";
-$a->strings["Help"] = "Nápověda";
-$a->strings["Not Found"] = "Nenalezen";
-$a->strings["Page not found."] = "Stránka nenalezena";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
-$a->strings["Welcome to %s"] = "Vítá Vás %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP";
-$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?";
-$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d";
-$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
-$a->strings["Profile Match"] = "Shoda profilu";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
-$a->strings["is interested in:"] = "zajímá se o:";
-$a->strings["Connect"] = "Spojit";
-$a->strings["link"] = "odkaz";
-$a->strings["Not available."] = "Není k dispozici.";
-$a->strings["Community"] = "Komunita";
-$a->strings["No results."] = "Žádné výsledky.";
-$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
-$a->strings["Additional features"] = "Další funkčnosti";
-$a->strings["Display"] = "Zobrazení";
-$a->strings["Social Networks"] = "Sociální sítě";
-$a->strings["Delegations"] = "Delegace";
-$a->strings["Connected apps"] = "Propojené aplikace";
-$a->strings["Export personal data"] = "Export osobních údajů";
-$a->strings["Remove account"] = "Odstranit účet";
-$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
-$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
-$a->strings["Features updated"] = "Aktualizované funkčnosti";
-$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
-$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno.";
-$a->strings["Wrong password."] = "Špatné heslo.";
-$a->strings["Password changed."] = "Heslo bylo změněno.";
-$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu.";
-$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno.";
-$a->strings[" Name too short."] = "Jméno je příliš krátké.";
-$a->strings["Wrong Password"] = "Špatné heslo";
-$a->strings[" Not valid email."] = "Neplatný e-mail.";
-$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu.";
-$a->strings["Settings updated."] = "Nastavení aktualizováno.";
-$a->strings["Add application"] = "Přidat aplikaci";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Přesměrování";
-$a->strings["Icon url"] = "URL ikony";
-$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci.";
-$a->strings["Connected Apps"] = "Připojené aplikace";
-$a->strings["Client key starts with"] = "Klienský klíč začíná";
-$a->strings["No name"] = "Bez názvu";
-$a->strings["Remove authorization"] = "Odstranit oprávnění";
-$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven";
-$a->strings["Plugin Settings"] = "Nastavení doplňku";
+$a->strings["View all contacts"] = "Zobrazit všechny kontakty";
+$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno";
+$a->strings["Unignore"] = "Přestat ignorovat";
+$a->strings["Ignore"] = "Ignorovat";
+$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno";
+$a->strings["Unarchive"] = "Vrátit z archívu";
+$a->strings["Archive"] = "Archivovat";
+$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno";
+$a->strings["Repair"] = "Opravit";
+$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu";
+$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!";
+$a->strings["Contact Editor"] = "Editor kontaktu";
+$a->strings["Profile Visibility"] = "Viditelnost profilu";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.";
+$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky";
+$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu";
+$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
+$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt";
+$a->strings["Ignore contact"] = "Ignorovat kontakt";
+$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL ";
+$a->strings["View conversations"] = "Zobrazit konverzace";
+$a->strings["Delete contact"] = "Odstranit kontakt";
+$a->strings["Last update:"] = "Poslední aktualizace:";
+$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky";
+$a->strings["Currently blocked"] = "V současnosti zablokováno";
+$a->strings["Currently ignored"] = "V současnosti ignorováno";
+$a->strings["Currently archived"] = "Aktuálně archivován";
+$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné";
+$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky";
+$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu";
+$a->strings["Fetch further information for feeds"] = "Načítat další informace pro kanál";
+$a->strings["Disabled"] = "Zakázáno";
+$a->strings["Fetch information"] = "Načítat informace";
+$a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova";
+$a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"";
+$a->strings["Suggestions"] = "Doporučení";
+$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele";
+$a->strings["All Contacts"] = "Všechny kontakty";
+$a->strings["Show all contacts"] = "Zobrazit všechny kontakty";
+$a->strings["Unblocked"] = "Odblokován";
+$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty";
+$a->strings["Blocked"] = "Blokován";
+$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty";
+$a->strings["Ignored"] = "Ignorován";
+$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty";
+$a->strings["Archived"] = "Archivován";
+$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty";
+$a->strings["Hidden"] = "Skrytý";
+$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty";
+$a->strings["Mutual Friendship"] = "Vzájemné přátelství";
+$a->strings["is a fan of yours"] = "je Váš fanoušek";
+$a->strings["you are a fan of"] = "jste fanouškem";
+$a->strings["Edit contact"] = "Editovat kontakt";
+$a->strings["Search your contacts"] = "Prohledat Vaše kontakty";
+$a->strings["Update"] = "Aktualizace";
+$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
+$a->strings["Additional features"] = "Další funkčnosti";
+$a->strings["Display"] = "Zobrazení";
+$a->strings["Social Networks"] = "Sociální sítě";
+$a->strings["Delegations"] = "Delegace";
+$a->strings["Connected apps"] = "Propojené aplikace";
+$a->strings["Export personal data"] = "Export osobních údajů";
+$a->strings["Remove account"] = "Odstranit účet";
+$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
+$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
+$a->strings["Features updated"] = "Aktualizované funkčnosti";
+$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
+$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno.";
+$a->strings["Wrong password."] = "Špatné heslo.";
+$a->strings["Password changed."] = "Heslo bylo změněno.";
+$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu.";
+$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno.";
+$a->strings[" Name too short."] = "Jméno je příliš krátké.";
+$a->strings["Wrong Password"] = "Špatné heslo";
+$a->strings[" Not valid email."] = "Neplatný e-mail.";
+$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu.";
+$a->strings["Settings updated."] = "Nastavení aktualizováno.";
+$a->strings["Add application"] = "Přidat aplikaci";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Přesměrování";
+$a->strings["Icon url"] = "URL ikony";
+$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci.";
+$a->strings["Connected Apps"] = "Připojené aplikace";
+$a->strings["Client key starts with"] = "Klienský klíč začíná";
+$a->strings["No name"] = "Bez názvu";
+$a->strings["Remove authorization"] = "Odstranit oprávnění";
+$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven";
+$a->strings["Plugin Settings"] = "Nastavení doplňku";
 $a->strings["Off"] = "Vypnuto";
 $a->strings["On"] = "Zapnuto";
 $a->strings["Additional Features"] = "Další Funkčnosti";
 $a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s";
-$a->strings["Diaspora"] = "Diaspora";
 $a->strings["enabled"] = "povoleno";
 $a->strings["disabled"] = "zakázáno";
 $a->strings["StatusNet"] = "StatusNet";
@@ -877,16 +932,16 @@ $a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu.";
 $a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?";
-$a->strings["No"] = "Ne";
 $a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?";
 $a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí.";
 $a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?";
 $a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?";
 $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?";
 $a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?";
 $a->strings["Profile is <strong>not published</strong>."] = "Profil <strong>není zveřejněn</strong>.";
+$a->strings["or"] = "nebo";
 $a->strings["Your Identity Address is"] = "Vaše adresa identity je";
 $a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:";
 $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány";
@@ -937,105 +992,12 @@ $a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátels
 $a->strings["You are tagged in a post"] = "Jste označen v příspěvku";
 $a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku";
 $a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily";
-$a->strings["Send text only notification emails, without the html part"] = "";
+$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části.";
 $a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky";
 $a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích";
 $a->strings["Relocate"] = "Změna umístění";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko.";
 $a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům";
-$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka";
-$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d požadovaný parametr nebyl nalezen na daném místě",
-       1 => "%d požadované parametry nebyly nalezeny na daném místě",
-       2 => "%d požadované parametry nebyly nalezeny na daném místě",
-);
-$a->strings["Introduction complete."] = "Představení dokončeno.";
-$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu";
-$a->strings["Profile unavailable."] = "Profil není k dispozici.";
-$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení.";
-$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin.";
-$a->strings["Invalid locator"] = "Neplatný odkaz";
-$a->strings["Invalid email address."] = "Neplatná emailová adresa";
-$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn.";
-$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese.";
-$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli.";
-$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s.";
-$a->strings["Invalid profile URL."] = "Neplatné URL profilu.";
-$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
-$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána.";
-$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu.";
-$a->strings["Hide this contact"] = "Skrýt tento kontakt";
-$a->strings["Welcome home %s."] = "Vítejte doma %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s.";
-$a->strings["Confirm"] = "Potvrdit";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>.";
-$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
-$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
-$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole.";
-$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
-$a->strings["Submit Request"] = "Odeslat žádost";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
-$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
-$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
-$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
-$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
-$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
-$a->strings["Your invitation ID: "] = "Vaše pozvání ID:";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):";
-$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@\$sitename</strong>\".";
-$a->strings["Choose a nickname: "] = "Vyberte přezdívku:";
-$a->strings["Register"] = "Registrovat";
-$a->strings["Import"] = "Import";
-$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
-$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
-$a->strings["Search"] = "Vyhledávání";
-$a->strings["Global Directory"] = "Globální adresář";
-$a->strings["Find on this site"] = "Nalézt na tomto webu";
-$a->strings["Site Directory"] = "Adresář serveru";
-$a->strings["Age: "] = "Věk: ";
-$a->strings["Gender: "] = "Pohlaví: ";
-$a->strings["Gender:"] = "Pohlaví:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Domácí stránka:";
-$a->strings["About:"] = "O mě:";
-$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";
-$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni.";
-$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
-$a->strings["Existing Page Managers"] = "Stávající správci stránky";
-$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
-$a->strings["Potential Delegates"] = "Potenciální delegáti";
-$a->strings["Add"] = "Přidat";
-$a->strings["No entries."] = "Žádné záznamy.";
-$a->strings["Common Friends"] = "Společní přátelé";
-$a->strings["No contacts in common."] = "Žádné společné kontakty.";
-$a->strings["Export account"] = "Exportovat účet";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
-$a->strings["Export all"] = "Exportovat vše";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
-$a->strings["Mood"] = "Nálada";
-$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
-$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
-$a->strings["Friend Suggestions"] = "Návrhy přátel";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
-$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
 $a->strings["Profile deleted."] = "Profil smazán.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Nový profil vytvořen.";
@@ -1111,80 +1073,74 @@ $a->strings["Work/employment"] = "Práce/zaměstnání";
 $a->strings["School/education"] = "Škola/vzdělání";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
 $a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily";
-$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
-$a->strings["Create New Profile"] = "Vytvořit nový profil";
-$a->strings["Profile Image"] = "Profilový obrázek";
-$a->strings["visible to everybody"] = "viditelné pro všechny";
-$a->strings["Edit visibility"] = "Upravit viditelnost";
-$a->strings["Item not found"] = "Položka nenalezena";
-$a->strings["Edit post"] = "Upravit příspěvek";
-$a->strings["upload photo"] = "nahrát fotky";
-$a->strings["Attach file"] = "Přiložit soubor";
-$a->strings["attach file"] = "přidat soubor";
-$a->strings["web link"] = "webový odkaz";
-$a->strings["Insert video link"] = "Zadejte odkaz na video";
-$a->strings["video link"] = "odkaz na video";
-$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam";
-$a->strings["audio link"] = "odkaz na audio";
-$a->strings["Set your location"] = "Nastavte vaši polohu";
-$a->strings["set location"] = "nastavit místo";
-$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči";
-$a->strings["clear location"] = "vymazat místo";
-$a->strings["Permission settings"] = "Nastavení oprávnění";
-$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy";
-$a->strings["Public post"] = "Veřejný příspěvek";
-$a->strings["Set title"] = "Nastavit titulek";
-$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com";
-$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
-$a->strings["running at web location"] = "běžící na webu";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>.";
-$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com";
-$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:";
-$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace";
-$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
-$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
-$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
-$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici.";
-$a->strings["Visible to:"] = "Viditelné pro:";
-$a->strings["Personal Notes"] = "Osobní poznámky";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Časová konverze";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách";
-$a->strings["UTC time: %s"] = "UTC čas: %s";
-$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s";
-$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s";
-$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:";
-$a->strings["Poke/Prod"] = "Šťouchanec";
-$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést  jinou věc";
-$a->strings["Recipient"] = "Příjemce";
-$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat";
-$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý";
-$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
-$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
-$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu.";
-$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
-$a->strings["%d message sent."] = array(
-       0 => "%d zpráva odeslána.",
-       1 => "%d zprávy odeslány.",
-       2 => "%d zprávy odeslány.",
-);
-$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
-$a->strings["Send invitations"] = "Poslat pozvánky";
-$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com";
-$a->strings["Photo Albums"] = "Fotoalba";
-$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
+$a->strings["Group created."] = "Skupina vytvořena.";
+$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
+$a->strings["Group not found."] = "Skupina nenalezena.";
+$a->strings["Group name changed."] = "Název skupiny byl změněn.";
+$a->strings["Save Group"] = "Uložit Skupinu";
+$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
+$a->strings["Group Name: "] = "Název skupiny: ";
+$a->strings["Group removed."] = "Skupina odstraněna. ";
+$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
+$a->strings["Group Editor"] = "Editor skupin";
+$a->strings["Members"] = "Členové";
+$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
+$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:";
+$a->strings["Source input: "] = "Zdrojový vstup: ";
+$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Not available."] = "Není k dispozici.";
+$a->strings["Contact added"] = "Kontakt přidán";
+$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
+$a->strings["System Notifications"] = "Systémová upozornění";
+$a->strings["New Message"] = "Nová zpráva";
+$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
+$a->strings["Messages"] = "Zprávy";
+$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
+$a->strings["Message deleted."] = "Zpráva odstraněna.";
+$a->strings["Conversation removed."] = "Konverzace odstraněna.";
+$a->strings["No messages."] = "Žádné zprávy.";
+$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
+$a->strings["You and %s"] = "Vy a %s";
+$a->strings["%s and You"] = "%s a Vy";
+$a->strings["Delete conversation"] = "Odstranit konverzaci";
+$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d zpráva",
+       1 => "%d zprávy",
+       2 => "%d zpráv",
+);
+$a->strings["Message not available."] = "Zpráva není k dispozici.";
+$a->strings["Delete message"] = "Smazat zprávu";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
+$a->strings["Send Reply"] = "Poslat odpověď";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s";
+$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Časová konverze";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách";
+$a->strings["UTC time: %s"] = "UTC čas: %s";
+$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s";
+$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s";
+$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:";
+$a->strings["Save to Folder:"] = "Uložit do složky:";
+$a->strings["- select -"] = "- vyber -";
+$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
+$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
+$a->strings["Visible To"] = "Viditelný pro";
+$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )";
+$a->strings["No contacts."] = "Žádné kontakty.";
+$a->strings["View Contacts"] = "Zobrazit kontakty";
+$a->strings["People Search"] = "Vyhledávání lidí";
+$a->strings["No matches"] = "Žádné shody";
 $a->strings["Upload New Photos"] = "Nahrát nové fotografie";
 $a->strings["Contact information unavailable"] = "Kontakt byl zablokován";
 $a->strings["Album not found."] = "Album nenalezeno.";
@@ -1196,7 +1152,10 @@ $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s
 $a->strings["a photo"] = "fotografie";
 $a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti";
 $a->strings["Image file is empty."] = "Soubor obrázku je prázdný.";
+$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
+$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
 $a->strings["No photos selected"] = "Není vybrána žádná fotografie";
+$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií.";
 $a->strings["Upload Photos"] = "Nahrání fotografií ";
 $a->strings["New album name: "] = "Název nového alba: ";
@@ -1226,186 +1185,227 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam
 $a->strings["Private photo"] = "Soukromé fotografie";
 $a->strings["Public photo"] = "Veřejné fotografie";
 $a->strings["Share"] = "Sdílet";
+$a->strings["View Album"] = "Zobrazit album";
 $a->strings["Recent Photos"] = "Aktuální fotografie";
-$a->strings["Account approved."] = "Účet schválen.";
-$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
-$a->strings["Please login."] = "Přihlaste se, prosím.";
-$a->strings["Move account"] = "Přesunout účet";
-$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory";
-$a->strings["Account file"] = "Soubor s účtem";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
-$a->strings["Item not available."] = "Položka není k dispozici.";
-$a->strings["Item was not found."] = "Položka nebyla nalezena.";
-$a->strings["Delete this item?"] = "Odstranit tuto položku?";
-$a->strings["show fewer"] = "zobrazit méně";
-$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
-$a->strings["Create a New Account"] = "Vytvořit nový účet";
-$a->strings["Logout"] = "Odhlásit se";
-$a->strings["Login"] = "Přihlásit se";
-$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:";
-$a->strings["Password: "] = "Heslo: ";
-$a->strings["Remember me"] = "Pamatuj si mne";
-$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: ";
-$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
-$a->strings["Website Terms of Service"] = "Podmínky použití serveru";
-$a->strings["terms of service"] = "podmínky použití";
-$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
-$a->strings["privacy policy"] = "Ochrana soukromí";
-$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
-$a->strings["Edit profile"] = "Upravit profil";
-$a->strings["Message"] = "Zpráva";
-$a->strings["Profiles"] = "Profily";
-$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
-$a->strings["Network:"] = "Síť:";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[Dnes]";
-$a->strings["Birthday Reminders"] = "Připomínka narozenin";
-$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
-$a->strings["[No description]"] = "[Žádný popis]";
-$a->strings["Event Reminders"] = "Připomenutí událostí";
-$a->strings["Events this week:"] = "Události tohoto týdne:";
-$a->strings["Status"] = "Stav";
-$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
-$a->strings["Profile Details"] = "Detaily profilu";
-$a->strings["Videos"] = "Videa";
-$a->strings["Events and Calendar"] = "Události a kalendář";
-$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
-$a->strings["This entry was edited"] = "Tento záznam byl editován";
-$a->strings["ignore thread"] = "ignorovat vlákno";
-$a->strings["unignore thread"] = "přestat ignorovat vlákno";
-$a->strings["toggle ignore status"] = "přepnout stav Ignorování";
-$a->strings["ignored"] = "ignorován";
-$a->strings["Categories:"] = "Kategorie:";
-$a->strings["Filed under:"] = "Vyplněn pod:";
-$a->strings["via"] = "přes";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám.";
-$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám.";
-$a->strings["Logged out."] = "Odhlášen.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
-$a->strings["The error message was:"] = "Chybová zpráva byla:";
-$a->strings["Add New Contact"] = "Přidat nový kontakt";
-$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
-$a->strings["%d invitation available"] = array(
-       0 => "Pozvánka %d k dispozici",
-       1 => "Pozvánky %d k dispozici",
-       2 => "Pozvánky %d k dispozici",
-);
-$a->strings["Find People"] = "Nalézt lidi";
-$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
-$a->strings["Connect/Follow"] = "Připojit / Následovat";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
-$a->strings["Similar Interests"] = "Podobné zájmy";
-$a->strings["Random Profile"] = "Náhodný Profil";
-$a->strings["Invite Friends"] = "Pozvat přátele";
-$a->strings["Networks"] = "Sítě";
-$a->strings["All Networks"] = "Všechny sítě";
-$a->strings["Saved Folders"] = "Uložené složky";
-$a->strings["Everything"] = "Všechno";
-$a->strings["Categories"] = "Kategorie";
-$a->strings["General Features"] = "Obecné funkčnosti";
-$a->strings["Multiple Profiles"] = "Vícenásobné profily";
-$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
-$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
-$a->strings["Richtext Editor"] = "Richtext Editor";
-$a->strings["Enable richtext editor"] = "Povolit richtext editor";
-$a->strings["Post Preview"] = "Náhled příspěvku";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
-$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně";
-$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety";
-$a->strings["Search by Date"] = "Vyhledávat dle Data";
-$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
-$a->strings["Group Filter"] = "Skupinový Filtr";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
-$a->strings["Network Filter"] = "Síťový Filtr";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
-$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
-$a->strings["Network Tabs"] = "Síťové záložky";
-$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
-$a->strings["Network New Tab"] = "Nová záložka síť";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
-$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
-$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
-$a->strings["Multiple Deletion"] = "Násobné mazání";
-$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
-$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
-$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
-$a->strings["Tagging"] = "Štítkování";
-$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
-$a->strings["Post Categories"] = "Kategorie příspěvků";
-$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
-$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
-$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
-$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
-$a->strings["Star Posts"] = "Příspěvky s hvězdou";
-$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
-$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky";
-$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno";
-$a->strings["Connect URL missing."] = "Chybí URL adresa.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál.";
-$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace.";
-$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno";
-$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.";
-$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení.";
-$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace.";
-$a->strings["following"] = "následující";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem.";
-$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
-$a->strings["Everybody"] = "Všichni";
-$a->strings["edit"] = "editovat";
-$a->strings["Edit group"] = "Editovat skupinu";
-$a->strings["Create a new group"] = "Vytvořit novou skupinu";
-$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
-$a->strings["Miscellaneous"] = "Různé";
-$a->strings["year"] = "rok";
-$a->strings["month"] = "měsíc";
-$a->strings["day"] = "den";
-$a->strings["never"] = "nikdy";
-$a->strings["less than a second ago"] = "méně než před sekundou";
-$a->strings["years"] = "let";
-$a->strings["months"] = "měsíců";
-$a->strings["week"] = "týdnem";
-$a->strings["weeks"] = "týdny";
-$a->strings["days"] = "dnů";
-$a->strings["hour"] = "hodina";
-$a->strings["hours"] = "hodin";
-$a->strings["minute"] = "minuta";
-$a->strings["minutes"] = "minut";
-$a->strings["second"] = "sekunda";
-$a->strings["seconds"] = "sekund";
-$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s";
-$a->strings["%s's birthday"] = "%s má narozeniny";
-$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s";
-$a->strings["Visible to everybody"] = "Viditelné pro všechny";
-$a->strings["show"] = "zobrazit";
-$a->strings["don't show"] = "nikdy nezobrazit";
-$a->strings["[no subject]"] = "[bez předmětu]";
-$a->strings["stopped following"] = "následování zastaveno";
-$a->strings["Poke"] = "Šťouchnout";
-$a->strings["View Status"] = "Zobrazit Status";
-$a->strings["View Profile"] = "Zobrazit Profil";
-$a->strings["View Photos"] = "Zobrazit Fotky";
-$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
-$a->strings["Edit Contact"] = "Editovat Kontakty";
-$a->strings["Drop Contact"] = "Odstranit kontakt";
-$a->strings["Send PM"] = "Poslat soukromou zprávu";
-$a->strings["Welcome "] = "Vítejte ";
-$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii";
-$a->strings["Welcome back "] = "Vítejte zpět ";
-$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.";
-$a->strings["event"] = "událost";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP";
+$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?";
+$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d";
+$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
+$a->strings["No videos selected"] = "Není vybráno žádné video";
+$a->strings["View Video"] = "Zobrazit video";
+$a->strings["Recent Videos"] = "Aktuální Videa";
+$a->strings["Upload New Videos"] = "Nahrát nová videa";
+$a->strings["Poke/Prod"] = "Šťouchanec";
+$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést  jinou věc";
+$a->strings["Recipient"] = "Příjemce";
+$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat";
+$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
+$a->strings["Export account"] = "Exportovat účet";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
+$a->strings["Export all"] = "Exportovat vše";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
+$a->strings["Common Friends"] = "Společní přátelé";
+$a->strings["No contacts in common."] = "Žádné společné kontakty.";
+$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d";
+$a->strings["Wall Photos"] = "Fotografie na zdi";
+$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
+$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s].";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě.";
+$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
+$a->strings["Upload File:"] = "Nahrát soubor:";
+$a->strings["Select a profile:"] = "Vybrat profil:";
+$a->strings["Upload"] = "Nahrát";
+$a->strings["skip this step"] = "přeskočit tento krok ";
+$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
+$a->strings["Crop Image"] = "Oříznout obrázek";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení.";
+$a->strings["Done Editing"] = "Editace dokončena";
+$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán.";
+$a->strings["Applications"] = "Aplikace";
+$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
+$a->strings["Nothing new here"] = "Zde není nic nového";
+$a->strings["Clear notifications"] = "Smazat notifikace";
+$a->strings["Profile Match"] = "Shoda profilu";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
+$a->strings["is interested in:"] = "zajímá se o:";
+$a->strings["Tag removed"] = "Štítek odstraněn";
+$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
+$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
+$a->strings["Remove"] = "Odstranit";
+$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editovat událost";
+$a->strings["link to source"] = "odkaz na zdroj";
+$a->strings["Create New Event"] = "Vytvořit novou událost";
+$a->strings["Previous"] = "Předchozí";
+$a->strings["hour:minute"] = "hodina:minuta";
+$a->strings["Event details"] = "Detaily události";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány.";
+$a->strings["Event Starts:"] = "Událost začíná:";
+$a->strings["Required"] = "Vyžadováno";
+$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
+$a->strings["Event Finishes:"] = "Akce končí:";
+$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
+$a->strings["Description:"] = "Popis:";
+$a->strings["Title:"] = "Název:";
+$a->strings["Share this event"] = "Sdílet tuto událost";
+$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni.";
+$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
+$a->strings["Existing Page Managers"] = "Stávající správci stránky";
+$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
+$a->strings["Potential Delegates"] = "Potenciální delegáti";
+$a->strings["Add"] = "Přidat";
+$a->strings["No entries."] = "Žádné záznamy.";
+$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
+$a->strings["Files"] = "Soubory";
+$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
+$a->strings["Remove My Account"] = "Odstranit můj účet";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
+$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
+$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány ";
+$a->strings["Suggest Friends"] = "Navrhněte přátelé";
+$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s";
+$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek.";
+$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn.";
+$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica.";
+$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam.";
+$a->strings["%s posted an update."] = "%s poslal aktualizaci.";
+$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
+$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
+$a->strings["{0} requested registration"] = "{0} požaduje registraci";
+$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s";
+$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s";
+$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s";
+$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s";
+$a->strings["{0} posted"] = "{0} zasláno";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku";
+$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
+$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
+$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
+$a->strings["Discard"] = "Odstranit";
+$a->strings["System"] = "Systém";
+$a->strings["Network"] = "Síť";
+$a->strings["Introductions"] = "Představení";
+$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
+$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
+$a->strings["Notification type: "] = "Typ oznámení: ";
+$a->strings["Friend Suggestion"] = "Návrh přátelství";
+$a->strings["suggested by %s"] = "navrhl %s";
+$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele.";
+$a->strings["if applicable"] = "je-li použitelné";
+$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
+$a->strings["yes"] = "ano";
+$a->strings["no"] = "ne";
+$a->strings["Approve as: "] = "Schválit jako: ";
+$a->strings["Friend"] = "Přítel";
+$a->strings["Sharer"] = "Sdílené";
+$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel";
+$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
+$a->strings["New Follower"] = "Nový následovník";
+$a->strings["No introductions."] = "Žádné představení.";
+$a->strings["Notifications"] = "Upozornění";
+$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
+$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
+$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
+$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
+$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
+$a->strings["No more network notifications."] = "Žádné další síťové upozornění.";
+$a->strings["Network Notifications"] = "Upozornění Sítě";
+$a->strings["No more personal notifications."] = "Žádné další osobní upozornění.";
+$a->strings["Personal Notifications"] = "Osobní upozornění";
+$a->strings["No more home notifications."] = "Žádné další domácí upozornění.";
+$a->strings["Home Notifications"] = "Upozornění na vstupní straně";
+$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
+$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
+$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu.";
+$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
+$a->strings["%d message sent."] = array(
+       0 => "%d zpráva odeslána.",
+       1 => "%d zprávy odeslány.",
+       2 => "%d zprávy odeslány.",
+);
+$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
+$a->strings["Send invitations"] = "Poslat pozvánky";
+$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com";
+$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
+$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
+$a->strings["Welcome to %s"] = "Vítá Vás %s";
+$a->strings["Friends of %s"] = "Přátelé uživatele %s";
+$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
+$a->strings["Add New Contact"] = "Přidat nový kontakt";
+$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
+$a->strings["%d invitation available"] = array(
+       0 => "Pozvánka %d k dispozici",
+       1 => "Pozvánky %d k dispozici",
+       2 => "Pozvánky %d k dispozici",
+);
+$a->strings["Find People"] = "Nalézt lidi";
+$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
+$a->strings["Connect/Follow"] = "Připojit / Následovat";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
+$a->strings["Random Profile"] = "Náhodný Profil";
+$a->strings["Networks"] = "Sítě";
+$a->strings["All Networks"] = "Všechny sítě";
+$a->strings["Saved Folders"] = "Uložené složky";
+$a->strings["Everything"] = "Všechno";
+$a->strings["Categories"] = "Kategorie";
+$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným.";
+$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná.";
+$a->strings["User not found."] = "Uživatel nenalezen";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
+$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id.";
+$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id.";
+$a->strings["Invalid request."] = "Neplatný požadavek.";
+$a->strings["Invalid item."] = "Neplatná položka.";
+$a->strings["Invalid action. "] = "Neplatná akce";
+$a->strings["DB error"] = "DB chyba";
+$a->strings["view full size"] = "zobrazit v plné velikosti";
+$a->strings["Starts:"] = "Začíná:";
+$a->strings["Finishes:"] = "Končí:";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'";
+$a->strings["(no subject)"] = "(Bez předmětu)";
+$a->strings["noreply"] = "neodpovídat";
+$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
+$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
+$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
+$a->strings["The error message was:"] = "Chybová zpráva byla:";
+$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
+$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
+$a->strings["Name too short."] = "Jméno je příliš krátké.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
+$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
+$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem.";
+$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo.";
+$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
+$a->strings["Friends"] = "Přátelé";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s";
 $a->strings["poked"] = "šťouchnut";
 $a->strings["post/item"] = "příspěvek/položka";
@@ -1413,6 +1413,13 @@ $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označi
 $a->strings["remove"] = "odstranit";
 $a->strings["Delete Selected Items"] = "Smazat vybrané položky";
 $a->strings["Follow Thread"] = "Následovat vlákno";
+$a->strings["View Status"] = "Zobrazit Status";
+$a->strings["View Profile"] = "Zobrazit Profil";
+$a->strings["View Photos"] = "Zobrazit Fotky";
+$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
+$a->strings["Edit Contact"] = "Editovat Kontakty";
+$a->strings["Send PM"] = "Poslat soukromou zprávu";
+$a->strings["Poke"] = "Šťouchnout";
 $a->strings["%s likes this."] = "%s se to líbí.";
 $a->strings["%s doesn't like this."] = "%s se to nelíbí.";
 $a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d lidem</span> se to líbí";
@@ -1433,7 +1440,19 @@ $a->strings["permissions"] = "oprávnění";
 $a->strings["Post to Groups"] = "Zveřejnit na Groups";
 $a->strings["Post to Contacts"] = "Zveřejnit na Groups";
 $a->strings["Private post"] = "Soukromý příspěvek";
-$a->strings["view full size"] = "zobrazit v plné velikosti";
+$a->strings["Logged out."] = "Odhlášen.";
+$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku";
+$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
+$a->strings["User creation error"] = "Chyba vytváření uživatele";
+$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d kontakt nenaimporován",
+       1 => "%d kontaktů nenaimporováno",
+       2 => "%d kontakty nenaimporovány",
+);
+$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
 $a->strings["newer"] = "novější";
 $a->strings["older"] = "starší";
 $a->strings["prev"] = "předchozí";
@@ -1498,68 +1517,90 @@ $a->strings["November"] = "Listopadu";
 $a->strings["December"] = "Prosinec";
 $a->strings["bytes"] = "bytů";
 $a->strings["Click to open/close"] = "Klikněte pro otevření/zavření";
-$a->strings["default"] = "standardní";
 $a->strings["Select an alternate language"] = "Vyběr alternativního jazyka";
 $a->strings["activity"] = "aktivita";
 $a->strings["post"] = "příspěvek";
 $a->strings["Item filed"] = "Položka vyplněna";
-$a->strings["Image/photo"] = "Obrázek/fotografie";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>";
-$a->strings["$1 wrote:"] = "$1 napsal:";
-$a->strings["Encrypted content"] = "Šifrovaný obsah";
-$a->strings["(no subject)"] = "(Bez předmětu)";
-$a->strings["noreply"] = "neodpovídat";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'";
-$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno";
-$a->strings["Block immediately"] = "Okamžitě blokovat ";
-$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter";
-$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí";
-$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný";
-$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru";
-$a->strings["Weekly"] = "Týdenně";
-$a->strings["Monthly"] = "Měsíčně";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora konektor";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "App.net";
+$a->strings["Friendica Notification"] = "Friendica Notifikace";
+$a->strings["Thank You,"] = "Děkujeme, ";
+$a->strings["%s Administrator"] = "%s Administrátor";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s.";
+$a->strings["a private message"] = "soukromá zpráva";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s.";
+$a->strings["Name:"] = "Jméno:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Prosím navštivte %s  pokud chcete změnit tento vztah.";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky..";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní";
+$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku.";
 $a->strings[" on Last.fm"] = " na Last.fm";
-$a->strings["Starts:"] = "Začíná:";
-$a->strings["Finishes:"] = "Končí:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Narozeniny:";
-$a->strings["Age:"] = "Věk:";
-$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
-$a->strings["Tags:"] = "Štítky:";
-$a->strings["Religion:"] = "Náboženství:";
-$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
-$a->strings["Musical interests:"] = "Hudební vkus:";
-$a->strings["Books, literature:"] = "Knihy, literatura:";
-$a->strings["Television:"] = "Televize:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
-$a->strings["Love/Romance:"] = "Láska/romance";
-$a->strings["Work/employment:"] = "Práce/zaměstnání:";
-$a->strings["School/education:"] = "Škola/vzdělávání:";
-$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným.";
-$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná.";
-$a->strings["End this session"] = "Konec této relace";
-$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
-$a->strings["Your profile page"] = "Vaše profilová stránka";
-$a->strings["Your photos"] = "Vaše fotky";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem.";
+$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
+$a->strings["Everybody"] = "Všichni";
+$a->strings["edit"] = "editovat";
+$a->strings["Edit group"] = "Editovat skupinu";
+$a->strings["Create a new group"] = "Vytvořit novou skupinu";
+$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
+$a->strings["Connect URL missing."] = "Chybí URL adresa.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál.";
+$a->strings["The profile address specified does not provide adequate information."] = "Uvedená adresa profilu neposkytuje dostatečné informace.";
+$a->strings["An author or name was not found."] = "Autor nebo jméno nenalezeno";
+$a->strings["No browser URL could be matched to this address."] = "Této adrese neodpovídá žádné URL prohlížeče.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem.";
+$a->strings["Use mailto: in front of address to force email check."] = "Použite mailo: před adresou k vynucení emailové kontroly.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení.";
+$a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace.";
+$a->strings["following"] = "následující";
+$a->strings["[no subject]"] = "[bez předmětu]";
+$a->strings["End this session"] = "Konec této relace";
 $a->strings["Your videos"] = "Vaše videa";
-$a->strings["Your events"] = "Vaše události";
-$a->strings["Personal notes"] = "Osobní poznámky";
 $a->strings["Your personal notes"] = "Vaše osobní poznámky";
 $a->strings["Sign in"] = "Přihlásit se";
 $a->strings["Home Page"] = "Domácí stránka";
@@ -1590,39 +1631,123 @@ $a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé
 $a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace";
 $a->strings["Navigation"] = "Navigace";
 $a->strings["Site map"] = "Mapa webu";
-$a->strings["User not found."] = "Uživatel nenalezen";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id.";
-$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id.";
-$a->strings["Invalid request."] = "Neplatný požadavek.";
-$a->strings["Invalid item."] = "Neplatná položka.";
-$a->strings["Invalid action. "] = "Neplatná akce";
-$a->strings["DB error"] = "DB chyba";
-$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
-$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
-$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
-$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
-$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
-$a->strings["Name too short."] = "Jméno je příliš krátké.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
-$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
-$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem.";
-$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo.";
-$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
-$a->strings["Friends"] = "Přátelé";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Narozeniny:";
+$a->strings["Age:"] = "Věk:";
+$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
+$a->strings["Tags:"] = "Štítky:";
+$a->strings["Religion:"] = "Náboženství:";
+$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
+$a->strings["Musical interests:"] = "Hudební vkus:";
+$a->strings["Books, literature:"] = "Knihy, literatura:";
+$a->strings["Television:"] = "Televize:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
+$a->strings["Love/Romance:"] = "Láska/romance";
+$a->strings["Work/employment:"] = "Práce/zaměstnání:";
+$a->strings["School/education:"] = "Škola/vzdělávání:";
+$a->strings["Image/photo"] = "Obrázek/fotografie";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>";
+$a->strings["$1 wrote:"] = "$1 napsal:";
+$a->strings["Encrypted content"] = "Šifrovaný obsah";
+$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno";
+$a->strings["Block immediately"] = "Okamžitě blokovat ";
+$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter";
+$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí";
+$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný";
+$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru";
+$a->strings["Weekly"] = "Týdenně";
+$a->strings["Monthly"] = "Měsíčně";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora konektor";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings["Miscellaneous"] = "Různé";
+$a->strings["year"] = "rok";
+$a->strings["month"] = "měsíc";
+$a->strings["day"] = "den";
+$a->strings["never"] = "nikdy";
+$a->strings["less than a second ago"] = "méně než před sekundou";
+$a->strings["years"] = "let";
+$a->strings["months"] = "měsíců";
+$a->strings["week"] = "týdnem";
+$a->strings["weeks"] = "týdny";
+$a->strings["days"] = "dnů";
+$a->strings["hour"] = "hodina";
+$a->strings["hours"] = "hodin";
+$a->strings["minute"] = "minuta";
+$a->strings["minutes"] = "minut";
+$a->strings["second"] = "sekunda";
+$a->strings["seconds"] = "sekund";
+$a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s";
+$a->strings["%s's birthday"] = "%s má narozeniny";
+$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s";
+$a->strings["General Features"] = "Obecné funkčnosti";
+$a->strings["Multiple Profiles"] = "Vícenásobné profily";
+$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
+$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
+$a->strings["Richtext Editor"] = "Richtext Editor";
+$a->strings["Enable richtext editor"] = "Povolit richtext editor";
+$a->strings["Post Preview"] = "Náhled příspěvku";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
+$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně";
+$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety";
+$a->strings["Search by Date"] = "Vyhledávat dle Data";
+$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
+$a->strings["Group Filter"] = "Skupinový Filtr";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
+$a->strings["Network Filter"] = "Síťový Filtr";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
+$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
+$a->strings["Network Tabs"] = "Síťové záložky";
+$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
+$a->strings["Network New Tab"] = "Nová záložka síť";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
+$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
+$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
+$a->strings["Multiple Deletion"] = "Násobné mazání";
+$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
+$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
+$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
+$a->strings["Tagging"] = "Štítkování";
+$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
+$a->strings["Post Categories"] = "Kategorie příspěvků";
+$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
+$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
+$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
+$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
+$a->strings["Star Posts"] = "Příspěvky s hvězdou";
+$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
+$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky";
+$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno";
 $a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora";
 $a->strings["Attachments:"] = "Přílohy:";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám.";
+$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám.";
+$a->strings["Visible to everybody"] = "Viditelné pro všechny";
 $a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?";
 $a->strings["Archives"] = "Archív";
+$a->strings["Embedded content"] = "vložený obsah";
+$a->strings["Embedding disabled"] = "Vkládání zakázáno";
+$a->strings["Welcome "] = "Vítejte ";
+$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii";
+$a->strings["Welcome back "] = "Vítejte zpět ";
+$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."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.";
 $a->strings["Male"] = "Muž";
 $a->strings["Female"] = "Žena";
 $a->strings["Currently Male"] = "V současné době muž";
@@ -1680,114 +1805,5 @@ $a->strings["Uncertain"] = "Nejistý";
 $a->strings["It's complicated"] = "Je to složité";
 $a->strings["Don't care"] = "Nezajímá";
 $a->strings["Ask me"] = "Zeptej se mě";
-$a->strings["Friendica Notification"] = "Friendica Notifikace";
-$a->strings["Thank You,"] = "Děkujeme, ";
-$a->strings["%s Administrator"] = "%s Administrátor";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s.";
-$a->strings["a private message"] = "soukromá zpráva";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s.";
-$a->strings["Name:"] = "Jméno:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Prosím navštivte %s  pokud chcete změnit tento vztah.";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky..";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní";
-$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku.";
-$a->strings["Embedded content"] = "vložený obsah";
-$a->strings["Embedding disabled"] = "Vkládání zakázáno";
-$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku";
-$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
-$a->strings["User creation error"] = "Chyba vytváření uživatele";
-$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d kontakt nenaimporován",
-       1 => "%d kontaktů nenaimporováno",
-       2 => "%d kontakty nenaimporovány",
-);
-$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
-$a->strings["toggle mobile"] = "přepnout mobil";
-$a->strings["Theme settings"] = "Nastavení téma";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)";
-$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře.";
-$a->strings["Set theme width"] = "Nastavení šířku grafické šablony";
-$a->strings["Color scheme"] = "Barevné schéma";
-$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku  pro přízpěvky a komentáře.";
-$a->strings["Set colour scheme"] = "Nastavit barevné schéma";
-$a->strings["Alignment"] = "Zarovnání";
-$a->strings["Left"] = "Vlevo";
-$a->strings["Center"] = "Uprostřed";
-$a->strings["Posts font size"] = "Velikost písma u příspěvků";
-$a->strings["Textareas font size"] = "Velikost písma textů";
-$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec";
-$a->strings["Set color scheme"] = "Nastavení barevného schematu";
-$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers";
-$a->strings["Community Pages"] = "Komunitní stránky";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Komunitní profily";
-$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
-$a->strings["Connect Services"] = "Propojené služby";
-$a->strings["Find Friends"] = "Nalézt Přátele";
-$a->strings["Last users"] = "Poslední uživatelé";
-$a->strings["Last photos"] = "Poslední fotografie";
-$a->strings["Last likes"] = "Poslední líbí/nelíbí";
-$a->strings["Your contacts"] = "Vaše kontakty";
-$a->strings["Your personal photos"] = "Vaše osobní fotky";
-$a->strings["Local Directory"] = "Lokální Adresář";
-$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers";
-$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:";
-$a->strings["Set style"] = "Nastavit styl";
-$a->strings["greenzero"] = "";
-$a->strings["purplezero"] = "";
-$a->strings["easterbunny"] = "";
-$a->strings["darkzero"] = "";
-$a->strings["comix"] = "";
-$a->strings["slackr"] = "";
-$a->strings["Variations"] = "";
+$a->strings["stopped following"] = "následování zastaveno";
+$a->strings["Drop Contact"] = "Odstranit kontakt";
index ef96bb95c5ff047f808ebde35e2e9358dbd37b93..5fa5d7f62b77f6054f033c3709658be2b45d64cc 100644 (file)
@@ -20,7 +20,7 @@
 # Oliver <post@toktan.org>, 2012
 # Sennewood <sebastian@sebsen.net>, 2013
 # Sennewood <sebastian@sebsen.net>, 2012-2013
-# bavatar <tobias.diekershoff@gmx.net>, 2013-2014
+# bavatar <tobias.diekershoff@gmx.net>, 2013-2015
 # bavatar <tobias.diekershoff@gmx.net>, 2011-2013
 # zottel <transifex@zottel.net>, 2011-2012
 # tschlotfeldt <ts+transifex@ml.tschlotfeldt.de>, 2011
@@ -28,9 +28,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-01-22 17:30+0100\n"
-"PO-Revision-Date: 2015-01-23 14:42+0000\n"
-"Last-Translator: Abrax <webmaster@a-zwenkau.de>\n"
+"POT-Creation-Date: 2015-02-04 11:35+0100\n"
+"PO-Revision-Date: 2015-02-05 09:53+0000\n"
+"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -38,984 +38,1088 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../mod/contacts.php:107
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet"
-
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
-
-#: ../../mod/contacts.php:152
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: ../../mod/contacts.php:185
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: ../../object/Item.php:116 ../../mod/content.php:620
+#: ../../mod/photos.php:1359
+msgid "Private Message"
+msgstr "Private Nachricht"
 
-#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: ../../object/Item.php:120 ../../mod/content.php:728
+#: ../../mod/settings.php:676
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: ../../mod/contacts.php:253 ../../mod/manage.php:96
-#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
-#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
+#: ../../object/Item.php:129 ../../mod/content.php:437
+#: ../../mod/content.php:740 ../../mod/photos.php:1653
+#: ../../include/conversation.php:613
+msgid "Select"
+msgstr "Auswählen"
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: ../../object/Item.php:130 ../../mod/admin.php:985 ../../mod/content.php:438
+#: ../../mod/content.php:741 ../../mod/contacts.php:717
+#: ../../mod/settings.php:677 ../../mod/group.php:171
+#: ../../mod/photos.php:1654 ../../include/conversation.php:614
+msgid "Delete"
+msgstr "Löschen"
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
+msgstr "markieren"
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
+msgstr "markiert"
 
-#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest du wirklich diesen Kontakt löschen?"
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "Thread ignorieren"
 
-#: ../../mod/contacts.php:336 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
-#: ../../include/items.php:4528
-msgid "Yes"
-msgstr "Ja"
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
 
-#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4531
-msgid "Cancel"
-msgstr "Abbrechen"
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../mod/contacts.php:351
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "Ignoriert"
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: ../../mod/contacts.php:393
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../mod/photos.php:1542
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
 
-#: ../../mod/contacts.php:398
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+msgid "like"
+msgstr "mag ich"
 
-#: ../../mod/contacts.php:415
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../mod/photos.php:1543
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
 
-#: ../../mod/contacts.php:418 ../../mod/admin.php:546
-msgid "Never"
-msgstr "Niemals"
+#: ../../object/Item.php:232 ../../mod/content.php:685
+msgid "dislike"
+msgstr "mag ich nicht"
 
-#: ../../mod/contacts.php:422
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "Share this"
+msgstr "Weitersagen"
 
-#: ../../mod/contacts.php:422
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "share"
+msgstr "Teilen"
 
-#: ../../mod/contacts.php:424
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: ../../mod/contacts.php:428
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#: ../../object/Item.php:326 ../../object/Item.php:327
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../include/conversation.php:654
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
-
-#: ../../mod/contacts.php:436
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:981
-msgid "Unblock"
-msgstr "Entsperren"
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:980
-msgid "Block"
-msgstr "Sperren"
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: ../../mod/contacts.php:444
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
+msgstr "zu"
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: ../../mod/contacts.php:450
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../object/Item.php:340 ../../mod/content.php:481
+#: ../../mod/content.php:864 ../../include/conversation.php:674
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../object/Item.php:361 ../../object/Item.php:677 ../../boot.php:745
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696
+msgid "Comment"
+msgstr "Kommentar"
 
-#: ../../mod/contacts.php:457
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../mod/editpost.php:124 ../../mod/content.php:499
+#: ../../mod/content.php:883 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/photos.php:1545
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: ../../mod/contacts.php:460
-msgid "Repair"
-msgstr "Reparieren"
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: ../../mod/contacts.php:463
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: ../../object/Item.php:389 ../../object/Item.php:402
+#: ../../mod/content.php:605 ../../include/text.php:1972
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
 
-#: ../../mod/contacts.php:469
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: ../../object/Item.php:390 ../../boot.php:746 ../../mod/content.php:606
+#: ../../include/contact_widgets.php:205
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: ../../mod/contacts.php:472
-msgid "Contact Editor"
-msgstr "Kontakt Editor"
+#: ../../object/Item.php:675 ../../mod/content.php:707
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694
+msgid "This is you"
+msgstr "Das bist du"
 
-#: ../../mod/contacts.php:474 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../object/Item.php:678 ../../view/theme/perihel/config.php:95
+#: ../../view/theme/diabook/theme.php:633
 #: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/quattro/config.php:64
+#: ../../view/theme/zero-childs/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/clean/config.php:82
 #: ../../view/theme/duepuntozero/config.php:59
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:53
+#: ../../view/theme/vier-mobil/config.php:47 ../../mod/mood.php:137
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/crepair.php:186 ../../mod/content.php:710
+#: ../../mod/contacts.php:475 ../../mod/profiles.php:671
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../mod/localtime.php:45 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
+#: ../../mod/manage.php:110
 msgid "Submit"
 msgstr "Senden"
 
-#: ../../mod/contacts.php:475
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: ../../object/Item.php:679 ../../mod/content.php:711
+msgid "Bold"
+msgstr "Fett"
 
-#: ../../mod/contacts.php:476
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
+#: ../../object/Item.php:680 ../../mod/content.php:712
+msgid "Italic"
+msgstr "Kursiv"
 
-#: ../../mod/contacts.php:477
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: ../../object/Item.php:681 ../../mod/content.php:713
+msgid "Underline"
+msgstr "Unterstrichen"
 
-#: ../../mod/contacts.php:478
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: ../../object/Item.php:682 ../../mod/content.php:714
+msgid "Quote"
+msgstr "Zitat"
 
-#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: ../../object/Item.php:683 ../../mod/content.php:715
+msgid "Code"
+msgstr "Code"
 
-#: ../../mod/contacts.php:484
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: ../../object/Item.php:684 ../../mod/content.php:716
+msgid "Image"
+msgstr "Bild"
 
-#: ../../mod/contacts.php:485
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: ../../object/Item.php:685 ../../mod/content.php:717
+msgid "Link"
+msgstr "Link"
 
-#: ../../mod/contacts.php:486
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: ../../object/Item.php:686 ../../mod/content.php:718
+msgid "Video"
+msgstr "Video"
 
-#: ../../mod/contacts.php:487
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../object/Item.php:687 ../../mod/editpost.php:145
+#: ../../mod/content.php:719 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../include/conversation.php:1126
+msgid "Preview"
+msgstr "Vorschau"
 
-#: ../../mod/contacts.php:489
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: ../../index.php:212 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: ../../mod/contacts.php:493
-msgid "Last update:"
-msgstr "letzte Aktualisierung:"
+#: ../../index.php:256 ../../mod/help.php:90
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: ../../mod/contacts.php:495
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../index.php:259 ../../mod/help.php:93
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
-
-#: ../../mod/contacts.php:504
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: ../../index.php:368 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: ../../mod/contacts.php:505
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../index.php:369 ../../mod/mood.php:114 ../../mod/display.php:499
+#: ../../mod/register.php:42 ../../mod/dfrn_confirm.php:55
+#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:58
+#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10
+#: ../../mod/attach.php:33 ../../mod/regmod.php:110 ../../mod/crepair.php:119
+#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:254
+#: ../../mod/settings.php:102 ../../mod/settings.php:596
+#: ../../mod/settings.php:601 ../../mod/profiles.php:165
+#: ../../mod/profiles.php:603 ../../mod/group.php:19 ../../mod/follow.php:9
+#: ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/viewcontacts.php:24 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/wall_attach.php:55
+#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/events.php:140 ../../mod/delegate.php:12 ../../mod/nogroup.php:25
+#: ../../mod/fsuggest.php:78 ../../mod/item.php:168 ../../mod/item.php:184
+#: ../../mod/notifications.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
+#: ../../include/items.php:4696
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: ../../mod/contacts.php:506
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: ../../index.php:428
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
 
-#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Verberge diesen Kontakt vor anderen"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
+#: ../../include/nav.php:105 ../../include/nav.php:146
+msgid "Home"
+msgstr "Pinnwand"
 
-#: ../../mod/contacts.php:507
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:146
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../mod/contacts.php:508
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2114
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../include/nav.php:77 ../../include/profile_advanced.php:7
+#: ../../include/profile_advanced.php:87
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:508
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: ../../mod/contacts.php:509
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2121
+#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Bilder"
 
-#: ../../mod/contacts.php:510
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2138
+#: ../../mod/events.php:370 ../../include/nav.php:80
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: ../../mod/contacts.php:512
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/contacts.php:512
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Deine privaten Fotos"
 
-#: ../../mod/contacts.php:563
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../view/theme/perihel/theme.php:38
+#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
+#: ../../include/nav.php:129
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: ../../mod/contacts.php:566
-msgid "Suggest potential friends"
-msgstr "Freunde vorschlagen"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: ../../mod/contacts.php:569 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "zeigen"
 
-#: ../../mod/contacts.php:572
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: ../../view/theme/perihel/config.php:97
+#: ../../view/theme/diabook/config.php:150
+#: ../../view/theme/quattro/config.php:66
+#: ../../view/theme/zero-childs/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/clean/config.php:84
+#: ../../view/theme/duepuntozero/config.php:61
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:55
+#: ../../view/theme/vier-mobil/config.php:49
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: ../../mod/contacts.php:575
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: ../../view/theme/perihel/config.php:98
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/zero-childs/cleanzero/config.php:84
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
+msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
 
-#: ../../mod/contacts.php:578
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: ../../view/theme/perihel/config.php:99
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Liniengröße für Beiträge und Kommantare festlegen"
 
-#: ../../mod/contacts.php:582
-msgid "Blocked"
-msgstr "Geblockt"
+#: ../../view/theme/perihel/config.php:100
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Auflösung für die Mittelspalte setzen"
 
-#: ../../mod/contacts.php:585
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:702
+#: ../../include/nav.php:175
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: ../../mod/contacts.php:589
-msgid "Ignored"
-msgstr "Ignoriert"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Deine Kontakte"
 
-#: ../../mod/contacts.php:592
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+#: ../../view/theme/diabook/config.php:158
+msgid "Community Pages"
+msgstr "Foren"
 
-#: ../../mod/contacts.php:596
-msgid "Archived"
-msgstr "Archiviert"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Community-Profile"
 
-#: ../../mod/contacts.php:599
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Letzte Nutzer"
 
-#: ../../mod/contacts.php:603
-msgid "Hidden"
-msgstr "Verborgen"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Zuletzt gemocht"
 
-#: ../../mod/contacts.php:606
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../include/text.php:1966
+msgid "event"
+msgstr "Veranstaltung"
 
-#: ../../mod/contacts.php:654
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+#: ../../include/diaspora.php:2087
+msgid "status"
+msgstr "Status"
 
-#: ../../mod/contacts.php:658
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/subthread.php:87
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1968 ../../include/diaspora.php:2087
+msgid "photo"
+msgstr "Foto"
 
-#: ../../mod/contacts.php:662
-msgid "you are a fan of"
-msgstr "du bist Fan von"
+#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:166
+#: ../../include/conversation.php:137 ../../include/diaspora.php:2103
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Letzte Fotos"
 
-#: ../../mod/contacts.php:701 ../../include/nav.php:175
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Kontakte"
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: ../../mod/contacts.php:705
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
+#: ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: ../../mod/contacts.php:706 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Funde: "
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Freunde finden"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Finde"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
 
-#: ../../mod/contacts.php:712 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Aktualisierungen"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Löschen"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:68
+#: ../../include/contact_widgets.php:35
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
+#: ../../mod/admin.php:1082 ../../mod/admin.php:1303 ../../mod/settings.php:85
+#: ../../include/nav.php:170
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Longitude (X) der Earth Layer"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Latitude (Y) der Earth Layer"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
 
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profil"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Wähle Farbschema"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/display.php:70 ../../mod/display.php:260
-#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
-#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
-#: ../../include/items.php:4487
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: ../../mod/display.php:200 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/display.php:308 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Mitte"
 
-#: ../../mod/display.php:472
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/zero-childs/cleanzero/config.php:86
+#: ../../view/theme/clean/config.php:87
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
+#: ../../view/theme/zero-childs/cleanzero/config.php:83
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+#: ../../view/theme/zero-childs/cleanzero/config.php:85
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Theme Breite festlegen"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Farbschema wählen"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
+#: ../../view/theme/clean/config.php:56
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/user.php:247
+#: ../../include/text.php:1702
+msgid "default"
+msgstr "Standard"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
-#: ../../mod/admin.php:1297 ../../mod/settings.php:85
-#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Einstellungen"
+#: ../../view/theme/clean/config.php:57
+msgid "Midnight"
+msgstr "Mitternacht"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: ../../view/theme/clean/config.php:58
+msgid "Bootstrap"
+msgstr "Bootstrap"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
+#: ../../view/theme/clean/config.php:59
+msgid "Shades of Pink"
+msgstr "Shades of Pink"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
+#: ../../view/theme/clean/config.php:60
+msgid "Lime and Orange"
+msgstr "Lime and Orange"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:665
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: ../../view/theme/clean/config.php:61
+msgid "GeoCities Retro"
+msgstr "GeoCities Retro"
 
-#: ../../mod/newmember.php:36
+#: ../../view/theme/clean/config.php:85
+msgid "Background Image"
+msgstr "Hintergrundbild"
+
+#: ../../view/theme/clean/config.php:85
 msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
+"The URL to a picture (e.g. from your photo album) that should be used as "
+"background image."
+msgstr "Die URL eines Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: ../../view/theme/clean/config.php:86
+msgid "Background Color"
+msgstr "Hintergrundfarbe"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
+#: ../../view/theme/clean/config.php:86
+msgid "HEX value for the background color. Don't include the #"
+msgstr "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an."
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: ../../view/theme/clean/config.php:88
+msgid "font size"
+msgstr "Schriftgröße"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
+#: ../../view/theme/clean/config.php:88
+msgid "base font size for your interface"
+msgstr "Basis-Schriftgröße für dein Interface."
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "greenzero"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "purplezero"
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "darkzero"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "comix"
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "slackr"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variationen"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
+#: ../../view/theme/vier/config.php:56
+#: ../../view/theme/vier-mobil/config.php:50
+msgid "Set style"
+msgstr "Stil auswählen"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
+#: ../../boot.php:744
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
+#: ../../boot.php:747
+msgid "show fewer"
+msgstr "weniger anzeigen"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: ../../boot.php:1117
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
+#: ../../boot.php:1235
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Gruppen"
+#: ../../boot.php:1236 ../../mod/register.php:269 ../../include/nav.php:109
+msgid "Register"
+msgstr "Registrieren"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: ../../boot.php:1260 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Abmelden"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
+#: ../../boot.php:1261 ../../mod/bookmarklet.php:12 ../../include/nav.php:92
+msgid "Login"
+msgstr "Anmeldung"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: ../../boot.php:1263
+msgid "Nickname or Email address: "
+msgstr "Spitzname oder E-Mail-Adresse: "
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+#: ../../boot.php:1264
+msgid "Password: "
+msgstr "Passwort: "
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: ../../boot.php:1265
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: ../../boot.php:1268
+msgid "Or login using OpenID: "
+msgstr "Oder melde dich mit deiner OpenID an: "
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
+#: ../../boot.php:1274
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: ../../boot.php:1275 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
+#: ../../boot.php:1277
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: ../../boot.php:1278
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: ../../boot.php:1280
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
 
-#: ../../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
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: ../../boot.php:1281
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+#: ../../boot.php:1414
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+#: ../../boot.php:1453 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: ../../boot.php:1496 ../../boot.php:1630
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Bildgröße überschreitet das Limit von %d"
+#: ../../boot.php:1563 ../../mod/suggest.php:90 ../../mod/match.php:58
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
+msgstr "Verbinden"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: ../../boot.php:1595
+msgid "Message"
+msgstr "Nachricht"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: ../../boot.php:1601 ../../include/nav.php:173
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: ../../boot.php:1601
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Hochladen"
+#: ../../boot.php:1606 ../../boot.php:1632 ../../mod/profiles.php:789
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "oder"
+#: ../../boot.php:1607 ../../mod/profiles.php:790
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: ../../boot.php:1617 ../../mod/profiles.php:801
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: ../../boot.php:1620 ../../mod/profiles.php:803
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: ../../boot.php:1621 ../../mod/profiles.php:804
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: ../../boot.php:1643 ../../mod/directory.php:136 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:170
+msgid "Location:"
+msgstr "Ort:"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: ../../boot.php:1645 ../../mod/directory.php:138
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: ../../boot.php:1648 ../../mod/directory.php:140
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: ../../boot.php:1650 ../../mod/directory.php:142
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1965 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "Foto"
+#: ../../boot.php:1652 ../../mod/directory.php:144
+#: ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Über:"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "Status"
+#: ../../boot.php:1701
+msgid "Network:"
+msgstr "Netzwerk"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: ../../boot.php:1731 ../../boot.php:1817
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: ../../boot.php:1732 ../../boot.php:1818
+msgid "d"
+msgstr "d. F"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: ../../boot.php:1777 ../../boot.php:1858
+msgid "[today]"
+msgstr "[heute]"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: ../../boot.php:1789
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Entfernen"
+#: ../../boot.php:1790
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: ../../boot.php:1851
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: ../../boot.php:1869
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:955
-msgid "Save"
-msgstr "Speichern"
+#: ../../boot.php:1870
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: ../../boot.php:2107 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: ../../boot.php:2110
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: ../../boot.php:2117
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: ../../boot.php:2124 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Videos"
 
-#: ../../mod/item.php:964
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
+#: ../../boot.php:2141
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: ../../mod/item.php:966
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: ../../boot.php:2145 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/item.php:967
+#: ../../boot.php:2148
+msgid "Only You Can See This"
+msgstr "Nur du kannst das sehen"
+
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
+
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stimmung"
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
+
+#: ../../mod/display.php:82 ../../mod/display.php:284
+#: ../../mod/display.php:503 ../../mod/decrypt.php:15 ../../mod/admin.php:169
+#: ../../mod/admin.php:1030 ../../mod/admin.php:1243 ../../mod/notice.php:15
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4500
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
+
+#: ../../mod/display.php:212 ../../mod/_search.php:89
+#: ../../mod/directory.php:33 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:762 ../../mod/community.php:18
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/videos.php:115
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
+
+#: ../../mod/display.php:332 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
+
+#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
+
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
+
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
+
+#: ../../mod/friendica.php:63
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
+
+#: ../../mod/friendica.php:65
 msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
 
-#: ../../mod/item.php:971
+#: ../../mod/friendica.php:67
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+
+#: ../../mod/friendica.php:68
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
+
+#: ../../mod/friendica.php:82
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps"
+
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: ../../mod/register.php:96
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: ../../mod/register.php:233 ../../mod/api.php:105 ../../mod/suggest.php:29
+#: ../../mod/dfrn_request.php:830 ../../mod/contacts.php:337
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/profiles.php:646
+#: ../../mod/profiles.php:649 ../../mod/message.php:209
+#: ../../include/items.php:4541
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../mod/register.php:234 ../../mod/api.php:106
+#: ../../mod/dfrn_request.php:830 ../../mod/settings.php:1010
+#: ../../mod/settings.php:1016 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1028 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1045
+#: ../../mod/settings.php:1051 ../../mod/settings.php:1081
+#: ../../mod/settings.php:1082 ../../mod/settings.php:1083
+#: ../../mod/settings.php:1084 ../../mod/settings.php:1085
+#: ../../mod/profiles.php:646 ../../mod/profiles.php:650
+msgid "No"
+msgstr "Nein"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "ID deiner Einladung: "
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: ../../mod/register.php:255 ../../mod/admin.php:603
+msgid "Registration"
+msgstr "Registrierung"
+
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vollständiger Name (z.B. Max Mustermann): "
+
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
+
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
+
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
+
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere dein Profil auf diese Friendica Instanz"
 
 #: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
-#: ../../mod/profiles.php:596
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
+#: ../../mod/profiles.php:615
 msgid "Profile not found."
 msgstr "Profil nicht gefunden."
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
+#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
 msgid "Contact not found."
 msgstr "Kontakt nicht gefunden."
 
@@ -1097,7 +1201,7 @@ msgid "Unable to update your contact profile details on our system"
 msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
 
 #: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:3979
+#: ../../include/items.php:3992
 msgid "[Name Withheld]"
 msgstr "[Name unterdrückt]"
 
@@ -1106,55 +1210,23 @@ msgstr "[Name unterdrückt]"
 msgid "%1$s has joined %2$s"
 msgstr "%1$s ist %2$s beigetreten"
 
-#: ../../mod/profile.php:21 ../../boot.php:1453
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
-
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
-
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
-
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
-
-#: ../../mod/videos.php:301 ../../include/text.php:1402
-msgid "View Video"
-msgstr "Video ansehen"
-
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Album betrachten"
-
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Neueste Videos"
-
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
-
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde dich an um fortzufahren."
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: ../../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 "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
 
 #: ../../mod/lostpass.php:19
 msgid "No valid account found."
@@ -1208,10 +1280,6 @@ msgid ""
 "Password reset failed."
 msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1275
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
-
 #: ../../mod/lostpass.php:110
 msgid "Your password has been reset as requested."
 msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
@@ -1282,2217 +1350,1997 @@ msgstr "Spitzname oder E-Mail:"
 msgid "Reset"
 msgstr "Zurücksetzen"
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
-
-#: ../../mod/like.php:168 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
-
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit dir in Kontakt treten"
-
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} schickte dir eine Nachricht"
-
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
-
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} kommentierte einen Beitrag von %s"
-
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} mag %ss Beitrag"
-
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} mag %ss Beitrag nicht"
-
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} ist jetzt mit %s befreundet"
-
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} hat etwas veröffentlicht"
-
-#: ../../mod/ping.php:281
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
-
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} hat dich in einem Beitrag erwähnt"
-
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Keine Kontakte."
-
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
-
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
-
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerfen"
-
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "System"
-
-#: ../../mod/notifications.php:83 ../../include/nav.php:143
-msgid "Network"
-msgstr "Netzwerk"
-
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Persönlich"
-
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Pinnwand"
-
-#: ../../mod/notifications.php:98 ../../include/nav.php:152
-msgid "Introductions"
-msgstr "Kontaktanfragen"
-
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
-
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
-
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
-
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
-
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
-
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
-
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "falls anwendbar"
-
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:977
-msgid "Approve"
-msgstr "Genehmigen"
-
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Behauptet dich zu kennen: "
-
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ja"
-
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "nein"
-
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Genehmigen als: "
-
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Freund"
-
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Teilenden"
-
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
-
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
-
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
-
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
-
-#: ../../mod/notifications.php:220 ../../include/nav.php:153
-msgid "Notifications"
-msgstr "Benachrichtigungen"
-
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
-
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
-
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
-
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
-
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
-
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
-
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
-
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
-
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
-
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Keine weiteren persönlichen Benachrichtigungen"
-
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
-
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
-
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
-
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
-
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
-
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
-
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
-
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
-
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
-
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
-
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
-
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
-
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
-
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
-
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
-
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
-
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
-
-#: ../../mod/message.php:9 ../../include/nav.php:162
-msgid "New Message"
-msgstr "Neue Nachricht"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
 msgid "No recipient selected."
 msgstr "Kein Empfänger gewählt."
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Konnte deinen Heimatort nicht bestimmen."
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
 msgid "Message could not be sent."
 msgstr "Nachricht konnte nicht gesendet werden."
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
 msgid "Message collection failure."
 msgstr "Konnte Nachrichten nicht abrufen."
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
 msgid "Message sent."
 msgstr "Nachricht gesendet."
 
-#: ../../mod/message.php:182 ../../include/nav.php:159
-msgid "Messages"
-msgstr "Nachrichten"
-
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest du wirklich diese Nachricht löschen?"
-
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
-
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
 #: ../../mod/message.php:283 ../../mod/message.php:291
 #: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
 #: ../../include/conversation.php:1002 ../../include/conversation.php:1020
 msgid "Please enter a link URL:"
 msgstr "Bitte gib die URL des Links ein:"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
 msgid "Send Private Message"
 msgstr "Private Nachricht senden"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
+#: ../../mod/wallmessage.php:143
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
 msgid "To:"
 msgstr "An:"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
 msgid "Subject:"
 msgstr "Betreff:"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
+#: ../../mod/message.php:558 ../../mod/invite.php:134
 msgid "Your message:"
 msgstr "Deine Nachricht:"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
 #: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../mod/message.php:332 ../../mod/message.php:562
 #: ../../include/conversation.php:1091
 msgid "Upload photo"
 msgstr "Foto hochladen"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
 #: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../mod/message.php:333 ../../mod/message.php:563
 #: ../../include/conversation.php:1095
 msgid "Insert web link"
 msgstr "Einen Link einfügen"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Bitte warten"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s und du"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst."
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
+
+#: ../../mod/newmember.php:36 ../../mod/profiles.php:684
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
+
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
+
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
+
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
+
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
+
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen."
+
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
+
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
+
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
+
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
+
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Emails Importieren"
+
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: ../../mod/message.php:548
+#: ../../mod/newmember.php:58
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst."
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Kontakteinstellungen reparieren"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Gruppen"
 
-#: ../../mod/crepair.php:141
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
+
+#: ../../mod/newmember.php:70
 msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: ../../mod/crepair.php:142
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
+
+#: ../../mod/newmember.php:73
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst."
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest du wirklich diese Empfehlung löschen?"
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
-#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
-#: ../../mod/settings.php:642
-msgid "Name"
-msgstr "Name"
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:844 ../../mod/contacts.php:340
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1129
+#: ../../include/items.php:4544
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "Konto-URL"
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL für Freundschaftsanfragen"
+#: ../../mod/network.php:185 ../../mod/_search.php:21 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+#: ../../mod/network.php:194 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
+msgstr "hinzufügen"
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr "Entfernte Konten"
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: ../../mod/crepair.php:176
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."
+#: ../../mod/network.php:371 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personensuche"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Neue"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Bilder"
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Dateien"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Markierte"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:596
-msgid "Site"
-msgstr "Seite"
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
-msgid "Users"
-msgstr "Nutzer"
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
-msgid "Themes"
-msgstr "Themen"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "DB Updates"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Gruppe: "
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
-msgid "Logs"
-msgstr "Protokolle"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Kontakt: "
+
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
 
-#: ../../mod/admin.php:128 ../../include/nav.php:182
-msgid "Admin"
-msgstr "Administration"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: ../../mod/admin.php:129
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: ../../mod/admin.php:131
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:924
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:925
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:926
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:927
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: ../../mod/admin.php:194
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systemtest"
 
-#: ../../mod/admin.php:195
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: ../../mod/install.php:207 ../../mod/events.php:373
+msgid "Next"
+msgstr "Nächste"
 
-#: ../../mod/admin.php:214
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
-#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
-#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: ../../mod/admin.php:220
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."
 
-#: ../../mod/admin.php:222
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
 
-#: ../../mod/admin.php:224
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."
 
-#: ../../mod/admin.php:225
-msgid "Version"
-msgstr "Version"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: ../../mod/admin.php:229
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: ../../mod/admin.php:252
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: ../../mod/admin.php:500
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../mod/admin.php:529 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: ../../mod/admin.php:547
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
 
-#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "immer wieder"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
 
-#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Stündlich"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Täglich"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/admin.php:556
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: ../../mod/admin.php:579
-msgid "Closed"
-msgstr "Geschlossen"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
 
-#: ../../mod/admin.php:580
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: ../../mod/admin.php:581
-msgid "Open"
-msgstr "Offen"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: ../../mod/admin.php:585
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: ../../mod/admin.php:586
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: ../../mod/admin.php:587
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
-#: ../../mod/admin.php:1417 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: ../../mod/admin.php:598 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Registrierung"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/admin.php:599
-msgid "File upload"
-msgstr "Datei hochladen"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
 
-#: ../../mod/admin.php:600
-msgid "Policies"
-msgstr "Regeln"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: ../../mod/admin.php:601
-msgid "Advanced"
-msgstr "Erweitert"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: ../../mod/admin.php:602
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: ../../mod/admin.php:603
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: ../../mod/admin.php:606
-msgid "Site name"
-msgstr "Seitenname"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: ../../mod/admin.php:607
-msgid "Host name"
-msgstr "Host Name"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: ../../mod/admin.php:608
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: ../../mod/admin.php:609
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../mod/admin.php:609
+#: ../../mod/install.php:397
 msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden."
-
-#: ../../mod/admin.php:610
-msgid "System language"
-msgstr "Systemsprache"
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: ../../mod/admin.php:611
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/admin.php:611
+#: ../../mod/install.php:409
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: ../../mod/admin.php:612
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: ../../mod/admin.php:612
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: ../../mod/admin.php:613
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: ../../mod/admin.php:613
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: ../../mod/admin.php:614
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
 
-#: ../../mod/admin.php:614
+#: ../../mod/install.php:440
 msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: ../../mod/admin.php:615
-msgid "Old style 'Share'"
-msgstr "Altes \"Teilen\" Element"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
 
-#: ../../mod/admin.php:615
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: ../../mod/admin.php:616
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
 
-#: ../../mod/admin.php:616
+#: ../../mod/install.php:455
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
 
-#: ../../mod/admin.php:617
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
 
-#: ../../mod/admin.php:617
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: ../../mod/admin.php:618
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: ../../mod/admin.php:618
+#: ../../mod/install.php:472
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: ../../mod/admin.php:619
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: ../../mod/admin.php:619
+#: ../../mod/install.php:484
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
 
-#: ../../mod/admin.php:620
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: ../../mod/admin.php:620
+#: ../../mod/install.php:524
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
-
-#: ../../mod/admin.php:622
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
 
-#: ../../mod/admin.php:623
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: ../../mod/admin.php:623
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag.   Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
+#: ../../mod/admin.php:104 ../../mod/admin.php:601
+msgid "Site"
+msgstr "Seite"
 
-#: ../../mod/admin.php:624
-msgid "Register text"
-msgstr "Registrierungstext"
+#: ../../mod/admin.php:105 ../../mod/admin.php:976 ../../mod/admin.php:991
+msgid "Users"
+msgstr "Nutzer"
 
-#: ../../mod/admin.php:624
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: ../../mod/admin.php:106 ../../mod/admin.php:1080 ../../mod/admin.php:1133
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/admin.php:625
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1301 ../../mod/admin.php:1335
+msgid "Themes"
+msgstr "Themen"
 
-#: ../../mod/admin.php:625
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: ../../mod/admin.php:626
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1422
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: ../../mod/admin.php:627
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: ../../mod/admin.php:627
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/admin.php:130 ../../include/nav.php:182
+msgid "Admin"
+msgstr "Administration"
 
-#: ../../mod/admin.php:628
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: ../../mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: ../../mod/admin.php:628
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: ../../mod/admin.php:629
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: ../../mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: ../../mod/admin.php:629
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
+#: ../../mod/admin.php:193 ../../mod/admin.php:930
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: ../../mod/admin.php:630
-msgid "Global directory update URL"
-msgstr "URL für Updates beim weltweiten Verzeichnis"
+#: ../../mod/admin.php:194 ../../mod/admin.php:931
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: ../../mod/admin.php:630
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
+#: ../../mod/admin.php:195 ../../mod/admin.php:932
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: ../../mod/admin.php:631
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: ../../mod/admin.php:196 ../../mod/admin.php:933
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: ../../mod/admin.php:631
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: ../../mod/admin.php:197
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: ../../mod/admin.php:632
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: ../../mod/admin.php:198
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: ../../mod/admin.php:632
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
+#: ../../mod/admin.php:217
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: ../../mod/admin.php:633
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: ../../mod/admin.php:222 ../../mod/admin.php:600 ../../mod/admin.php:975
+#: ../../mod/admin.php:1079 ../../mod/admin.php:1132 ../../mod/admin.php:1300
+#: ../../mod/admin.php:1334 ../../mod/admin.php:1421
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/admin.php:633
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
+#: ../../mod/admin.php:223
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../mod/admin.php:634
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: ../../mod/admin.php:225
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: ../../mod/admin.php:634
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
+#: ../../mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: ../../mod/admin.php:635
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: ../../mod/admin.php:228
+msgid "Version"
+msgstr "Version"
 
-#: ../../mod/admin.php:635
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
+#: ../../mod/admin.php:232
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: ../../mod/admin.php:636
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: ../../mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
 
-#: ../../mod/admin.php:636
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
+#: ../../mod/admin.php:505
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: ../../mod/admin.php:637
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: ../../mod/admin.php:534 ../../mod/settings.php:828
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: ../../mod/admin.php:637
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: ../../mod/admin.php:551 ../../mod/contacts.php:419
+msgid "Never"
+msgstr "Niemals"
 
-#: ../../mod/admin.php:638
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: ../../mod/admin.php:552
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: ../../mod/admin.php:638
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: ../../mod/admin.php:553 ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: ../../mod/admin.php:639
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: ../../mod/admin.php:554 ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: ../../mod/admin.php:639
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
+#: ../../mod/admin.php:555 ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: ../../mod/admin.php:640
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: ../../mod/admin.php:556 ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Täglich"
 
-#: ../../mod/admin.php:640
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: ../../mod/admin.php:561
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: ../../mod/admin.php:641
-msgid "Show Community Page"
-msgstr "Gemeinschaftsseite anzeigen"
+#: ../../mod/admin.php:584
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../mod/admin.php:641
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
+#: ../../mod/admin.php:585
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: ../../mod/admin.php:642
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: ../../mod/admin.php:586
+msgid "Open"
+msgstr "Offen"
 
-#: ../../mod/admin.php:642
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
+#: ../../mod/admin.php:590
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: ../../mod/admin.php:643
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: ../../mod/admin.php:591
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: ../../mod/admin.php:643
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
+#: ../../mod/admin.php:592
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
 
-#: ../../mod/admin.php:644
-msgid "Enable Diaspora support"
-msgstr "Diaspora-Support aktivieren"
+#: ../../mod/admin.php:602 ../../mod/admin.php:1134 ../../mod/admin.php:1336
+#: ../../mod/admin.php:1423 ../../mod/settings.php:614
+#: ../../mod/settings.php:724 ../../mod/settings.php:798
+#: ../../mod/settings.php:880 ../../mod/settings.php:1113
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: ../../mod/admin.php:644
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: ../../mod/admin.php:604
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: ../../mod/admin.php:645
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: ../../mod/admin.php:605
+msgid "Policies"
+msgstr "Regeln"
 
-#: ../../mod/admin.php:645
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
+#: ../../mod/admin.php:606
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: ../../mod/admin.php:646
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: ../../mod/admin.php:607
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:608
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: ../../mod/admin.php:647
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: ../../mod/admin.php:611
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../mod/admin.php:648
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../mod/admin.php:612
+msgid "Host name"
+msgstr "Host Name"
 
-#: ../../mod/admin.php:649
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: ../../mod/admin.php:613
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: ../../mod/admin.php:649
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
+#: ../../mod/admin.php:614
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/admin.php:650
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: ../../mod/admin.php:615
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:615
 msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
-
-#: ../../mod/admin.php:651
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden."
 
-#: ../../mod/admin.php:651
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
+#: ../../mod/admin.php:616
+msgid "System language"
+msgstr "Systemsprache"
 
-#: ../../mod/admin.php:652
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: ../../mod/admin.php:617
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:617
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
-
-#: ../../mod/admin.php:654
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: ../../mod/admin.php:654
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
+#: ../../mod/admin.php:618
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: ../../mod/admin.php:655
-msgid "Suppress Language"
-msgstr "Sprachinformation unterdrücken"
+#: ../../mod/admin.php:618
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: ../../mod/admin.php:655
-msgid "Suppress language information in meta information about a posting."
-msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+#: ../../mod/admin.php:619
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: ../../mod/admin.php:656
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: ../../mod/admin.php:619
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: ../../mod/admin.php:657
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: ../../mod/admin.php:620
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:620
 msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife."
 
-#: ../../mod/admin.php:658
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: ../../mod/admin.php:621
+msgid "Old style 'Share'"
+msgstr "Altes \"Teilen\" Element"
 
-#: ../../mod/admin.php:658
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
+#: ../../mod/admin.php:621
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: ../../mod/admin.php:659
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: ../../mod/admin.php:622
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: ../../mod/admin.php:660
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: ../../mod/admin.php:622
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden."
 
-#: ../../mod/admin.php:661
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: ../../mod/admin.php:623
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: ../../mod/admin.php:662
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: ../../mod/admin.php:623
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt."
 
-#: ../../mod/admin.php:662
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+#: ../../mod/admin.php:624
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: ../../mod/admin.php:664
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: ../../mod/admin.php:624
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: ../../mod/admin.php:666
-msgid "Disable noscrape"
-msgstr "Noscrape deaktivieren"
+#: ../../mod/admin.php:625
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:625
 msgid ""
-"The noscrape feature speeds up directory submissions by using JSON data "
-"instead of HTML scraping. Disabling it will cause higher load on your server"
-" and the directory server."
-msgstr "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur. Wird es deaktiviert, wird mehr Last auf deinem Server und den Verzichnis Servern verursacht."
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
 
-#: ../../mod/admin.php:683
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../mod/admin.php:626
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: ../../mod/admin.php:691
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: ../../mod/admin.php:626
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust."
 
-#: ../../mod/admin.php:694
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
+#: ../../mod/admin.php:628
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: ../../mod/admin.php:706
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: ../../mod/admin.php:629
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: ../../mod/admin.php:709
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: ../../mod/admin.php:629
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag.   Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt."
 
-#: ../../mod/admin.php:713
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
+#: ../../mod/admin.php:630
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../mod/admin.php:715
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
+#: ../../mod/admin.php:630
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../mod/admin.php:734
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: ../../mod/admin.php:631
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: ../../mod/admin.php:735
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: ../../mod/admin.php:631
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
 
-#: ../../mod/admin.php:740
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: ../../mod/admin.php:632
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:632
 msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/admin.php:742
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: ../../mod/admin.php:633
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/admin.php:743
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: ../../mod/admin.php:633
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/admin.php:775
-#, php-format
+#: ../../mod/admin.php:634
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
+
+#: ../../mod/admin.php:634
 msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für dich angelegt."
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist."
 
-#: ../../mod/admin.php:778
-#, php-format
+#: ../../mod/admin.php:635
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
+
+#: ../../mod/admin.php:635
 msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1$s\n\tBenutzernamename:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4$s."
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen."
 
-#: ../../mod/admin.php:810 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+#: ../../mod/admin.php:636
+msgid "Global directory update URL"
+msgstr "URL für Updates beim weltweiten Verzeichnis"
 
-#: ../../mod/admin.php:822
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s Benutzer geblockt/freigegeben"
-msgstr[1] "%s Benutzer geblockt/freigegeben"
+#: ../../mod/admin.php:636
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
 
-#: ../../mod/admin.php:829
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: ../../mod/admin.php:637
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: ../../mod/admin.php:868
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: ../../mod/admin.php:637
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: ../../mod/admin.php:876
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: ../../mod/admin.php:638
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: ../../mod/admin.php:876
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: ../../mod/admin.php:638
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen."
 
-#: ../../mod/admin.php:971
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: ../../mod/admin.php:639
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: ../../mod/admin.php:972
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../mod/admin.php:639
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden."
 
-#: ../../mod/admin.php:973
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
+#: ../../mod/admin.php:640
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: ../../mod/admin.php:974
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: ../../mod/admin.php:640
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt."
 
-#: ../../mod/admin.php:975
-msgid "Request date"
-msgstr "Anfragedatum"
+#: ../../mod/admin.php:641
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
-#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-Mail"
+#: ../../mod/admin.php:641
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Ersetze lokal gehostete private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten sich zunächst auf den jeweiligen Servern authentifizieren müssen bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert."
 
-#: ../../mod/admin.php:976
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: ../../mod/admin.php:642
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: ../../mod/admin.php:978
-msgid "Deny"
-msgstr "Verwehren"
+#: ../../mod/admin.php:642
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Ist dies ausgewählt kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im Kontakt reparieren Dialog markieren. Nach dem setzten dieses Flags werden alle Top-Level Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet."
 
-#: ../../mod/admin.php:982
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: ../../mod/admin.php:643
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: ../../mod/admin.php:983
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: ../../mod/admin.php:643
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: ../../mod/admin.php:986
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: ../../mod/admin.php:644
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: ../../mod/admin.php:644
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../mod/admin.php:645
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: ../../mod/admin.php:645
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: ../../mod/admin.php:987
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: ../../mod/admin.php:646
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: ../../mod/admin.php:988 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Nutzerkonto"
+#: ../../mod/admin.php:646
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: ../../mod/admin.php:990
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
+#: ../../mod/admin.php:647
+msgid "Show Community Page"
+msgstr "Gemeinschaftsseite anzeigen"
 
-#: ../../mod/admin.php:991
+#: ../../mod/admin.php:647
 msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
+"Display a Community page showing all recent public postings on this site."
+msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
 
-#: ../../mod/admin.php:1001
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: ../../mod/admin.php:648
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: ../../mod/admin.php:1002
-msgid "Nickname"
-msgstr "Spitzname"
+#: ../../mod/admin.php:648
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Biete die eingebaute OStatus (iStatusNet, GNU Social, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: ../../mod/admin.php:1002
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: ../../mod/admin.php:649
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: ../../mod/admin.php:1003
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: ../../mod/admin.php:649
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Wie oft soll der Poller checken ob es neue Nachrichten in OStatus Unterhaltungen gibt die geladen werden müssen. Je nach Anzahl der OStatus Kontakte könnte dies ein sehr Ressourcen lastiger Job sein."
 
-#: ../../mod/admin.php:1036
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: ../../mod/admin.php:650
+msgid "Enable Diaspora support"
+msgstr "Diaspora-Support aktivieren"
 
-#: ../../mod/admin.php:1040
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: ../../mod/admin.php:650
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
-msgid "Disable"
-msgstr "Ausschalten"
+#: ../../mod/admin.php:651
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
-msgid "Enable"
-msgstr "Einschalten"
+#: ../../mod/admin.php:651
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert."
 
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../mod/admin.php:652
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
-msgid "Author: "
-msgstr "Autor:"
+#: ../../mod/admin.php:652
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann."
 
-#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../mod/admin.php:653
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: ../../mod/admin.php:1226
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: ../../mod/admin.php:654
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../mod/admin.php:1288
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: ../../mod/admin.php:655
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: ../../mod/admin.php:1334
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../mod/admin.php:655
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)."
 
-#: ../../mod/admin.php:1335
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../mod/admin.php:656
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
 
-#: ../../mod/admin.php:1362
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: ../../mod/admin.php:656
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../mod/admin.php:1418
-msgid "Clear"
-msgstr "löschen"
+#: ../../mod/admin.php:657
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../mod/admin.php:1424
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: ../../mod/admin.php:657
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: ../../mod/admin.php:1425
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../mod/admin.php:658
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: ../../mod/admin.php:1425
+#: ../../mod/admin.php:658
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
-
-#: ../../mod/admin.php:1426
-msgid "Log level"
-msgstr "Protokoll-Level"
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../mod/admin.php:1476
-msgid "Close"
-msgstr "Schließen"
+#: ../../mod/admin.php:660
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
 
-#: ../../mod/admin.php:1482
-msgid "FTP Host"
-msgstr "FTP Host"
+#: ../../mod/admin.php:660
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
 
-#: ../../mod/admin.php:1483
-msgid "FTP Path"
-msgstr "FTP Pfad"
+#: ../../mod/admin.php:661
+msgid "Suppress Language"
+msgstr "Sprachinformation unterdrücken"
 
-#: ../../mod/admin.php:1484
-msgid "FTP User"
-msgstr "FTP Nutzername"
+#: ../../mod/admin.php:661
+msgid "Suppress language information in meta information about a posting."
+msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: ../../mod/admin.php:1485
-msgid "FTP Password"
-msgstr "FTP Passwort"
+#: ../../mod/admin.php:662
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../mod/admin.php:663
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: ../../mod/admin.php:663
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Wie lange sollen die gecachedten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item Cache zu deaktivieren, setze diesen Wert auf -1."
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: ../../mod/admin.php:664
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "hinzufügen"
+#: ../../mod/admin.php:664
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100."
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../mod/admin.php:665
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: ../../mod/admin.php:666
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../mod/admin.php:667
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: ../../mod/admin.php:668
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um dich geht"
+#: ../../mod/admin.php:668
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Neue"
+#: ../../mod/admin.php:670
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: ../../mod/admin.php:672
+msgid "Disable noscrape"
+msgstr "Noscrape deaktivieren"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: ../../mod/admin.php:672
+msgid ""
+"The noscrape feature speeds up directory submissions by using JSON data "
+"instead of HTML scraping. Disabling it will cause higher load on your server"
+" and the directory server."
+msgstr "Das noscrape Feature beschleunigt Verzeichnis einsendungen indem JSON Daten gesendet werden anstelle vom analysieren der HTML Struktur. Wird es deaktiviert, wird mehr Last auf deinem Server und den Verzichnis Servern verursacht."
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: ../../mod/admin.php:689
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Markierte"
+#: ../../mod/admin.php:697
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: ../../mod/admin.php:700
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s"
 
-#: ../../mod/network.php:463
+#: ../../mod/admin.php:712
 #, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+#: ../../mod/admin.php:715
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: ../../mod/admin.php:719
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: ../../mod/admin.php:721
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste."
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Gruppe: "
+#: ../../mod/admin.php:740
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../mod/admin.php:741
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: ../../mod/admin.php:746
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: ../../mod/admin.php:747
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben."
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Freunde von %s"
+#: ../../mod/admin.php:748
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Keine Freunde zum Anzeigen."
+#: ../../mod/admin.php:749
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: ../../mod/admin.php:781
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\nHallo %1$s,\n\nauf %2$s wurde ein Account für dich angelegt."
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../mod/admin.php:784
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%1$s\n\tBenutzernamename:\t%2$s\n\tPasswort:\t%3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %4$s."
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: ../../mod/admin.php:816 ../../include/user.php:413
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: ../../mod/events.php:335 ../../include/text.php:1644
-#: ../../include/text.php:1654
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../mod/admin.php:828
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Benutzer geblockt/freigegeben"
+msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Veranstaltungen"
+#: ../../mod/admin.php:835
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: ../../mod/admin.php:874
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorherige"
+#: ../../mod/admin.php:882
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Nächste"
+#: ../../mod/admin.php:882
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "Stunde:Minute"
+#: ../../mod/admin.php:977
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: ../../mod/admin.php:978
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
+#: ../../mod/admin.php:979
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: ../../mod/admin.php:980
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Benötigt"
+#: ../../mod/admin.php:981
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1007 ../../mod/crepair.php:165
+#: ../../mod/settings.php:616 ../../mod/settings.php:642
+msgid "Name"
+msgstr "Name"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1009 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-Mail"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: ../../mod/admin.php:982
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschreibung"
+#: ../../mod/admin.php:983 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Ort:"
+#: ../../mod/admin.php:984
+msgid "Deny"
+msgstr "Verwehren"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../mod/admin.php:986 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Block"
+msgstr "Sperren"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: ../../mod/admin.php:987 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Auswählen"
+#: ../../mod/admin.php:988
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: ../../mod/admin.php:989
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: ../../mod/admin.php:992
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1969
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "mehr anzeigen"
+#: ../../mod/admin.php:993
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: ../../mod/admin.php:994 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
+#: ../../mod/admin.php:996
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
-msgid "like"
-msgstr "mag ich"
+#: ../../mod/admin.php:997
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist du sicher?"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
+#: ../../mod/admin.php:1007
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
-msgid "dislike"
-msgstr "mag ich nicht"
+#: ../../mod/admin.php:1008
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "Share this"
-msgstr "Weitersagen"
+#: ../../mod/admin.php:1008
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "share"
-msgstr "Teilen"
+#: ../../mod/admin.php:1009
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
-#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
-msgid "This is you"
-msgstr "Das bist du"
+#: ../../mod/admin.php:1042
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../mod/admin.php:1046
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: ../../mod/content.php:711 ../../object/Item.php:679
-msgid "Bold"
-msgstr "Fett"
+#: ../../mod/admin.php:1056 ../../mod/admin.php:1272
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
-msgid "Italic"
-msgstr "Kursiv"
+#: ../../mod/admin.php:1058 ../../mod/admin.php:1274
+msgid "Enable"
+msgstr "Einschalten"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
-msgid "Underline"
-msgstr "Unterstrichen"
+#: ../../mod/admin.php:1081 ../../mod/admin.php:1302
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
-msgid "Quote"
-msgstr "Zitat"
+#: ../../mod/admin.php:1089 ../../mod/admin.php:1312
+msgid "Author: "
+msgstr "Autor:"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
-msgid "Code"
-msgstr "Code"
+#: ../../mod/admin.php:1090 ../../mod/admin.php:1313
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
-msgid "Image"
-msgstr "Bild"
+#: ../../mod/admin.php:1232
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
-msgid "Link"
-msgstr "Link"
+#: ../../mod/admin.php:1294
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
-msgid "Video"
-msgstr "Video"
+#: ../../mod/admin.php:1340
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Vorschau"
+#: ../../mod/admin.php:1341
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Bearbeiten"
+#: ../../mod/admin.php:1368
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "markieren"
+#: ../../mod/admin.php:1424
+msgid "Clear"
+msgstr "löschen"
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: ../../mod/admin.php:1430
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "Markierung umschalten"
+#: ../../mod/admin.php:1431
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "markiert"
+#: ../../mod/admin.php:1431
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: ../../mod/admin.php:1432
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: ../../mod/admin.php:1481 ../../mod/contacts.php:498
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "zu"
+#: ../../mod/admin.php:1482
+msgid "Close"
+msgstr "Schließen"
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../mod/admin.php:1488
+msgid "FTP Host"
+msgstr "FTP Host"
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../mod/admin.php:1489
+msgid "FTP Path"
+msgstr "FTP Pfad"
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: ../../mod/admin.php:1490
+msgid "FTP User"
+msgstr "FTP Nutzername"
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
+#: ../../mod/admin.php:1491
+msgid "FTP Password"
+msgstr "FTP Passwort"
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib dein Passwort zur Verifikation ein:"
+#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:953
+#: ../../include/text.php:954 ../../include/nav.php:119
+msgid "Search"
+msgstr "Suche"
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: ../../mod/_search.php:180 ../../mod/_search.php:206
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:71
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "Link"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systemtest"
+#: ../../mod/editpost.php:109 ../../mod/notes.php:63 ../../mod/filer.php:31
+#: ../../include/text.php:956
+msgid "Save"
+msgstr "Speichern"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können."
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest."
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
+msgstr "Weblink"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst."
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
+msgstr "Ort setzen"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert."
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Bitte melde dich an."
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+#: ../../mod/directory.php:61 ../../mod/contacts.php:707
+msgid "Finding: "
+msgstr "Funde: "
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: ../../mod/directory.php:63 ../../mod/contacts.php:708
+#: ../../include/contact_widgets.php:34
+msgid "Find"
+msgstr "Finde"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: ../../mod/directory.php:113 ../../mod/profiles.php:735
+msgid "Age: "
+msgstr "Alter: "
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Geschlecht:"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Kontakteinstellungen reparieren"
 
-#: ../../mod/install.php:397
+#: ../../mod/crepair.php:141
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
-
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: ../../mod/install.php:409
+#: ../../mod/crepair.php:142
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst."
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
+
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast."
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "Konto-URL"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt."
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "URL für Freundschaftsanfragen"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Freundschaftsanfragen"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr "Entfernte Konten"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: ../../mod/install.php:472
+#: ../../mod/crepair.php:176
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen."
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."
 
-#: ../../mod/install.php:524
+#: ../../mod/uimport.php:69
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Account Datei"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte deinen Heimatort nicht bestimmen."
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: ../../mod/wallmessage.php:143
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
 #: ../../mod/help.php:79
 msgid "Help:"
@@ -3502,1121 +3350,1162 @@ msgstr "Hilfe:"
 msgid "Help"
 msgstr "Hilfe"
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
 
-#: ../../mod/home.php:35
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
+
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
+
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
+
+#: ../../mod/dfrn_request.php:267
 #, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: ../../mod/wall_attach.php:81
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
+
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
+
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
+
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Du hast dich hier bereits vorgestellt."
+
+#: ../../mod/dfrn_request.php:480
 #, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Die Datei ist größer als das erlaubte Limit von %d"
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
+
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
+
+#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:188
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "Link"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Gemeinschaft"
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:170 ../../mod/search.php:196
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
 
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "jeder"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: ../../mod/settings.php:41
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Freundschafts-/Kontaktanfrage"
 
-#: ../../mod/settings.php:46
-msgid "Display"
-msgstr "Anzeige"
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: ../../mod/settings.php:62 ../../include/nav.php:168
-msgid "Delegations"
-msgstr "Delegationen"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s dich?"
 
-#: ../../mod/settings.php:67
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/settings.php:77
-msgid "Remove account"
-msgstr "Konto löschen"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/settings.php:129
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: ../../mod/dfrn_request.php:838 ../../mod/settings.php:736
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/settings.php:238
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
 
-#: ../../mod/settings.php:243
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Adresse deines Profils:"
 
-#: ../../mod/settings.php:258
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: ../../mod/settings.php:321
-msgid "Relocate message has been send to your contacts"
-msgstr "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet."
+#: ../../mod/update_profile.php:41 ../../mod/update_network.php:25
+#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
+#: ../../mod/update_notes.php:37
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: ../../mod/settings.php:335
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: ../../mod/settings.php:340
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: ../../mod/contacts.php:108
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet"
 
-#: ../../mod/settings.php:348
-msgid "Wrong password."
-msgstr "Falsches Passwort."
+#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: ../../mod/settings.php:359
-msgid "Password changed."
-msgstr "Passwort geändert."
+#: ../../mod/contacts.php:153
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: ../../mod/settings.php:361
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: ../../mod/contacts.php:186
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: ../../mod/settings.php:428
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: ../../mod/contacts.php:287
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: ../../mod/settings.php:430
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: ../../mod/contacts.php:287
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: ../../mod/settings.php:439
-msgid "Wrong Password"
-msgstr "Falsches Passwort"
+#: ../../mod/contacts.php:298
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: ../../mod/settings.php:444
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: ../../mod/contacts.php:298
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: ../../mod/settings.php:450
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: ../../mod/contacts.php:310
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: ../../mod/settings.php:506
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
+#: ../../mod/contacts.php:310
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: ../../mod/settings.php:510
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
+#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest du wirklich diesen Kontakt löschen?"
 
-#: ../../mod/settings.php:540
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: ../../mod/contacts.php:352
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: ../../mod/contacts.php:390
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/contacts.php:394
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/contacts.php:399
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
-msgid "Redirect"
-msgstr "Umleiten"
+#: ../../mod/contacts.php:416
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
-msgid "Icon url"
-msgstr "Icon URL"
+#: ../../mod/contacts.php:423
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: ../../mod/settings.php:631
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: ../../mod/contacts.php:423
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: ../../mod/settings.php:674
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: ../../mod/contacts.php:425
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../mod/settings.php:678
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: ../../mod/contacts.php:429
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: ../../mod/settings.php:679
-msgid "No name"
-msgstr "Kein Name"
+#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: ../../mod/settings.php:680
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: ../../mod/contacts.php:437
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../mod/settings.php:692
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: ../../mod/contacts.php:445
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: ../../mod/settings.php:700
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: ../../mod/settings.php:714
-msgid "Off"
-msgstr "Aus"
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../mod/settings.php:714
-msgid "On"
-msgstr "An"
+#: ../../mod/contacts.php:451
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../mod/settings.php:722
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/contacts.php:458
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
-msgid "enabled"
-msgstr "eingeschaltet"
+#: ../../mod/contacts.php:461
+msgid "Repair"
+msgstr "Reparieren"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: ../../mod/contacts.php:464
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: ../../mod/settings.php:737
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../mod/contacts.php:470
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: ../../mod/settings.php:773
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: ../../mod/contacts.php:473
+msgid "Contact Editor"
+msgstr "Kontakt Editor"
 
-#: ../../mod/settings.php:785
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: ../../mod/contacts.php:476
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: ../../mod/settings.php:786
+#: ../../mod/contacts.php:477
+#, php-format
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft."
 
-#: ../../mod/settings.php:787
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: ../../mod/contacts.php:478
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: ../../mod/settings.php:789
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: ../../mod/contacts.php:479
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: ../../mod/settings.php:790
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
+#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: ../../mod/settings.php:791
-msgid "Security:"
-msgstr "Sicherheit:"
+#: ../../mod/contacts.php:485
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
-msgid "None"
-msgstr "Keine"
+#: ../../mod/contacts.php:486
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: ../../mod/settings.php:792
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: ../../mod/contacts.php:487
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: ../../mod/settings.php:793
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: ../../mod/contacts.php:488
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../mod/settings.php:794
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: ../../mod/contacts.php:490
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: ../../mod/settings.php:795
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: ../../mod/contacts.php:494
+msgid "Last update:"
+msgstr "letzte Aktualisierung:"
 
-#: ../../mod/settings.php:796
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: ../../mod/contacts.php:496
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../mod/settings.php:796
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: ../../mod/contacts.php:505
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: ../../mod/settings.php:796
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: ../../mod/contacts.php:506
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../mod/settings.php:797
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: ../../mod/contacts.php:507
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: ../../mod/settings.php:878
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Verberge diesen Kontakt vor anderen"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:899
-msgid "Display Theme:"
-msgstr "Theme:"
+#: ../../mod/contacts.php:508
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
 
-#: ../../mod/settings.php:885
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: ../../mod/contacts.php:509
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: ../../mod/settings.php:886
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: ../../mod/contacts.php:509
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: ../../mod/settings.php:886
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimal 10 Sekunden, kein Maximum"
+#: ../../mod/contacts.php:510
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: ../../mod/settings.php:887
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: ../../mod/contacts.php:511
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: ../../mod/contacts.php:511
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: ../../mod/settings.php:888
-msgid "Number of items to display per page when viewed from mobile device:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
+#: ../../mod/contacts.php:511
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: ../../mod/settings.php:889
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: ../../mod/contacts.php:513
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: ../../mod/settings.php:890
-msgid "Don't show notices"
-msgstr "Info-Popups nicht anzeigen"
+#: ../../mod/contacts.php:513
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
 
-#: ../../mod/settings.php:891
-msgid "Infinite scroll"
-msgstr "Endloses Scrollen"
+#: ../../mod/contacts.php:564
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../mod/settings.php:892
-msgid "Automatic updates only at the top of the network page"
-msgstr "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist."
+#: ../../mod/contacts.php:567
+msgid "Suggest potential friends"
+msgstr "Freunde vorschlagen"
 
-#: ../../mod/settings.php:969
-msgid "User Types"
-msgstr "Nutzer Art"
+#: ../../mod/contacts.php:570 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: ../../mod/settings.php:970
-msgid "Community Types"
-msgstr "Gemeinschafts Art"
+#: ../../mod/contacts.php:573
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../mod/settings.php:971
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: ../../mod/contacts.php:576
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: ../../mod/settings.php:972
-msgid "This account is a normal personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: ../../mod/contacts.php:579
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: ../../mod/settings.php:975
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: ../../mod/contacts.php:583
+msgid "Blocked"
+msgstr "Geblockt"
+
+#: ../../mod/contacts.php:586
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
+
+#: ../../mod/contacts.php:590
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: ../../mod/settings.php:976
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
+#: ../../mod/contacts.php:593
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: ../../mod/settings.php:979
-msgid "Community Forum/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: ../../mod/contacts.php:597
+msgid "Archived"
+msgstr "Archiviert"
 
-#: ../../mod/settings.php:980
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
+#: ../../mod/contacts.php:600
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: ../../mod/settings.php:983
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+#: ../../mod/contacts.php:604
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: ../../mod/settings.php:984
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
+#: ../../mod/contacts.php:607
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: ../../mod/settings.php:987
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: ../../mod/contacts.php:655
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: ../../mod/settings.php:988
-msgid "Private forum - approved members only"
-msgstr "Privates Forum, nur für Mitglieder"
+#: ../../mod/contacts.php:659
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: ../../mod/settings.php:1000
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/contacts.php:663
+msgid "you are a fan of"
+msgstr "du bist Fan von"
 
-#: ../../mod/settings.php:1000
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
+#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../mod/settings.php:1010
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: ../../mod/contacts.php:706
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:627
-#: ../../mod/profiles.php:631 ../../mod/api.php:106
-msgid "No"
-msgstr "Nein"
+#: ../../mod/contacts.php:713 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: ../../mod/settings.php:1016
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: ../../mod/settings.php:29 ../../mod/photos.php:80
+msgid "everybody"
+msgstr "jeder"
 
-#: ../../mod/settings.php:1024
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Anzeige"
 
-#: ../../mod/settings.php:1028
-msgid ""
-"If enabled, posting public messages to Diaspora and other networks isn't "
-"possible."
-msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
+#: ../../mod/settings.php:52 ../../mod/settings.php:780
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: ../../mod/settings.php:1033
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
+#: ../../mod/settings.php:62 ../../include/nav.php:168
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: ../../mod/settings.php:1039
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: ../../mod/settings.php:1045
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: ../../mod/settings.php:1051
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: ../../mod/settings.php:1059
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: ../../mod/settings.php:1067
-msgid "Your Identity Address is"
-msgstr "Die Adresse deines Profils lautet:"
+#: ../../mod/settings.php:238
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
 
-#: ../../mod/settings.php:1078
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: ../../mod/settings.php:243
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: ../../mod/settings.php:1078
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
+#: ../../mod/settings.php:258
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: ../../mod/settings.php:1079
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: ../../mod/settings.php:321
+msgid "Relocate message has been send to your contacts"
+msgstr "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet."
 
-#: ../../mod/settings.php:1080
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: ../../mod/settings.php:335
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: ../../mod/settings.php:1081
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: ../../mod/settings.php:340
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: ../../mod/settings.php:1082
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: ../../mod/settings.php:348
+msgid "Wrong password."
+msgstr "Falsches Passwort."
 
-#: ../../mod/settings.php:1083
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: ../../mod/settings.php:359
+msgid "Password changed."
+msgstr "Passwort geändert."
 
-#: ../../mod/settings.php:1084
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: ../../mod/settings.php:361
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: ../../mod/settings.php:1085
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: ../../mod/settings.php:428
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: ../../mod/settings.php:1111
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: ../../mod/settings.php:430
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: ../../mod/settings.php:1119
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: ../../mod/settings.php:439
+msgid "Wrong Password"
+msgstr "Falsches Passwort"
 
-#: ../../mod/settings.php:1120
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: ../../mod/settings.php:444
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: ../../mod/settings.php:1121
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: ../../mod/settings.php:450
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: ../../mod/settings.php:1121
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
+#: ../../mod/settings.php:506
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt."
 
-#: ../../mod/settings.php:1122
-msgid "Current Password:"
-msgstr "Aktuelles Passwort:"
+#: ../../mod/settings.php:510
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte."
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
-msgid "Your current password to confirm the changes"
-msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
+#: ../../mod/settings.php:540
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/settings.php:1123
-msgid "Password:"
-msgstr "Passwort:"
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:675
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: ../../mod/settings.php:1127
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: ../../mod/settings.php:617 ../../mod/settings.php:643
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:1129
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: ../../mod/settings.php:619 ../../mod/settings.php:645
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: ../../mod/settings.php:1130
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: ../../mod/settings.php:1131
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: ../../mod/settings.php:631
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: ../../mod/settings.php:1132
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: ../../mod/settings.php:674
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: ../../mod/settings.php:1135
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: ../../mod/settings.php:678
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: ../../mod/settings.php:1137
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
+#: ../../mod/settings.php:679
+msgid "No name"
+msgstr "Kein Name"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: ../../mod/settings.php:680
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: ../../mod/settings.php:1138
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: ../../mod/settings.php:692
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: ../../mod/settings.php:1139
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: ../../mod/settings.php:700
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
-#: ../../mod/photos.php:1519
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: ../../mod/settings.php:714
+msgid "Off"
+msgstr "Aus"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
-#: ../../mod/photos.php:1520
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: ../../mod/settings.php:714
+msgid "On"
+msgstr "An"
 
-#: ../../mod/settings.php:1150
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: ../../mod/settings.php:722
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: ../../mod/settings.php:1151
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: ../../mod/settings.php:1155
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: ../../mod/settings.php:1167
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: ../../mod/settings.php:1170
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: ../../mod/settings.php:737
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../mod/settings.php:1171
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: ../../mod/settings.php:773
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: ../../mod/settings.php:1172
-msgid "accepting a friend request"
-msgstr "– du eine Kontaktanfrage akzeptierst"
+#: ../../mod/settings.php:785
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: ../../mod/settings.php:1173
-msgid "joining a forum/community"
-msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: ../../mod/settings.php:786
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an."
 
-#: ../../mod/settings.php:1174
-msgid "making an <em>interesting</em> profile change"
-msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
+#: ../../mod/settings.php:787
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: ../../mod/settings.php:1175
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: ../../mod/settings.php:789
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: ../../mod/settings.php:1176
-msgid "You receive an introduction"
-msgstr "– du eine Kontaktanfrage erhältst"
+#: ../../mod/settings.php:790
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: ../../mod/settings.php:1177
-msgid "Your introductions are confirmed"
-msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
+#: ../../mod/settings.php:791
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: ../../mod/settings.php:1178
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf deine Pinnwand schreibt"
+#: ../../mod/settings.php:791 ../../mod/settings.php:796
+msgid "None"
+msgstr "Keine"
 
-#: ../../mod/settings.php:1179
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: ../../mod/settings.php:792
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: ../../mod/settings.php:1180
-msgid "You receive a private message"
-msgstr "– du eine private Nachricht erhältst"
+#: ../../mod/settings.php:793
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: ../../mod/settings.php:1181
-msgid "You receive a friend suggestion"
-msgstr "– du eine Empfehlung erhältst"
+#: ../../mod/settings.php:794
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: ../../mod/settings.php:1182
-msgid "You are tagged in a post"
-msgstr "– du in einem Beitrag erwähnt wirst"
+#: ../../mod/settings.php:795
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: ../../mod/settings.php:1183
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst"
+#: ../../mod/settings.php:796
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: ../../mod/settings.php:1185
-msgid "Text-only notification emails"
-msgstr "Benachrichtigungs E-Mail als Rein-Text."
+#: ../../mod/settings.php:796
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: ../../mod/settings.php:1187
-msgid "Send text only notification emails, without the html part"
-msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
+#: ../../mod/settings.php:796
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: ../../mod/settings.php:1189
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: ../../mod/settings.php:797
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: ../../mod/settings.php:1190
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: ../../mod/settings.php:878
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/settings.php:1193
-msgid "Relocate"
-msgstr "Umziehen"
+#: ../../mod/settings.php:884 ../../mod/settings.php:899
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: ../../mod/settings.php:1194
-msgid ""
-"If you have moved this profile from another server, and some of your "
-"contacts don't receive your updates, try pushing this button."
-msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button."
+#: ../../mod/settings.php:885
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: ../../mod/settings.php:1195
-msgid "Resend relocate message to contacts"
-msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
+#: ../../mod/settings.php:886
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: ../../mod/settings.php:886
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimal 10 Sekunden, kein Maximum"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: ../../mod/settings.php:887
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: ../../mod/settings.php:887 ../../mod/settings.php:888
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: ../../mod/settings.php:888
+msgid "Number of items to display per page when viewed from mobile device:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+#: ../../mod/settings.php:889
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: ../../mod/settings.php:890
+msgid "Don't show notices"
+msgstr "Info-Popups nicht anzeigen"
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: ../../mod/settings.php:891
+msgid "Infinite scroll"
+msgstr "Endloses Scrollen"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: ../../mod/settings.php:892
+msgid "Automatic updates only at the top of the network page"
+msgstr "Automatische Updates nur, wenn du oben auf der Netzwerkseite bist."
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
+#: ../../mod/settings.php:969
+msgid "User Types"
+msgstr "Nutzer Art"
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: ../../mod/settings.php:970
+msgid "Community Types"
+msgstr "Gemeinschafts Art"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: ../../mod/settings.php:971
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: ../../mod/settings.php:972
+msgid "This account is a normal personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: ../../mod/settings.php:975
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: ../../mod/settings.php:976
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
+#: ../../mod/settings.php:979
+msgid "Community Forum/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Du hast dich hier bereits vorgestellt."
+#: ../../mod/settings.php:980
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
 
-#: ../../mod/dfrn_request.php:480
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
+#: ../../mod/settings.php:983
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: ../../mod/settings.php:984
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: ../../mod/settings.php:987
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: ../../mod/settings.php:988
+msgid "Private forum - approved members only"
+msgstr "Privates Forum, nur für Mitglieder"
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
+#: ../../mod/settings.php:1000
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
+#: ../../mod/settings.php:1000
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: ../../mod/settings.php:1010
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: ../../mod/settings.php:1016
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: ../../mod/dfrn_request.php:675
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
+#: ../../mod/settings.php:1024
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Bestätigen"
+#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: ../../mod/dfrn_request.php:804
+#: ../../mod/settings.php:1028
 msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:"
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
+#: ../../mod/settings.php:1033
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Freundschafts-/Kontaktanfrage"
+#: ../../mod/settings.php:1039
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/settings.php:1045
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: ../../mod/settings.php:1051
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s dich?"
+#: ../../mod/settings.php:1059
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: ../../mod/settings.php:1062 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "oder"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/settings.php:1067
+msgid "Your Identity Address is"
+msgstr "Die Adresse deines Profils lautet:"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/settings.php:1078
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."
+#: ../../mod/settings.php:1078
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht."
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Adresse deines Profils:"
+#: ../../mod/settings.php:1079
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: ../../mod/settings.php:1080
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
+#: ../../mod/settings.php:1081
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
+#: ../../mod/settings.php:1082
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: ../../mod/settings.php:1083
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: ../../mod/settings.php:1084
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
+#: ../../mod/settings.php:1085
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: ../../mod/register.php:214
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst."
+#: ../../mod/settings.php:1111
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: ../../mod/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
+#: ../../mod/settings.php:1119
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: ../../mod/settings.php:1120
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: ../../mod/settings.php:1121
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: ../../mod/settings.php:1121
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "ID deiner Einladung: "
+#: ../../mod/settings.php:1122
+msgid "Current Password:"
+msgstr "Aktuelles Passwort:"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vollständiger Name (z.B. Max Mustermann): "
+#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+msgid "Your current password to confirm the changes"
+msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: ../../mod/settings.php:1123
+msgid "Password:"
+msgstr "Passwort:"
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+#: ../../mod/settings.php:1127
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
-msgid "Register"
-msgstr "Registrieren"
+#: ../../mod/settings.php:1129
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/settings.php:1130
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere dein Profil auf diese Friendica Instanz"
+#: ../../mod/settings.php:1131
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: ../../mod/settings.php:1132
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/search.php:99 ../../include/text.php:952
-#: ../../include/text.php:953 ../../include/nav.php:119
-msgid "Search"
-msgstr "Suche"
+#: ../../mod/settings.php:1135
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: ../../mod/settings.php:1137
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: ../../mod/settings.php:1138
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:716
-msgid "Age: "
-msgstr "Alter: "
+#: ../../mod/settings.php:1139
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/photos.php:1519
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: ../../mod/directory.php:138 ../../boot.php:1645
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/photos.php:1520
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: ../../mod/directory.php:140 ../../boot.php:1648
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/settings.php:1150
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: ../../mod/directory.php:142 ../../boot.php:1650
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/settings.php:1151
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: ../../mod/directory.php:144 ../../boot.php:1652
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Über:"
+#: ../../mod/settings.php:1155
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: ../../mod/settings.php:1167
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: ../../mod/settings.php:1170
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:168
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: ../../mod/settings.php:1171
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
+#: ../../mod/settings.php:1172
+msgid "accepting a friend request"
+msgstr "– du eine Kontaktanfrage akzeptierst"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: ../../mod/settings.php:1173
+msgid "joining a forum/community"
+msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: ../../mod/settings.php:1174
+msgid "making an <em>interesting</em> profile change"
+msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: ../../mod/settings.php:1175
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../mod/settings.php:1176
+msgid "You receive an introduction"
+msgstr "– du eine Kontaktanfrage erhältst"
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Keine Einträge."
+#: ../../mod/settings.php:1177
+msgid "Your introductions are confirmed"
+msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Gemeinsame Freunde"
+#: ../../mod/settings.php:1178
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf deine Pinnwand schreibt"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: ../../mod/settings.php:1179
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Account exportieren"
+#: ../../mod/settings.php:1180
+msgid "You receive a private message"
+msgstr "– du eine private Nachricht erhältst"
 
-#: ../../mod/uexport.php:77
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
+#: ../../mod/settings.php:1181
+msgid "You receive a friend suggestion"
+msgstr "– du eine Empfehlung erhältst"
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
-msgstr "Alles exportieren"
+#: ../../mod/settings.php:1182
+msgid "You are tagged in a post"
+msgstr "– du in einem Beitrag erwähnt wirst"
 
-#: ../../mod/uexport.php:78
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."
+#: ../../mod/settings.php:1183
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: ../../mod/settings.php:1185
+msgid "Text-only notification emails"
+msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: ../../mod/settings.php:1187
+msgid "Send text only notification emails, without the html part"
+msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
+#: ../../mod/settings.php:1189
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest du wirklich diese Empfehlung löschen?"
+#: ../../mod/settings.php:1190
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../mod/settings.php:1193
+msgid "Relocate"
+msgstr "Umziehen"
 
-#: ../../mod/suggest.php:74
+#: ../../mod/settings.php:1194
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+"If you have moved this profile from another server, and some of your "
+"contacts don't receive your updates, try pushing this button."
+msgstr "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button."
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: ../../mod/settings.php:1195
+msgid "Resend relocate message to contacts"
+msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
 #: ../../mod/profiles.php:37
 msgid "Profile deleted."
@@ -4634,491 +4523,789 @@ msgstr "Neues Profil angelegt."
 msgid "Profile unavailable to clone."
 msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: ../../mod/profiles.php:172
+#: ../../mod/profiles.php:189
 msgid "Profile Name is required."
 msgstr "Profilname ist erforderlich."
 
-#: ../../mod/profiles.php:323
+#: ../../mod/profiles.php:340
 msgid "Marital Status"
 msgstr "Familienstand"
 
-#: ../../mod/profiles.php:327
+#: ../../mod/profiles.php:344
 msgid "Romantic Partner"
 msgstr "Romanze"
 
-#: ../../mod/profiles.php:331
+#: ../../mod/profiles.php:348
 msgid "Likes"
 msgstr "Likes"
 
-#: ../../mod/profiles.php:335
+#: ../../mod/profiles.php:352
 msgid "Dislikes"
 msgstr "Dislikes"
 
-#: ../../mod/profiles.php:339
+#: ../../mod/profiles.php:356
 msgid "Work/Employment"
 msgstr "Arbeit / Beschäftigung"
 
-#: ../../mod/profiles.php:342
+#: ../../mod/profiles.php:359
 msgid "Religion"
 msgstr "Religion"
 
-#: ../../mod/profiles.php:346
+#: ../../mod/profiles.php:363
 msgid "Political Views"
 msgstr "Politische Ansichten"
 
-#: ../../mod/profiles.php:350
+#: ../../mod/profiles.php:367
 msgid "Gender"
 msgstr "Geschlecht"
 
-#: ../../mod/profiles.php:354
+#: ../../mod/profiles.php:371
 msgid "Sexual Preference"
 msgstr "Sexuelle Vorlieben"
 
-#: ../../mod/profiles.php:358
+#: ../../mod/profiles.php:375
 msgid "Homepage"
 msgstr "Webseite"
 
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
-msgid "Interests"
-msgstr "Interessen"
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:683
+msgid "Interests"
+msgstr "Interessen"
+
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Adresse"
+
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:679
+msgid "Location"
+msgstr "Wohnort"
+
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
+
+#: ../../mod/profiles.php:553
+msgid " and "
+msgstr " und "
+
+#: ../../mod/profiles.php:561
+msgid "public profile"
+msgstr "öffentliches Profil"
+
+#: ../../mod/profiles.php:564
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
+
+#: ../../mod/profiles.php:565
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
+
+#: ../../mod/profiles.php:568
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+
+#: ../../mod/profiles.php:643
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
+
+#: ../../mod/profiles.php:648
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+
+#: ../../mod/profiles.php:670
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
+
+#: ../../mod/profiles.php:672
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
+
+#: ../../mod/profiles.php:673
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
+
+#: ../../mod/profiles.php:674
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+
+#: ../../mod/profiles.php:675
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
+
+#: ../../mod/profiles.php:676
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
+
+#: ../../mod/profiles.php:677
+msgid "Basic information"
+msgstr "Grundinformationen"
+
+#: ../../mod/profiles.php:678
+msgid "Profile picture"
+msgstr "Profilbild"
+
+#: ../../mod/profiles.php:680
+msgid "Preferences"
+msgstr "Vorlieben"
+
+#: ../../mod/profiles.php:681
+msgid "Status information"
+msgstr "Status Informationen"
+
+#: ../../mod/profiles.php:682
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
+
+#: ../../mod/profiles.php:685
+msgid "Profile Name:"
+msgstr "Profilname:"
+
+#: ../../mod/profiles.php:686
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
+
+#: ../../mod/profiles.php:687
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
+
+#: ../../mod/profiles.php:688
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
+
+#: ../../mod/profiles.php:689
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geburtstag (%s):"
+
+#: ../../mod/profiles.php:690
+msgid "Street Address:"
+msgstr "Adresse:"
+
+#: ../../mod/profiles.php:691
+msgid "Locality/City:"
+msgstr "Wohnort:"
+
+#: ../../mod/profiles.php:692
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
+
+#: ../../mod/profiles.php:693
+msgid "Country:"
+msgstr "Land:"
+
+#: ../../mod/profiles.php:694
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
+
+#: ../../mod/profiles.php:695
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+
+#: ../../mod/profiles.php:696
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
+
+#: ../../mod/profiles.php:697
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+
+#: ../../mod/profiles.php:698
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
+
+#: ../../mod/profiles.php:699 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
+
+#: ../../mod/profiles.php:700
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
+
+#: ../../mod/profiles.php:701 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Heimatort:"
+
+#: ../../mod/profiles.php:702 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
+
+#: ../../mod/profiles.php:703
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
+
+#: ../../mod/profiles.php:704
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
+
+#: ../../mod/profiles.php:705
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
+
+#: ../../mod/profiles.php:706 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Likes:"
+
+#: ../../mod/profiles.php:707 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Dislikes:"
+
+#: ../../mod/profiles.php:708
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
+
+#: ../../mod/profiles.php:709
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"
+
+#: ../../mod/profiles.php:710
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+
+#: ../../mod/profiles.php:711
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von dir …"
+
+#: ../../mod/profiles.php:712
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
+
+#: ../../mod/profiles.php:713
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
+
+#: ../../mod/profiles.php:714
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
+
+#: ../../mod/profiles.php:715
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
+
+#: ../../mod/profiles.php:716
+msgid "Television"
+msgstr "Fernsehen"
+
+#: ../../mod/profiles.php:717
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
+
+#: ../../mod/profiles.php:718
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
+
+#: ../../mod/profiles.php:719
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
+
+#: ../../mod/profiles.php:720
+msgid "School/education"
+msgstr "Schule/Ausbildung"
+
+#: ../../mod/profiles.php:725
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+
+#: ../../mod/profiles.php:788
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
+
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
+
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
+
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
+
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
+
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Gruppe speichern"
+
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
+
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenname:"
+
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe entfernt."
+
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
+
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: ../../mod/profiles.php:366
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
-msgid "Location"
-msgstr "Wohnort"
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: ../../mod/profiles.php:534
-msgid " and "
-msgstr " und "
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: ../../mod/profiles.php:542
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: ../../mod/profiles.php:545
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: ../../mod/profiles.php:546
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../mod/profiles.php:549
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../mod/profiles.php:624
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/profiles.php:629
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/profiles.php:651
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/profiles.php:653
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/profiles.php:654
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
 
-#: ../../mod/profiles.php:655
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../mod/profiles.php:656
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: ../../mod/profiles.php:657
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: ../../mod/profiles.php:658
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: ../../mod/notify.php:75 ../../mod/notifications.php:336
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: ../../mod/profiles.php:659
-msgid "Profile picture"
-msgstr "Profilbild"
+#: ../../mod/notify.php:79 ../../mod/notifications.php:340
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: ../../mod/profiles.php:661
-msgid "Preferences"
-msgstr "Vorlieben"
+#: ../../mod/message.php:9 ../../include/nav.php:162
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: ../../mod/profiles.php:662
-msgid "Status information"
-msgstr "Status Informationen"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: ../../mod/profiles.php:663
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: ../../mod/profiles.php:666
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest du wirklich diese Nachricht löschen?"
 
-#: ../../mod/profiles.php:667
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: ../../mod/profiles.php:668
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: ../../mod/profiles.php:669
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: ../../mod/profiles.php:670
+#: ../../mod/message.php:378
 #, php-format
-msgid "Birthday (%s):"
-msgstr "Geburtstag (%s):"
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: ../../mod/profiles.php:671
-msgid "Street Address:"
-msgstr "Adresse:"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: ../../mod/profiles.php:672
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s und du"
 
-#: ../../mod/profiles.php:673
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: ../../mod/profiles.php:674
-msgid "Country:"
-msgstr "Land:"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: ../../mod/profiles.php:675
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: ../../mod/profiles.php:676
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: ../../mod/profiles.php:677
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: ../../mod/profiles.php:678
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten."
 
-#: ../../mod/profiles.php:679
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: ../../mod/like.php:168 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: ../../mod/profiles.php:681
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:148
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: ../../mod/profiles.php:684
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: ../../mod/profiles.php:685
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: ../../mod/profiles.php:686
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Likes:"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Bitte wähle deine Zeitzone:"
 
-#: ../../mod/profiles.php:689
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: ../../mod/profiles.php:690
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: ../../mod/profiles.php:691
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: ../../mod/profiles.php:692
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von dir …"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: ../../mod/profiles.php:693
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: ../../mod/profiles.php:694
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: ../../mod/profiles.php:695
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: ../../mod/profiles.php:696
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: ../../mod/profiles.php:697
-msgid "Television"
-msgstr "Fernsehen"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personensuche"
 
-#: ../../mod/profiles.php:698
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: ../../mod/profiles.php:699
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: ../../mod/profiles.php:700
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: ../../mod/profiles.php:701
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: ../../mod/profiles.php:706
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: ../../mod/profiles.php:769
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: ../../mod/profiles.php:771 ../../boot.php:1607
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest du wirklich dieses Foto löschen?"
 
-#: ../../mod/profiles.php:782 ../../boot.php:1617
-msgid "Profile Image"
-msgstr "Profilbild"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: ../../mod/profiles.php:784 ../../boot.php:1620
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "einem Foto"
 
-#: ../../mod/profiles.php:785 ../../boot.php:1621
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "Die Bildgröße übersteigt das Limit von "
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: ../../mod/photos.php:807 ../../mod/wall_upload.php:144
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: ../../mod/photos.php:834 ../../mod/wall_upload.php:172
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "Datei anhängen"
+#: ../../mod/photos.php:1031 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "Weblink"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "Video-Link"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "Audio-Link"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "Ort setzen"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "Ort löschen"
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Titel setzen"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: ../../mod/friendica.php:63
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Tags: "
 
-#: ../../mod/friendica.php:68
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde dich an um fortzufahren."
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: ../../mod/api.php:104
+#: ../../mod/photos.php:1512
 msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: ../../mod/notes.php:44 ../../boot.php:2145
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: ../../mod/photos.php:1808 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
 
-#: ../../mod/localtime.php:33
+#: ../../mod/wall_attach.php:81
 #, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+msgid "File exceeds size limit of %d"
+msgstr "Die Datei ist größer als das erlaubte Limit von %d"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle deine Zeitzone:"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
+
+#: ../../mod/videos.php:301 ../../include/text.php:1405
+msgid "View Video"
+msgstr "Video ansehen"
+
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Neueste Videos"
+
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
 #: ../../mod/poke.php:192
 msgid "Poke/Prod"
@@ -5140,544 +5327,657 @@ msgstr "Was willst du mit dem Empfänger machen:"
 msgid "Make this post private"
 msgstr "Diesen Beitrag privat machen"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
-
-#: ../../mod/invite.php:49
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert)."
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gemeinsame Freunde"
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: ../../mod/invite.php:122
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
 #, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+msgid "Image exceeds size limit of %d"
+msgstr "Bildgröße überschreitet das Limit von %d"
 
-#: ../../mod/invite.php:123
+#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178
+#: ../../mod/wall_upload.php:185 ../../mod/item.php:484
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
+
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
 #, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: ../../mod/invite.php:126
+#: ../../mod/profile_photo.php:118
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
+
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Datei hochladen:"
+
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
+
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Hochladen"
+
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
+
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
+
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
+
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
+
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
+
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Anwendungen"
+
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
+
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu."
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: ../../mod/photos.php:52 ../../boot.php:2124
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
+msgstr "Entfernen"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Album löschen"
+#: ../../mod/events.php:335 ../../include/text.php:1647
+#: ../../include/text.php:1657
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorherige"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest du wirklich dieses Foto löschen?"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "Stunde:Minute"
 
-#: ../../mod/photos.php:662
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
+
+#: ../../mod/events.php:457
 #, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "einem Foto"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "Die Bildgröße übersteigt das Limit von "
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Benötigt"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../mod/delegate.php:130 ../../include/nav.php:168
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: ../../mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Dateien"
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib dein Passwort zur Verifikation ein:"
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Tags: "
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: ../../mod/item.php:964
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: ../../mod/photos.php:1512
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
+
+#: ../../mod/item.php:967
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest."
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Privates Foto"
+#: ../../mod/item.php:971
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit dir in Kontakt treten"
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Teilen"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} schickte dir eine Nachricht"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} kommentierte einen Beitrag von %s"
 
-#: ../../mod/regmod.php:92
+#: ../../mod/ping.php:261
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+msgid "{0} liked %s's post"
+msgstr "{0} mag %ss Beitrag"
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Bitte melde dich an."
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} mag %ss Beitrag nicht"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Account umziehen"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} ist jetzt mit %s befreundet"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} hat etwas veröffentlicht"
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist."
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} hat dich in einem Beitrag erwähnt"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Account Datei"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: ../../mod/uimport.php:70
+#: ../../mod/openid.php:53
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
-
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
-
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: ../../boot.php:744
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: ../../boot.php:747
-msgid "show fewer"
-msgstr "weniger anzeigen"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: ../../boot.php:1117
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: ../../boot.php:1235
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../boot.php:1260 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Abmelden"
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
+msgstr "Netzwerk"
 
-#: ../../boot.php:1261 ../../include/nav.php:92
-msgid "Login"
-msgstr "Anmeldung"
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: ../../boot.php:1263
-msgid "Nickname or Email address: "
-msgstr "Spitzname oder E-Mail-Adresse: "
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: ../../boot.php:1264
-msgid "Password: "
-msgstr "Passwort: "
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: ../../boot.php:1265
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: ../../boot.php:1268
-msgid "Or login using OpenID: "
-msgstr "Oder melde dich mit deiner OpenID an: "
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: ../../boot.php:1274
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: ../../boot.php:1277
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: ../../boot.php:1278
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: ../../boot.php:1280
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Behauptet dich zu kennen: "
 
-#: ../../boot.php:1281
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: ../../boot.php:1414
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "nein"
 
-#: ../../boot.php:1496 ../../boot.php:1630
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Genehmigen als: "
 
-#: ../../boot.php:1595
-msgid "Message"
-msgstr "Nachricht"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Freund"
 
-#: ../../boot.php:1601 ../../include/nav.php:173
-msgid "Profiles"
-msgstr "Profile"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: ../../boot.php:1601
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Verehrer"
 
-#: ../../boot.php:1701
-msgid "Network:"
-msgstr "Netzwerk"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: ../../boot.php:1731 ../../boot.php:1817
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: ../../boot.php:1732 ../../boot.php:1818
-msgid "F d"
-msgstr "d. F"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: ../../boot.php:1777 ../../boot.php:1858
-msgid "[today]"
-msgstr "[heute]"
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: ../../boot.php:1789
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: ../../boot.php:1790
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: ../../boot.php:1851
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: ../../boot.php:1869
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: ../../boot.php:1870
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: ../../boot.php:2107 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
+msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
 
-#: ../../boot.php:2110
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: ../../boot.php:2117
-msgid "Profile Details"
-msgstr "Profildetails"
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
+msgstr "Keine weiteren persönlichen Benachrichtigungen"
 
-#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Videos"
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: ../../boot.php:2141
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
+msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
 
-#: ../../boot.php:2148
-msgid "Only You Can See This"
-msgstr "Nur du kannst das sehen"
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "Thread ignorieren"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "Ignoriert"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Kategorien:"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
 
-#: ../../include/dbstructure.php:26
+#: ../../mod/invite.php:122
 #, php-format
 msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/invite.php:123
 #, php-format
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst."
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: ../../mod/invite.php:135
 msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
+
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
+
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
+
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
+
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
+
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Freunde von %s"
+
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Keine Freunde zum Anzeigen."
 
 #: ../../include/contact_widgets.php:6
 msgid "Add New Contact"
@@ -5714,18 +6014,10 @@ msgstr "Verbinden/Folgen"
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
-
 #: ../../include/contact_widgets.php:37
 msgid "Random Profile"
 msgstr "Zufälliges Profil"
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Freunde einladen"
-
 #: ../../include/contact_widgets.php:71
 msgid "Networks"
 msgstr "Netzwerke"
@@ -5734,438 +6026,229 @@ msgstr "Netzwerke"
 msgid "All Networks"
 msgstr "Alle Netzwerke"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
-
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Alles"
-
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Kategorien"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Features"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Web-Editor"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
-
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
-
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
-
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
-
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Archiv"
-
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
-
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Gruppen Filter"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
-
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
-
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
-
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
-
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
-
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
-
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
-
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
-
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
-
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
-
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
-
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
-
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
-
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
-
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Tagging"
-
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
-
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Beitragskategorien"
-
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
-
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
-
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
-
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
-
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
-
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
-
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
-
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
-
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
-
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
-
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
-
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
-
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
-
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
-
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
-
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
-
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
-
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
-
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "folgen"
-
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
-
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
-
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "bearbeiten"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Alles"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "Jahr"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1063
+#: ../../include/api.php:1065
+msgid "User not found."
+msgstr "Nutzer nicht gefunden."
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "Monat"
+#: ../../include/api.php:771
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "Tag"
+#: ../../include/api.php:790
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nie"
+#: ../../include/api.php:809
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: ../../include/api.php:1272
+msgid "There is no status with this id."
+msgstr "Es gibt keinen Status mit dieser ID."
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "Jahre"
+#: ../../include/api.php:1342
+msgid "There is no conversation with this id."
+msgstr "Es existiert keine Unterhaltung mit dieser ID."
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "Monate"
+#: ../../include/api.php:1614
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "Woche"
+#: ../../include/api.php:1625
+msgid "Invalid item."
+msgstr "Ungültiges Objekt"
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "Wochen"
+#: ../../include/api.php:1635
+msgid "Invalid action. "
+msgstr "Ungültige Aktion"
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "Tage"
+#: ../../include/api.php:1643
+msgid "DB error"
+msgstr "DB Error"
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "Stunde"
+#: ../../include/network.php:895
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "Stunden"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:154
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "Minute"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:162
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "Minuten"
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "Sekunde"
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "Sekunden"
+#: ../../include/notifier.php:796 ../../include/enotify.php:33
+#: ../../include/delivery.php:467
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: ../../include/datetime.php:477 ../../include/items.php:2195
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: ../../include/datetime.php:478 ../../include/items.php:2196
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast."
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "zeigen"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "nicht zeigen"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Freunde"
 
-#: ../../include/security.php:366
+#: ../../include/user.php:377
+#, php-format
 msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "Veranstaltung"
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s."
 
 #: ../../include/conversation.php:207
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr "%1$s stupste %2$s"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1004
+#: ../../include/conversation.php:211 ../../include/text.php:1005
 msgid "poked"
 msgstr "stupste"
 
@@ -6190,6 +6273,37 @@ msgstr "Lösche die markierten Beiträge"
 msgid "Follow Thread"
 msgstr "Folge der Unterhaltung"
 
+#: ../../include/conversation.php:876 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Pinnwand anschauen"
+
+#: ../../include/conversation.php:877 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Profil anschauen"
+
+#: ../../include/conversation.php:878 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Bilder anschauen"
+
+#: ../../include/conversation.php:879 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
+
+#: ../../include/conversation.php:881 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Private Nachricht senden"
+
+#: ../../include/conversation.php:882 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Anstupsen"
+
 #: ../../include/conversation.php:944
 #, php-format
 msgid "%s likes this."
@@ -6278,511 +6392,691 @@ msgstr "Poste an Kontakte"
 msgid "Private post"
 msgstr "Privater Beitrag"
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Abgemeldet."
+
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
+
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
+
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
+
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
 
-#: ../../include/text.php:296
+#: ../../include/text.php:297
 msgid "newer"
 msgstr "neuer"
 
-#: ../../include/text.php:298
+#: ../../include/text.php:299
 msgid "older"
 msgstr "älter"
 
-#: ../../include/text.php:303
+#: ../../include/text.php:304
 msgid "prev"
 msgstr "vorige"
 
-#: ../../include/text.php:305
+#: ../../include/text.php:306
 msgid "first"
 msgstr "erste"
 
-#: ../../include/text.php:337
+#: ../../include/text.php:338
 msgid "last"
 msgstr "letzte"
 
-#: ../../include/text.php:340
+#: ../../include/text.php:341
 msgid "next"
 msgstr "nächste"
 
-#: ../../include/text.php:854
+#: ../../include/text.php:855
 msgid "No contacts"
 msgstr "Keine Kontakte"
 
-#: ../../include/text.php:863
+#: ../../include/text.php:864
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d Kontakt"
 msgstr[1] "%d Kontakte"
 
-#: ../../include/text.php:1004
+#: ../../include/text.php:1005
 msgid "poke"
 msgstr "anstupsen"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "ping"
 msgstr "anpingen"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "pinged"
 msgstr "pingte"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prod"
 msgstr "knuffen"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prodded"
 msgstr "knuffte"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slap"
 msgstr "ohrfeigen"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slapped"
 msgstr "ohrfeigte"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "finger"
 msgstr "befummeln"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "fingered"
 msgstr "befummelte"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuff"
 msgstr "eine Abfuhr erteilen"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuffed"
 msgstr "abfuhrerteilte"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1024
 msgid "happy"
 msgstr "glücklich"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1025
 msgid "sad"
 msgstr "traurig"
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1026
 msgid "mellow"
 msgstr "sanft"
 
-#: ../../include/text.php:1026
+#: ../../include/text.php:1027
 msgid "tired"
 msgstr "müde"
 
-#: ../../include/text.php:1027
+#: ../../include/text.php:1028
 msgid "perky"
 msgstr "frech"
 
-#: ../../include/text.php:1028
+#: ../../include/text.php:1029
 msgid "angry"
 msgstr "sauer"
 
-#: ../../include/text.php:1029
+#: ../../include/text.php:1030
 msgid "stupified"
 msgstr "verblüfft"
 
-#: ../../include/text.php:1030
+#: ../../include/text.php:1031
 msgid "puzzled"
 msgstr "verwirrt"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1032
 msgid "interested"
 msgstr "interessiert"
 
-#: ../../include/text.php:1032
+#: ../../include/text.php:1033
 msgid "bitter"
 msgstr "verbittert"
 
-#: ../../include/text.php:1033
+#: ../../include/text.php:1034
 msgid "cheerful"
 msgstr "fröhlich"
 
-#: ../../include/text.php:1034
+#: ../../include/text.php:1035
 msgid "alive"
 msgstr "lebendig"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1036
 msgid "annoyed"
 msgstr "verärgert"
 
-#: ../../include/text.php:1036
+#: ../../include/text.php:1037
 msgid "anxious"
 msgstr "unruhig"
 
-#: ../../include/text.php:1037
+#: ../../include/text.php:1038
 msgid "cranky"
 msgstr "schrullig"
 
-#: ../../include/text.php:1038
+#: ../../include/text.php:1039
 msgid "disturbed"
 msgstr "verstört"
 
-#: ../../include/text.php:1039
+#: ../../include/text.php:1040
 msgid "frustrated"
 msgstr "frustriert"
 
-#: ../../include/text.php:1040
+#: ../../include/text.php:1041
 msgid "motivated"
 msgstr "motiviert"
 
-#: ../../include/text.php:1041
+#: ../../include/text.php:1042
 msgid "relaxed"
 msgstr "entspannt"
 
-#: ../../include/text.php:1042
+#: ../../include/text.php:1043
 msgid "surprised"
 msgstr "überrascht"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Monday"
 msgstr "Montag"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Tuesday"
 msgstr "Dienstag"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Wednesday"
 msgstr "Mittwoch"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Thursday"
 msgstr "Donnerstag"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Friday"
 msgstr "Freitag"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Saturday"
 msgstr "Samstag"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Sunday"
 msgstr "Sonntag"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "January"
 msgstr "Januar"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "February"
 msgstr "Februar"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "March"
 msgstr "März"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "April"
 msgstr "April"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "May"
 msgstr "Mai"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "June"
 msgstr "Juni"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "July"
 msgstr "Juli"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "August"
 msgstr "August"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "September"
 msgstr "September"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "October"
 msgstr "Oktober"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "November"
 msgstr "November"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "December"
 msgstr "Dezember"
 
-#: ../../include/text.php:1434
+#: ../../include/text.php:1437
 msgid "bytes"
 msgstr "Byte"
 
-#: ../../include/text.php:1458 ../../include/text.php:1470
+#: ../../include/text.php:1461 ../../include/text.php:1473
 msgid "Click to open/close"
 msgstr "Zum öffnen/schließen klicken"
 
-#: ../../include/text.php:1699 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "Standard"
-
-#: ../../include/text.php:1711
+#: ../../include/text.php:1714
 msgid "Select an alternate language"
 msgstr "Alternative Sprache auswählen"
 
-#: ../../include/text.php:1967
+#: ../../include/text.php:1970
 msgid "activity"
 msgstr "Aktivität"
 
-#: ../../include/text.php:1970
+#: ../../include/text.php:1973
 msgid "post"
 msgstr "Beitrag"
 
-#: ../../include/text.php:2138
+#: ../../include/text.php:2141
 msgid "Item filed"
 msgstr "Beitrag abgelegt"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
-#: ../../include/bbcode.php:1028
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
+
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Danke,"
+
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
+
+#: ../../include/enotify.php:64
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
+
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
+
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte dir %2$s."
+
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "eine private Nachricht"
+
+#: ../../include/enotify.php:72
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
+
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
+
+#: ../../include/enotify.php:149
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+
+#: ../../include/enotify.php:150
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
+
+#: ../../include/enotify.php:153 ../../include/enotify.php:168
+#: ../../include/enotify.php:181 ../../include/enotify.php:194
+#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
+
+#: ../../include/enotify.php:162
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
+
+#: ../../include/enotify.php:164
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
+
+#: ../../include/enotify.php:175
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat dich erwähnt"
+
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte dich auf %2$s"
+
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
+
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
+
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat dich auf %2$s angestupst"
+
+#: ../../include/enotify.php:204
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
+
+#: ../../include/enotify.php:219
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
 
-#: ../../include/bbcode.php:528
+#: ../../include/enotify.php:220
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
 
-#: ../../include/bbcode.php:562
+#: ../../include/enotify.php:221
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../include/enotify.php:233
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:31
-msgid "noreply"
-msgstr "noreply"
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst du das Profil betrachten: %s"
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../include/enotify.php:239
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit dir"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit dir auf %2$s"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: ../../include/enotify.php:271
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: ../../include/enotify.php:272
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Name:"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/enotify.php:281
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' hat deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hat deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../include/enotify.php:307
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../include/enotify.php:309
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "StatusNet"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
+
+#: ../../include/enotify.php:327
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: ../../include/Scrape.php:593
+#: ../../include/Scrape.php:614
 msgid " on Last.fm"
 msgstr " bei Last.fm"
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Beginnt:"
-
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Endet:"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "bearbeiten"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alter:"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tags"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Fernsehen:"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "folgen"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
 #: ../../include/nav.php:73
 msgid "End this session"
 msgstr "Diese Sitzung beenden"
 
-#: ../../include/nav.php:76 ../../include/nav.php:146
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
-
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Deine Profilseite"
-
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Deine Fotos"
-
 #: ../../include/nav.php:79
 msgid "Your videos"
 msgstr "Deine Videos"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Deine Ereignisse"
-
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
-
 #: ../../include/nav.php:81
 msgid "Your personal notes"
 msgstr "Deine persönlichen Notizen"
@@ -6903,919 +7197,727 @@ msgstr "Navigation"
 msgid "Site map"
 msgstr "Sitemap"
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1062
-#: ../../include/api.php:1064
-msgid "User not found."
-msgstr "Nutzer nicht gefunden."
-
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
-
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
-
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
-
-#: ../../include/api.php:1271
-msgid "There is no status with this id."
-msgstr "Es gibt keinen Status mit dieser ID."
-
-#: ../../include/api.php:1341
-msgid "There is no conversation with this id."
-msgstr "Es existiert keine Unterhaltung mit dieser ID."
-
-#: ../../include/api.php:1613
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
-
-#: ../../include/api.php:1624
-msgid "Invalid item."
-msgstr "Ungültiges Objekt"
-
-#: ../../include/api.php:1634
-msgid "Invalid action. "
-msgstr "Ungültige Aktion"
-
-#: ../../include/api.php:1642
-msgid "DB error"
-msgstr "DB Error"
-
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
-
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
-
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
-
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
-
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
-
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
-
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
-
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Freunde"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Alter:"
 
-#: ../../include/user.php:381
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2$s."
-
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
-
-#: ../../include/diaspora.php:2332
-msgid "Attachments:"
-msgstr "Anhänge:"
-
-#: ../../include/items.php:4526
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest du wirklich dieses Item löschen?"
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: ../../include/items.php:4749
-msgid "Archives"
-msgstr "Archiv"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tags"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
+#: ../../include/bbcode.php:1048
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: ../../include/bbcode.php:528
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: ../../include/bbcode.php:562
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "StatusNet"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "Jahr"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "Monat"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "Tag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nie"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "Jahre"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "Monate"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "Woche"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "Wochen"
+
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "Tage"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "Stunde"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "Stunden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "Minute"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "Minuten"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "Sekunde"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "Sekunden"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../include/datetime.php:477 ../../include/items.php:2204
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
+#: ../../include/datetime.php:478 ../../include/items.php:2205
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Danke,"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Web-Editor"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Den Web-Editor für neue Beiträge aktivieren"
 
-#: ../../include/enotify.php:61
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: ../../include/enotify.php:65
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: ../../include/enotify.php:67
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat dir eine neue private Nachricht auf %2$s geschickt."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte dir %2$s."
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: ../../include/enotify.php:68
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: ../../include/enotify.php:69
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten."
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: ../../include/enotify.php:121
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: ../../include/enotify.php:136
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]deinen %3$s[/url]"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: ../../include/enotify.php:146
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: ../../include/enotify.php:147
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: ../../include/enotify.php:150 ../../include/enotify.php:165
-#: ../../include/enotify.php:178 ../../include/enotify.php:191
-#: ../../include/enotify.php:209 ../../include/enotify.php:222
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: ../../include/enotify.php:159
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: ../../include/enotify.php:161
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s hat etwas auf [url=%2$s]deiner Pinnwand[/url] gepostet"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat dich erwähnt"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte dich auf %2$s"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: ../../include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: ../../include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat dich auf %2$s angestupst"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
 
-#: ../../include/enotify.php:216
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Tagging"
 
-#: ../../include/enotify.php:217
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: ../../include/enotify.php:218
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: ../../include/enotify.php:229
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: ../../include/enotify.php:230
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: ../../include/enotify.php:231
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: ../../include/enotify.php:234 ../../include/enotify.php:276
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst du das Profil betrachten: %s"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: ../../include/enotify.php:236
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: ../../include/enotify.php:244
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit dir"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: ../../include/enotify.php:245 ../../include/enotify.php:246
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit dir auf %2$s"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
 
-#: ../../include/enotify.php:252
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
 
-#: ../../include/enotify.php:253 ../../include/enotify.php:254
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: ../../include/enotify.php:267
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: ../../include/diaspora.php:2520
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: ../../include/enotify.php:268
+#: ../../include/dbstructure.php:26
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein."
 
-#: ../../include/enotify.php:269
+#: ../../include/dbstructure.php:31
 #, php-format
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: ../../include/enotify.php:274
-msgid "Name:"
-msgstr "Name:"
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: ../../include/enotify.php:275
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
+msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
 
-#: ../../include/enotify.php:278
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: ../../include/enotify.php:286 ../../include/enotify.php:299
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+#: ../../include/items.php:4539
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest du wirklich dieses Item löschen?"
 
-#: ../../include/enotify.php:287 ../../include/enotify.php:300
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' hat deine Kontaktanfrage auf  %2$s bestätigt"
+#: ../../include/items.php:4762
+msgid "Archives"
+msgstr "Archiv"
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:301
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s hat deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
+#: ../../include/oembed.php:212
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../include/enotify.php:291
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+#: ../../include/oembed.php:221
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: ../../include/enotify.php:294 ../../include/enotify.php:308
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: ../../include/enotify.php:304
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: ../../include/enotify.php:306
-#, php-format
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
+
+#: ../../include/security.php:366
 msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: ../../include/enotify.php:319
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../include/enotify.php:320
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../include/enotify.php:321
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../include/enotify.php:327
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: ../../include/oembed.php:210
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: ../../include/oembed.php:219
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
+
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
+
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
+
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Theme Breite festlegen"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Farbschema"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Liniengröße für Beiträge und Kommantare festlegen"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Farbschema wählen"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Ausrichtung"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Mitte"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Auflösung für die Mittelspalte setzen"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Wähle Farbschema"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Longitude (X) der Earth Layer"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Latitude (Y) der Earth Layer"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
-msgstr "Foren"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Community-Profile"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Hilfe oder @NewHere"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Verbinde Dienste"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Freunde finden"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Letzte Nutzer"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Letzte Fotos"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Zuletzt gemocht"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Deine Kontakte"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Deine privaten Fotos"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "Stil auswählen"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "greenzero"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "purplezero"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "easterbunny"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "darkzero"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "comix"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "slackr"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variationen"
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
index cb21bc55fec6b6dbebdeba551aa5b0517da79fdc..ca804d0c77e57f4eda764e24c0dea20a684a700e 100644 (file)
@@ -5,209 +5,226 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet",
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["Select"] = "Auswählen";
+$a->strings["Delete"] = "Löschen";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["ignored"] = "Ignoriert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["Categories:"] = "Kategorien:";
+$a->strings["Filed under:"] = "Abgelegt unter:";
+$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
+$a->strings["to"] = "zu";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["%s from %s"] = "%s von %s";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["Please wait"] = "Bitte warten";
+$a->strings["%d comment"] = array(
+       0 => "%d Kommentar",
+       1 => "%d Kommentare",
 );
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Cancel"] = "Abbrechen";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["Never"] = "Niemals";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
-$a->strings["%d contact in common"] = array(
-       0 => "%d gemeinsamer Kontakt",
-       1 => "%d gemeinsame Kontakte",
+$a->strings["comment"] = array(
+       0 => "Kommentar",
+       1 => "Kommentare",
 );
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
-$a->strings["Repair"] = "Reparieren";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Contact Editor"] = "Kontakt Editor";
+$a->strings["show more"] = "mehr anzeigen";
+$a->strings["This is you"] = "Das bist du";
 $a->strings["Submit"] = "Senden";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Last update:"] = "letzte Aktualisierung:";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Disabled"] = "Deaktiviert";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
-$a->strings["All Contacts"] = "Alle Kontakte";
-$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblocked"] = "Ungeblockt";
-$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
-$a->strings["Blocked"] = "Geblockt";
-$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
-$a->strings["Ignored"] = "Ignoriert";
-$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
-$a->strings["Archived"] = "Archiviert";
-$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
-$a->strings["Hidden"] = "Verborgen";
-$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "du bist Fan von";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Contacts"] = "Kontakte";
-$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["Finding: "] = "Funde: ";
-$a->strings["Find"] = "Finde";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Delete"] = "Löschen";
-$a->strings["No profile"] = "Kein Profil";
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
-$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Preview"] = "Vorschau";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
 $a->strings["Permission denied"] = "Zugriff verweigert";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
 $a->strings["Profile"] = "Profil";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$a->strings["Getting Started"] = "Einstieg";
-$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
-$a->strings["Edit Your Profile"] = "Editiere dein Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
-$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
-$a->strings["Connecting"] = "Verbindungen knüpfen";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
-$a->strings["Importing Emails"] = "Emails Importieren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
-$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
-$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
-$a->strings["Finding New People"] = "Neue Leute kennenlernen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
-$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
-$a->strings["Getting Help"] = "Hilfe bekommen";
-$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
-$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
-$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
-$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Upload File:"] = "Datei hochladen:";
-$a->strings["Select a profile:"] = "Profil auswählen:";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["or"] = "oder";
-$a->strings["skip this step"] = "diesen Schritt überspringen";
-$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
-$a->strings["Crop Image"] = "Bild zurechtschneiden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
-$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
-$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["photo"] = "Foto";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal photos"] = "Deine privaten Fotos";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["show"] = "zeigen";
+$a->strings["Theme settings"] = "Themeneinstellungen";
+$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
+$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
+$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
+$a->strings["Contacts"] = "Kontakte";
+$a->strings["Your contacts"] = "Deine Kontakte";
+$a->strings["Community Pages"] = "Foren";
+$a->strings["Community Profiles"] = "Community-Profile";
+$a->strings["Last users"] = "Letzte Nutzer";
+$a->strings["Last likes"] = "Zuletzt gemocht";
+$a->strings["event"] = "Veranstaltung";
 $a->strings["status"] = "Status";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Save to Folder:"] = "In diesem Ordner speichern:";
-$a->strings["- select -"] = "- auswählen -";
-$a->strings["Save"] = "Speichern";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
-$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
-$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["Group created."] = "Gruppe erstellt.";
-$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
-$a->strings["Group not found."] = "Gruppe nicht gefunden.";
-$a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["photo"] = "Foto";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
+$a->strings["Last photos"] = "Letzte Fotos";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Find Friends"] = "Freunde finden";
+$a->strings["Local Directory"] = "Lokales Verzeichnis";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
+$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
+$a->strings["Connect Services"] = "Verbinde Dienste";
+$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
+$a->strings["Set color scheme"] = "Wähle Farbschema";
+$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
+$a->strings["Alignment"] = "Ausrichtung";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Mitte";
+$a->strings["Color scheme"] = "Farbschema";
+$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
+$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
+$a->strings["Set theme width"] = "Theme Breite festlegen";
+$a->strings["Set colour scheme"] = "Farbschema wählen";
+$a->strings["default"] = "Standard";
+$a->strings["Midnight"] = "Mitternacht";
+$a->strings["Bootstrap"] = "Bootstrap";
+$a->strings["Shades of Pink"] = "Shades of Pink";
+$a->strings["Lime and Orange"] = "Lime and Orange";
+$a->strings["GeoCities Retro"] = "GeoCities Retro";
+$a->strings["Background Image"] = "Hintergrundbild";
+$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "Die URL eines Bildes (z.B. aus deinem Fotoalbum), das als Hintergrundbild verwendet werden soll.";
+$a->strings["Background Color"] = "Hintergrundfarbe";
+$a->strings["HEX value for the background color. Don't include the #"] = "HEX Wert der Hintergrundfarbe. Gib die # nicht mit an.";
+$a->strings["font size"] = "Schriftgröße";
+$a->strings["base font size for your interface"] = "Basis-Schriftgröße für dein Interface.";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Variationen";
+$a->strings["Set style"] = "Stil auswählen";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
+$a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
+$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
+$a->strings["Forgot your password?"] = "Passwort vergessen?";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
+$a->strings["terms of service"] = "Nutzungsbedingungen";
+$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
+$a->strings["privacy policy"] = "Datenschutzerklärung";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Message"] = "Nachricht";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["Change profile photo"] = "Profilbild ändern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Location:"] = "Ort:";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Über:";
+$a->strings["Network:"] = "Netzwerk";
+$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[heute]";
+$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
+$a->strings["[No description]"] = "[keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
+$a->strings["Mood"] = "Stimmung";
+$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Yes"] = "Ja";
+$a->strings["No"] = "Nein";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
+$a->strings["Registration"] = "Registrierung";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
+$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz";
 $a->strings["Profile not found."] = "Profil nicht gefunden.";
 $a->strings["Contact not found."] = "Kontakt nicht gefunden.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
@@ -229,25 +246,16 @@ $a->strings["Unable to set your contact credentials on our system."] = "Deine Ko
 $a->strings["Unable to update your contact profile details on our system"] = "Die Updates für dein Profil konnten nicht gespeichert werden";
 $a->strings["[Name Withheld]"] = "[Name unterdrückt]";
 $a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["View Video"] = "Video ansehen";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
 $a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
 $a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail.";
 $a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gesteööt\nworden. Um diese Anfrage zu verifizieren folge bitte dem unten stehenden\nLink oder kopiere ihn und füge ihn in die Addressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nEmail bitte.\n\nDein Passwort wird nicht geändern solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast.";
 $a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm deine Identität zu verifizieren folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere Email mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
 $a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
 $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
 $a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
 $a->strings["Your new password is"] = "Dein neues Passwort lautet";
 $a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
@@ -260,133 +268,149 @@ $a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
 $a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
 $a->strings["Reset"] = "Zurücksetzen";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
-$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
-$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
-$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
-$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
-$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["View Contacts"] = "Kontakte anzeigen";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Approve"] = "Genehmigen";
-$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Approve as: "] = "Genehmigen als: ";
-$a->strings["Friend"] = "Freund";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Fan/Admirer"] = "Fan/Verehrer";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["No introductions."] = "Keine Kontaktanfragen.";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
 $a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
 $a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
 $a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
 $a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["No recipient."] = "Kein Empfänger.";
 $a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
 $a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
 $a->strings["To:"] = "An:";
 $a->strings["Subject:"] = "Betreff:";
 $a->strings["Your message:"] = "Deine Nachricht:";
 $a->strings["Upload photo"] = "Foto hochladen";
 $a->strings["Insert web link"] = "Einen Link einfügen";
-$a->strings["Please wait"] = "Bitte warten";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und du";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-);
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["No mirroring"] = "Kein Spiegeln";
-$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
-$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["People Search"] = "Personensuche";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Files"] = "Dateien";
-$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
+$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
+$a->strings["Getting Started"] = "Einstieg";
+$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest du eine kurze Einleitung in die einzelnen Funktionen deines Profils und die Netzwerk-Reiter, wo du interessante Foren findest und neue Kontakte knüpfst.";
+$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn du dein Profil nicht veröffentlichst, ist das als wenn du deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest du es veröffentlichen - außer all deine Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust.";
+$a->strings["Edit Your Profile"] = "Editiere dein Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils.";
+$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in dein Standardprofil ein, die deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die deine Interessen teilen und können dir dann Kontakte vorschlagen.";
+$a->strings["Connecting"] = "Verbindungen knüpfen";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
+$a->strings["Importing Emails"] = "Emails Importieren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst.";
+$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
+$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis deiner Friendica Instanz";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst.";
+$a->strings["Finding New People"] = "Neue Leute kennenlernen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
+$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert deine Privatsphäre. Mit der Grundeinstellung werden deine Beiträge ausschließlich deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
+$a->strings["Getting Help"] = "Hilfe bekommen";
+$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
+$a->strings["Cancel"] = "Abbrechen";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Search Results For:"] = "Suchergebnisse für:";
+$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Saved Searches"] = "Gespeicherte Suchen";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
+$a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Group: "] = "Gruppe: ";
+$a->strings["Contact: "] = "Kontakt: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
+$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
+$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
+$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Next"] = "Nächste";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Pfad zu PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
+$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
+$a->strings["PHP cli binary"] = "PHP CLI Binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
+$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
+$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
+$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
+$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
+$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
+$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
 $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Nutzer";
@@ -394,8 +418,11 @@ $a->strings["Plugins"] = "Plugins";
 $a->strings["Themes"] = "Themen";
 $a->strings["DB updates"] = "DB Updates";
 $a->strings["Logs"] = "Protokolle";
+$a->strings["probe address"] = "Adresse untersuchen";
+$a->strings["check webfinger"] = "Webfinger überprüfen";
 $a->strings["Admin"] = "Administration";
 $a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["diagnostics"] = "Diagnose";
 $a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
 $a->strings["Normal Account"] = "Normales Konto";
 $a->strings["Soapbox Account"] = "Marktschreier-Konto";
@@ -413,6 +440,7 @@ $a->strings["Active plugins"] = "Aktive Plugins";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
 $a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
 $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
+$a->strings["Never"] = "Niemals";
 $a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
 $a->strings["Frequently"] = "immer wieder";
 $a->strings["Hourly"] = "Stündlich";
@@ -426,7 +454,6 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richt
 $a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
 $a->strings["Save Settings"] = "Einstellungen speichern";
-$a->strings["Registration"] = "Registrierung";
 $a->strings["File upload"] = "Datei hochladen";
 $a->strings["Policies"] = "Regeln";
 $a->strings["Advanced"] = "Erweitert";
@@ -434,6 +461,7 @@ $a->strings["Performance"] = "Performance";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
 $a->strings["Site name"] = "Seitenname";
 $a->strings["Host name"] = "Host Name";
+$a->strings["Sender Email"] = "Absender für Emails";
 $a->strings["Banner/Logo"] = "Banner/Logo";
 $a->strings["Additional Info"] = "Zusätzliche Informationen";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf dir.friendica.com/siteinfo angezeigt werden.";
@@ -566,9 +594,13 @@ $a->strings["select all"] = "Alle auswählen";
 $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
 $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
 $a->strings["Request date"] = "Anfragedatum";
+$a->strings["Name"] = "Name";
 $a->strings["Email"] = "E-Mail";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
+$a->strings["Approve"] = "Genehmigen";
 $a->strings["Deny"] = "Verwehren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unblock"] = "Entsperren";
 $a->strings["Site admin"] = "Seitenadministrator";
 $a->strings["Account expired"] = "Account ist abgelaufen";
 $a->strings["New User"] = "Neuer Nutzer";
@@ -600,231 +632,254 @@ $a->strings["Enable Debugging"] = "Protokoll führen";
 $a->strings["Log file"] = "Protokolldatei";
 $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
 $a->strings["Log level"] = "Protokoll-Level";
+$a->strings["Update now"] = "Jetzt aktualisieren";
 $a->strings["Close"] = "Schließen";
 $a->strings["FTP Host"] = "FTP Host";
 $a->strings["FTP Path"] = "FTP Pfad";
 $a->strings["FTP User"] = "FTP Nutzername";
 $a->strings["FTP Password"] = "FTP Passwort";
-$a->strings["Search Results For:"] = "Suchergebnisse für:";
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
+$a->strings["Search"] = "Suche";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["link"] = "Link";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
+$a->strings["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["Save"] = "Speichern";
+$a->strings["upload photo"] = "Bild hochladen";
+$a->strings["Attach file"] = "Datei anhängen";
+$a->strings["attach file"] = "Datei anhängen";
+$a->strings["web link"] = "Weblink";
+$a->strings["Insert video link"] = "Video-Adresse einfügen";
+$a->strings["video link"] = "Video-Link";
+$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
+$a->strings["audio link"] = "Audio-Link";
+$a->strings["Set your location"] = "Deinen Standort festlegen";
+$a->strings["set location"] = "Ort setzen";
+$a->strings["Clear browser location"] = "Browser-Standort leeren";
+$a->strings["clear location"] = "Ort löschen";
+$a->strings["Permission settings"] = "Berechtigungseinstellungen";
+$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Public post"] = "Öffentlicher Beitrag";
+$a->strings["Set title"] = "Titel setzen";
+$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Account approved."] = "Konto freigegeben.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
+$a->strings["Please login."] = "Bitte melde dich an.";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Finding: "] = "Funde: ";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["Find"] = "Finde";
+$a->strings["Age: "] = "Alter: ";
+$a->strings["Gender: "] = "Geschlecht:";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers <strong>jetzt</strong>, wenn du dir unsicher bist, was du tun willst.";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all deine Kontakte zu senden.";
+$a->strings["Move account"] = "Account umziehen";
+$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Help"] = "Hilfe";
+$a->strings["No profile"] = "Kein Profil";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
-$a->strings["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Group: "] = "Gruppe: ";
-$a->strings["Contact: "] = "Kontakt: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Friends of %s"] = "Freunde von %s";
-$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["hour:minute"] = "Stunde:Minute";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["Required"] = "Benötigt";
-$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
-$a->strings["Event Finishes:"] = "Veranstaltungsende:";
-$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
-$a->strings["Description:"] = "Beschreibung";
-$a->strings["Location:"] = "Ort:";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Veranstaltung teilen";
-$a->strings["Select"] = "Auswählen";
-$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
-$a->strings["%s from %s"] = "%s von %s";
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
+$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
+$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
+$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
 $a->strings["View in context"] = "Im Zusammenhang betrachten";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
+$a->strings["%d contact edited."] = array(
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet",
 );
-$a->strings["comment"] = array(
-       0 => "Kommentar",
-       1 => "Kommentare",
+$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
+$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
+$a->strings["Contact updated."] = "Kontakt aktualisiert.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest du wirklich diesen Kontakt löschen?";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
+$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
+$a->strings["Suggest friends"] = "Kontakte vorschlagen";
+$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["%d contact in common"] = array(
+       0 => "%d gemeinsamer Kontakt",
+       1 => "%d gemeinsame Kontakte",
 );
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["like"] = "mag ich";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["This is you"] = "Das bist du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Vorschau";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["to"] = "zu";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
-$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
-$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
-$a->strings["Your Friendica site database has been installed."] = "Die Datenbank deiner Friendicaseite wurde installiert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
-$a->strings["System check"] = "Systemtest";
-$a->strings["Check again"] = "Noch einmal testen";
-$a->strings["Database connection"] = "Datenbankverbindung";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit deiner Datenbank Kontakt aufnehmen können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor du mit der Installation fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Server";
-$a->strings["Database Login Name"] = "Datenbank-Nutzer";
-$a->strings["Database Login Password"] = "Datenbank-Passwort";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst.";
-$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone deiner Webseite";
-$a->strings["Site settings"] = "Server-Einstellungen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Pfad zu PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
-$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
-$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
-$a->strings["PHP cli binary"] = "PHP CLI Binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
-$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
-$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
-$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
-$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
-$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
-$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
-$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis deiner Friendica-Installation zu erzeugen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$a->strings["Profile Match"] = "Profilübereinstimmungen";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
-$a->strings["is interested in:"] = "ist interessiert an:";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["link"] = "Link";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["everybody"] = "jeder";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["Display"] = "Anzeige";
-$a->strings["Social Networks"] = "Soziale Netzwerke";
-$a->strings["Delegations"] = "Delegationen";
-$a->strings["Connected apps"] = "Verbundene Programme";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
-$a->strings["Remove account"] = "Konto löschen";
-$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
-$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
-$a->strings["Features updated"] = "Features aktualisiert";
-$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet.";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$a->strings["Wrong password."] = "Falsches Passwort.";
-$a->strings["Password changed."] = "Passwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
-$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
-$a->strings[" Name too short."] = " Name ist zu kurz.";
-$a->strings["Wrong Password"] = "Falsches Passwort";
-$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
-$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Programm hinzufügen";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleiten";
-$a->strings["Icon url"] = "Icon URL";
-$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
-$a->strings["Connected Apps"] = "Verbundene Programme";
-$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Autorisierung entziehen";
-$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
-$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Features";
-$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "eingeschaltet";
-$a->strings["disabled"] = "ausgeschaltet";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Repair"] = "Reparieren";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["Contact Editor"] = "Kontakt Editor";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines deiner Profile das angezeigt werden soll, wenn %s dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["Last update:"] = "letzte Aktualisierung:";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
+$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
+$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung wann immer dieser Kontakt einen neuen Beitrag schreibt.";
+$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
+$a->strings["Disabled"] = "Deaktiviert";
+$a->strings["Fetch information"] = "Beziehe Information";
+$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
+$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten die nicht in Hashtags konvertiert werden wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
+$a->strings["All Contacts"] = "Alle Kontakte";
+$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblocked"] = "Ungeblockt";
+$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
+$a->strings["Blocked"] = "Geblockt";
+$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
+$a->strings["Ignored"] = "Ignoriert";
+$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
+$a->strings["Archived"] = "Archiviert";
+$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
+$a->strings["Hidden"] = "Verborgen";
+$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
+$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "du bist Fan von";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Update"] = "Aktualisierungen";
+$a->strings["everybody"] = "jeder";
+$a->strings["Additional features"] = "Zusätzliche Features";
+$a->strings["Display"] = "Anzeige";
+$a->strings["Social Networks"] = "Soziale Netzwerke";
+$a->strings["Delegations"] = "Delegationen";
+$a->strings["Connected apps"] = "Verbundene Programme";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["Remove account"] = "Konto löschen";
+$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
+$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
+$a->strings["Features updated"] = "Features aktualisiert";
+$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an deine Kontakte versendet.";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
+$a->strings["Wrong password."] = "Falsches Passwort.";
+$a->strings["Password changed."] = "Passwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
+$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
+$a->strings[" Name too short."] = " Name ist zu kurz.";
+$a->strings["Wrong Password"] = "Falsches Passwort";
+$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
+$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Programm hinzufügen";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleiten";
+$a->strings["Icon url"] = "Icon URL";
+$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
+$a->strings["Connected Apps"] = "Verbundene Programme";
+$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Autorisierung entziehen";
+$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
+$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Features";
+$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
+$a->strings["enabled"] = "eingeschaltet";
+$a->strings["disabled"] = "ausgeschaltet";
 $a->strings["StatusNet"] = "StatusNet";
 $a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
 $a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
@@ -869,7 +924,6 @@ $a->strings["Private forum - approved members only"] = "Privates Forum, nur für
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
 $a->strings["Publish your default profile in your local site directory?"] = "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
-$a->strings["No"] = "Nein";
 $a->strings["Publish your default profile in the global social directory?"] = "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
 $a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
@@ -879,6 +933,7 @@ $a->strings["Allow friends to tag your posts?"] = "Dürfen deine Kontakte deine
 $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
 $a->strings["Permit unknown people to send you private mail?"] = "Dürfen dir Unbekannte private Nachrichten schicken?";
 $a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
+$a->strings["or"] = "oder";
 $a->strings["Your Identity Address is"] = "Die Adresse deines Profils lautet:";
 $a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
 $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
@@ -935,98 +990,6 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
 $a->strings["Relocate"] = "Umziehen";
 $a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button.";
 $a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
-$a->strings["You have already introduced yourself here."] = "Du hast dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob du bereits mit %s befreundet bist.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Please login to confirm introduction."] = "Bitte melde dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige deine Kontaktanfrage bei %s.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit deiner OpenID ausfüllen, indem du deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation ID: "] = "ID deiner Einladung: ";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
-$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Import"] = "Import";
-$a->strings["Import your profile to this friendica instance"] = "Importiere dein Profil auf diese Friendica Instanz";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["Search"] = "Suche";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["About:"] = "Über:";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
-$a->strings["Common Friends"] = "Gemeinsame Freunde";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["Mood"] = "Stimmung";
-$a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
-$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
 $a->strings["Profile deleted."] = "Profil gelöscht.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Neues Profil angelegt.";
@@ -1102,79 +1065,73 @@ $a->strings["Work/employment"] = "Arbeit/Anstellung";
 $a->strings["School/education"] = "Schule/Ausbildung";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
 $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Change profile photo"] = "Profilbild ändern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
-$a->strings["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["upload photo"] = "Bild hochladen";
-$a->strings["Attach file"] = "Datei anhängen";
-$a->strings["attach file"] = "Datei anhängen";
-$a->strings["web link"] = "Weblink";
-$a->strings["Insert video link"] = "Video-Adresse einfügen";
-$a->strings["video link"] = "Video-Link";
-$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
-$a->strings["audio link"] = "Audio-Link";
-$a->strings["Set your location"] = "Deinen Standort festlegen";
-$a->strings["set location"] = "Ort setzen";
-$a->strings["Clear browser location"] = "Browser-Standort leeren";
-$a->strings["clear location"] = "Ort löschen";
-$a->strings["Permission settings"] = "Berechtigungseinstellungen";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Public post"] = "Öffentlicher Beitrag";
-$a->strings["Set title"] = "Titel setzen";
-$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["Personal Notes"] = "Persönliche Notizen";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:";
-$a->strings["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = array(
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
-);
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Group created."] = "Gruppe erstellt.";
+$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
+$a->strings["Group not found."] = "Gruppe nicht gefunden.";
+$a->strings["Group name changed."] = "Gruppenname geändert.";
+$a->strings["Save Group"] = "Gruppe speichern";
+$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["Group Editor"] = "Gruppeneditor";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
+$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
+$a->strings["Source input: "] = "Originaltext:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["System Notifications"] = "Systembenachrichtigungen";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und du";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
+);
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
+$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle deine Zeitzone:";
+$a->strings["Save to Folder:"] = "In diesem Ordner speichern:";
+$a->strings["- select -"] = "- auswählen -";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["View Contacts"] = "Kontakte anzeigen";
+$a->strings["People Search"] = "Personensuche";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
 $a->strings["Upload New Photos"] = "Neue Fotos hochladen";
 $a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
 $a->strings["Album not found."] = "Album nicht gefunden.";
@@ -1186,7 +1143,10 @@ $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2
 $a->strings["a photo"] = "einem Foto";
 $a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
 $a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
 $a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
 $a->strings["Upload Photos"] = "Bilder hochladen";
 $a->strings["New album name: "] = "Name des neuen Albums: ";
@@ -1216,185 +1176,225 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam
 $a->strings["Private photo"] = "Privates Foto";
 $a->strings["Public photo"] = "Öffentliches Foto";
 $a->strings["Share"] = "Teilen";
+$a->strings["View Album"] = "Album betrachten";
 $a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde dich an.";
-$a->strings["Move account"] = "Account umziehen";
-$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst deinen Account vom alten Server exportieren und hier hochladen. Wir stellen deinen alten Account mit all deinen Kontakten wieder her. Wir werden auch versuchen all deine Freunde darüber zu informieren, dass du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
-$a->strings["show fewer"] = "weniger anzeigen";
-$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
-$a->strings["Create a New Account"] = "Neues Konto erstellen";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
-$a->strings["Password: "] = "Passwort: ";
-$a->strings["Remember me"] = "Anmeldedaten merken";
-$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
-$a->strings["Forgot your password?"] = "Passwort vergessen?";
-$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
-$a->strings["terms of service"] = "Nutzungsbedingungen";
-$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
-$a->strings["privacy policy"] = "Datenschutzerklärung";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Message"] = "Nachricht";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["Network:"] = "Netzwerk";
-$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[heute]";
-$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
-$a->strings["[No description]"] = "[keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["ignored"] = "Ignoriert";
-$a->strings["Categories:"] = "Kategorien:";
-$a->strings["Filed under:"] = "Abgelegt unter:";
-$a->strings["via"] = "via";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
-$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
-$a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
-);
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["General Features"] = "Allgemeine Features";
-$a->strings["Multiple Profiles"] = "Mehrere Profile";
-$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
-$a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Richtext Editor"] = "Web-Editor";
-$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
-$a->strings["Post Preview"] = "Beitragsvorschau";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
-$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
-$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
-$a->strings["Search by Date"] = "Archiv";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
-$a->strings["Group Filter"] = "Gruppen Filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
-$a->strings["Network Filter"] = "Netzwerk Filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
-$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
-$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
-$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
-$a->strings["Connect URL missing."] = "Connect-URL fehlt";
-$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
-$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
-$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
-$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
-$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["following"] = "folgen";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["Miscellaneous"] = "Verschiedenes";
-$a->strings["year"] = "Jahr";
-$a->strings["month"] = "Monat";
-$a->strings["day"] = "Tag";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["years"] = "Jahre";
-$a->strings["months"] = "Monate";
-$a->strings["week"] = "Woche";
-$a->strings["weeks"] = "Wochen";
-$a->strings["days"] = "Tage";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["show"] = "zeigen";
-$a->strings["don't show"] = "nicht zeigen";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
-$a->strings["Poke"] = "Anstupsen";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["Edit Contact"] = "Kontakt bearbeiten";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
-$a->strings["event"] = "Veranstaltung";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["View Video"] = "Video ansehen";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Poke/Prod"] = "Anstupsen";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Accountinformationen und Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["Common Friends"] = "Gemeinsame Freunde";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
+$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
+$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload"] = "Hochladen";
+$a->strings["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
+$a->strings["Crop Image"] = "Bild zurechtschneiden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
+$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
+$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Nothing new here"] = "Keine Neuigkeiten";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$a->strings["Profile Match"] = "Profilübereinstimmungen";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Standardprofil hinzu.";
+$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Tag removed"] = "Tag entfernt";
+$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
+$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["link to source"] = "Link zum Originalbeitrag";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["hour:minute"] = "Stunde:Minute";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Required"] = "Benötigt";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für deinen privaten Account, dem du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["Files"] = "Dateien";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Remove My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib dein Passwort zur Verifikation ein:";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
+$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
+$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
+$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem du auf diese Nachricht antwortest.";
+$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} schickte dir eine Nachricht";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
+$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
+$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
+$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
+$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
+$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
+$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
+$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["suggested by %s"] = "vorgeschlagen von %s";
+$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
+$a->strings["if applicable"] = "falls anwendbar";
+$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "nein";
+$a->strings["Approve as: "] = "Genehmigen als: ";
+$a->strings["Friend"] = "Freund";
+$a->strings["Sharer"] = "Teilenden";
+$a->strings["Fan/Admirer"] = "Fan/Verehrer";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["No introductions."] = "Keine Kontaktanfragen.";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
+$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
+$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
+$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
+$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
+$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
+$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
+$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
+$a->strings["%d message sent."] = array(
+       0 => "%d Nachricht gesendet.",
+       1 => "%d Nachrichten gesendet.",
+);
+$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen du beitreten kannst.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
+$a->strings["Send invitations"] = "Einladungen senden";
+$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die deine Kontoinformationen teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
+$a->strings["Friends of %s"] = "Freunde von %s";
+$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
+);
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Saved Folders"] = "Gespeicherte Ordner";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
+$a->strings["User not found."] = "Nutzer nicht gefunden.";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID.";
+$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID.";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$a->strings["Invalid item."] = "Ungültiges Objekt";
+$a->strings["Invalid action. "] = "Ungültige Aktion";
+$a->strings["DB error"] = "DB Error";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["noreply"] = "noreply";
+$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
+$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch dich mit der von dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
+$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
+$a->strings["Name too short."] = "Der Name ist zu kurz.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
+$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
+$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
+$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["Friends"] = "Freunde";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2\$s.";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
 $a->strings["poked"] = "stupste";
 $a->strings["post/item"] = "Nachricht/Beitrag";
@@ -1402,6 +1402,13 @@ $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$
 $a->strings["remove"] = "löschen";
 $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
 $a->strings["Follow Thread"] = "Folge der Unterhaltung";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["Edit Contact"] = "Kontakt bearbeiten";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Poke"] = "Anstupsen";
 $a->strings["%s likes this."] = "%s mag das.";
 $a->strings["%s doesn't like this."] = "%s mag das nicht.";
 $a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
@@ -1422,7 +1429,18 @@ $a->strings["permissions"] = "Zugriffsrechte";
 $a->strings["Post to Groups"] = "Poste an Gruppe";
 $a->strings["Post to Contacts"] = "Poste an Kontakte";
 $a->strings["Private post"] = "Privater Beitrag";
-$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       1 => "%d Kontakte nicht importiert",
+);
+$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
 $a->strings["newer"] = "neuer";
 $a->strings["older"] = "älter";
 $a->strings["prev"] = "vorige";
@@ -1486,68 +1504,90 @@ $a->strings["November"] = "November";
 $a->strings["December"] = "Dezember";
 $a->strings["bytes"] = "Byte";
 $a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
-$a->strings["default"] = "Standard";
 $a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
 $a->strings["activity"] = "Aktivität";
 $a->strings["post"] = "Beitrag";
 $a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["noreply"] = "noreply";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
-$a->strings["Block immediately"] = "Sofort blockieren";
-$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
-$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
-$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
-$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora";
-$a->strings["Statusnet"] = "StatusNet";
-$a->strings["App.net"] = "App.net";
+$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
+$a->strings["Thank You,"] = "Danke,";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
+$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit dir";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
+$a->strings["Name:"] = "Name:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat deine Kontaktanfrage auf  %2\$s bestätigt";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst.";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
 $a->strings[" on Last.fm"] = " bei Last.fm";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Tags:"] = "Tags";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Literatur/Bücher:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebesleben:";
-$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze deines Abonnements.";
-$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in deinem Abonnement nicht verfügbar.";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["Connect URL missing."] = "Connect-URL fehlt";
+$a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
+$a->strings["The profile address specified does not provide adequate information."] = "Die angegebene Profiladresse liefert unzureichende Informationen.";
+$a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name gefunden.";
+$a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
+$a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["following"] = "folgen";
+$a->strings["[no subject]"] = "[kein Betreff]";
 $a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Your photos"] = "Deine Fotos";
 $a->strings["Your videos"] = "Deine Videos";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
 $a->strings["Your personal notes"] = "Deine persönlichen Notizen";
 $a->strings["Sign in"] = "Anmelden";
 $a->strings["Home Page"] = "Homepage";
@@ -1578,39 +1618,123 @@ $a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalte
 $a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
 $a->strings["Navigation"] = "Navigation";
 $a->strings["Site map"] = "Sitemap";
-$a->strings["User not found."] = "Nutzer nicht gefunden.";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID.";
-$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID.";
-$a->strings["Invalid request."] = "Ungültige Anfrage";
-$a->strings["Invalid item."] = "Ungültiges Objekt";
-$a->strings["Invalid action. "] = "Ungültige Aktion";
-$a->strings["DB error"] = "DB Error";
-$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
-$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
-$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
-$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
-$a->strings["Name too short."] = "Der Name ist zu kurz.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
-$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
-$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
-$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["Friends"] = "Freunde";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich\nangemeldet hast.\n\nBitte nimm dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst du ja auch einige Informationen über dich in deinem\nProfil veröffentlichen, damit andere Leute dich einfacher finden können.\nBearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir\npassendes Profilbild zu wählen, damit dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.\n\nWir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für deine Aufmerksamkeit und willkommen auf %2\$s.";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Tags:"] = "Tags";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Literatur/Bücher:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebesleben:";
+$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["Image/photo"] = "Bild/Foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>";
+$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
+$a->strings["Block immediately"] = "Sofort blockieren";
+$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
+$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
+$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
+$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora";
+$a->strings["Statusnet"] = "StatusNet";
+$a->strings["App.net"] = "App.net";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["year"] = "Jahr";
+$a->strings["month"] = "Monat";
+$a->strings["day"] = "Tag";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["years"] = "Jahre";
+$a->strings["months"] = "Monate";
+$a->strings["week"] = "Woche";
+$a->strings["weeks"] = "Wochen";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Richtext Editor"] = "Web-Editor";
+$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
+$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
+$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
 $a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
 $a->strings["Attachments:"] = "Anhänge:";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
+$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
+$a->strings["Visible to everybody"] = "Für jeden sichtbar";
 $a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
 $a->strings["Archives"] = "Archiv";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$a->strings["Welcome "] = "Willkommen ";
+$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
+$a->strings["Welcome back "] = "Willkommen zurück ";
+$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
 $a->strings["Male"] = "Männlich";
 $a->strings["Female"] = "Weiblich";
 $a->strings["Currently Male"] = "Momentan männlich";
@@ -1668,113 +1792,5 @@ $a->strings["Uncertain"] = "Unsicher";
 $a->strings["It's complicated"] = "Ist kompliziert";
 $a->strings["Don't care"] = "Ist mir nicht wichtig";
 $a->strings["Ask me"] = "Frag mich";
-$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
-$a->strings["Thank You,"] = "Danke,";
-$a->strings["%s Administrator"] = "der Administrator von %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat dir eine neue private Nachricht auf %2\$s geschickt.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte dir %2\$s.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um deine privaten Nachrichten anzusehen und/oder zu beantworten.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]deinen %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem du folgst.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf deine Pinnwand";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]deiner Pinnwand[/url] gepostet";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat dich erwähnt";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte dich auf %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte dich[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat dich angestupst";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat dich auf %2\$s angestupst";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat dich angestupst[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat deinen Beitrag getaggt";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte deinen Beitrag auf %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
-$a->strings["You may visit their profile at %s"] = "Hier kannst du das Profil betrachten: %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit dir";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit dir auf %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
-$a->strings["Name:"] = "Name:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat deine Kontaktanfrage auf  %2\$s bestätigt";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn du Änderungen an eurer Beziehung vornehmen willst.";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
-);
-$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
-$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
-$a->strings["Set theme width"] = "Theme Breite festlegen";
-$a->strings["Color scheme"] = "Farbschema";
-$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
-$a->strings["Set colour scheme"] = "Farbschema wählen";
-$a->strings["Alignment"] = "Ausrichtung";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Mitte";
-$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
-$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
-$a->strings["Set color scheme"] = "Wähle Farbschema";
-$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
-$a->strings["Community Pages"] = "Foren";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Community-Profile";
-$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Connect Services"] = "Verbinde Dienste";
-$a->strings["Find Friends"] = "Freunde finden";
-$a->strings["Last users"] = "Letzte Nutzer";
-$a->strings["Last photos"] = "Letzte Fotos";
-$a->strings["Last likes"] = "Zuletzt gemocht";
-$a->strings["Your contacts"] = "Deine Kontakte";
-$a->strings["Your personal photos"] = "Deine privaten Fotos";
-$a->strings["Local Directory"] = "Lokales Verzeichnis";
-$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
-$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
-$a->strings["Set style"] = "Stil auswählen";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Variationen";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Drop Contact"] = "Kontakt löschen";
index cebd06869e71572334e87ee06f37168e830f7e65..74f6037939f925ab42bd95cfefb4e436ba448ae7 100644 (file)
@@ -3,7 +3,10 @@
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
+# Anthronaut <mail@anthronaut.net>, 2015
 # Cyboulette <cyboulette58@hotmail.fr>, 2014
+# Damien Goutte-Gattat <damien+transifex@incenp.org>, 2015
+# Damien Goutte-Gattat <damien+transifex@incenp.org>, 2015
 # Domovoy <domovoy@errlock.org>, 2012
 # Jak <jacques@riseup.net>, 2014
 # Lionel Triay <zapimax38@free.fr>, 2013
@@ -16,9 +19,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-01-22 17:30+0100\n"
-"PO-Revision-Date: 2015-01-23 11:48+0000\n"
-"Last-Translator: Sylvain Lagacé\n"
+"POT-Creation-Date: 2015-02-04 11:35+0100\n"
+"PO-Revision-Date: 2015-02-05 09:47+0000\n"
+"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
 "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -26,984 +29,1088 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../mod/contacts.php:107
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d contact édité"
-msgstr[1] "%d contacts édités."
-
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder à l'enregistrement du contact."
-
-#: ../../mod/contacts.php:152
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil séléctionné."
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Cette entrée à été édité"
 
-#: ../../mod/contacts.php:185
-msgid "Contact updated."
-msgstr "Contact mis-à-jour."
+#: ../../object/Item.php:116 ../../mod/content.php:620
+#: ../../mod/photos.php:1359
+msgid "Private Message"
+msgstr "Message privé"
 
-#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Échec de mise-à-jour du contact."
+#: ../../object/Item.php:120 ../../mod/content.php:728
+#: ../../mod/settings.php:676
+msgid "Edit"
+msgstr "Éditer"
 
-#: ../../mod/contacts.php:253 ../../mod/manage.php:96
-#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
-#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
-msgid "Permission denied."
-msgstr "Permission refusée."
+#: ../../object/Item.php:129 ../../mod/content.php:437
+#: ../../mod/content.php:740 ../../mod/photos.php:1653
+#: ../../include/conversation.php:613
+msgid "Select"
+msgstr "Sélectionner"
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been blocked"
-msgstr "Le contact a été bloqué"
+#: ../../object/Item.php:130 ../../mod/admin.php:985 ../../mod/content.php:438
+#: ../../mod/content.php:741 ../../mod/contacts.php:717
+#: ../../mod/settings.php:677 ../../mod/group.php:171
+#: ../../mod/photos.php:1654 ../../include/conversation.php:614
+msgid "Delete"
+msgstr "Supprimer"
 
-#: ../../mod/contacts.php:286
-msgid "Contact has been unblocked"
-msgstr "Le contact n'est plus bloqué"
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "sauver vers dossier"
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been ignored"
-msgstr "Le contact a été ignoré"
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
+msgstr "mett en avant"
 
-#: ../../mod/contacts.php:297
-msgid "Contact has been unignored"
-msgstr "Le contact n'est plus ignoré"
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
+msgstr "ne plus mettre en avant"
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been archived"
-msgstr "Contact archivé"
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "mettre en avant"
 
-#: ../../mod/contacts.php:309
-msgid "Contact has been unarchived"
-msgstr "Contact désarchivé"
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
+msgstr "mis en avant"
 
-#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
-msgid "Do you really want to delete this contact?"
-msgstr "Voulez-vous vraiment supprimer ce contact?"
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "ignorer le fil"
 
-#: ../../mod/contacts.php:336 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
-#: ../../include/items.php:4528
-msgid "Yes"
-msgstr "Oui"
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "Ne plus ignorer le fil"
 
-#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4531
-msgid "Cancel"
-msgstr "Annuler"
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "Ignorer le statut"
 
-#: ../../mod/contacts.php:351
-msgid "Contact has been removed."
-msgstr "Ce contact a été retiré."
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "ignoré"
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Vous êtes ami (et réciproquement) avec %s"
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
+msgstr "ajouter une étiquette"
 
-#: ../../mod/contacts.php:393
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Vous partagez avec %s"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../mod/photos.php:1542
+msgid "I like this (toggle)"
+msgstr "J'aime (bascule)"
 
-#: ../../mod/contacts.php:398
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s partage avec vous"
+#: ../../object/Item.php:231 ../../mod/content.php:684
+msgid "like"
+msgstr "aime"
 
-#: ../../mod/contacts.php:415
-msgid "Private communications are not available for this contact."
-msgstr "Les communications privées ne sont pas disponibles pour ce contact."
+#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../mod/photos.php:1543
+msgid "I don't like this (toggle)"
+msgstr "Je n'aime pas (bascule)"
 
-#: ../../mod/contacts.php:418 ../../mod/admin.php:546
-msgid "Never"
-msgstr "Jamais"
+#: ../../object/Item.php:232 ../../mod/content.php:685
+msgid "dislike"
+msgstr "n'aime pas"
 
-#: ../../mod/contacts.php:422
-msgid "(Update was successful)"
-msgstr "(Mise à jour effectuée avec succès)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "Share this"
+msgstr "Partager"
 
-#: ../../mod/contacts.php:422
-msgid "(Update was not successful)"
-msgstr "(Mise à jour échouée)"
+#: ../../object/Item.php:234 ../../mod/content.php:687
+msgid "share"
+msgstr "partager"
 
-#: ../../mod/contacts.php:424
-msgid "Suggest friends"
-msgstr "Suggérer amitié/contact"
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
+msgstr "Catégories:"
 
-#: ../../mod/contacts.php:428
-#, php-format
-msgid "Network type: %s"
-msgstr "Type de réseau %s"
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
+msgstr "Rangé sous:"
 
-#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#: ../../object/Item.php:326 ../../object/Item.php:327
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../include/conversation.php:654
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contact en commun"
-msgstr[1] "%d contacts en commun"
-
-#: ../../mod/contacts.php:436
-msgid "View all contacts"
-msgstr "Voir tous les contacts"
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:981
-msgid "Unblock"
-msgstr "Débloquer"
-
-#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
-#: ../../mod/contacts.php:713 ../../mod/admin.php:980
-msgid "Block"
-msgstr "Bloquer"
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
 
-#: ../../mod/contacts.php:444
-msgid "Toggle Blocked status"
-msgstr "(dés)activer l'état \"bloqué\""
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
+msgstr "à"
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
 
-#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Inter-mur"
 
-#: ../../mod/contacts.php:450
-msgid "Toggle Ignored status"
-msgstr "(dés)activer l'état \"ignoré\""
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "en Inter-mur:"
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Unarchive"
-msgstr "Désarchiver"
+#: ../../object/Item.php:340 ../../mod/content.php:481
+#: ../../mod/content.php:864 ../../include/conversation.php:674
+#, php-format
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
-msgid "Archive"
-msgstr "Archiver"
+#: ../../object/Item.php:361 ../../object/Item.php:677 ../../boot.php:745
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696
+msgid "Comment"
+msgstr "Commenter"
 
-#: ../../mod/contacts.php:457
-msgid "Toggle Archive status"
-msgstr "(dés)activer l'état \"archivé\""
+#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../mod/editpost.php:124 ../../mod/content.php:499
+#: ../../mod/content.php:883 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/photos.php:1545
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
+msgstr "Patientez"
 
-#: ../../mod/contacts.php:460
-msgid "Repair"
-msgstr "Réparer"
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commentaire"
+msgstr[1] "%d commentaires"
 
-#: ../../mod/contacts.php:463
-msgid "Advanced Contact Settings"
-msgstr "Réglages avancés du contact"
+#: ../../object/Item.php:389 ../../object/Item.php:402
+#: ../../mod/content.php:605 ../../include/text.php:1972
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commentaire"
 
-#: ../../mod/contacts.php:469
-msgid "Communications lost with this contact!"
-msgstr "Communications perdues avec ce contact !"
+#: ../../object/Item.php:390 ../../boot.php:746 ../../mod/content.php:606
+#: ../../include/contact_widgets.php:205
+msgid "show more"
+msgstr "montrer plus"
 
-#: ../../mod/contacts.php:472
-msgid "Contact Editor"
-msgstr "Éditeur de contact"
+#: ../../object/Item.php:675 ../../mod/content.php:707
+#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
+#: ../../mod/photos.php:1694
+msgid "This is you"
+msgstr "C'est vous"
 
-#: ../../mod/contacts.php:474 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../object/Item.php:678 ../../view/theme/perihel/config.php:95
+#: ../../view/theme/diabook/theme.php:633
 #: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/quattro/config.php:64
+#: ../../view/theme/zero-childs/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/clean/config.php:82
 #: ../../view/theme/duepuntozero/config.php:59
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:53
+#: ../../view/theme/vier-mobil/config.php:47 ../../mod/mood.php:137
+#: ../../mod/install.php:248 ../../mod/install.php:286
+#: ../../mod/crepair.php:186 ../../mod/content.php:710
+#: ../../mod/contacts.php:475 ../../mod/profiles.php:671
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../mod/localtime.php:45 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/invite.php:140
+#: ../../mod/manage.php:110
 msgid "Submit"
 msgstr "Envoyer"
 
-#: ../../mod/contacts.php:475
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: ../../object/Item.php:679 ../../mod/content.php:711
+msgid "Bold"
+msgstr "Gras"
 
-#: ../../mod/contacts.php:476
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
+#: ../../object/Item.php:680 ../../mod/content.php:712
+msgid "Italic"
+msgstr "Italique"
 
-#: ../../mod/contacts.php:477
-msgid "Contact Information / Notes"
-msgstr "Informations de contact / Notes"
+#: ../../object/Item.php:681 ../../mod/content.php:713
+msgid "Underline"
+msgstr "Souligné"
 
-#: ../../mod/contacts.php:478
-msgid "Edit contact notes"
-msgstr "Éditer les notes des contacts"
+#: ../../object/Item.php:682 ../../mod/content.php:714
+msgid "Quote"
+msgstr "Citation"
 
-#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+#: ../../object/Item.php:683 ../../mod/content.php:715
+msgid "Code"
+msgstr "Code"
 
-#: ../../mod/contacts.php:484
-msgid "Block/Unblock contact"
-msgstr "Bloquer/débloquer ce contact"
+#: ../../object/Item.php:684 ../../mod/content.php:716
+msgid "Image"
+msgstr "Image"
 
-#: ../../mod/contacts.php:485
-msgid "Ignore contact"
-msgstr "Ignorer ce contact"
+#: ../../object/Item.php:685 ../../mod/content.php:717
+msgid "Link"
+msgstr "Lien"
 
-#: ../../mod/contacts.php:486
-msgid "Repair URL settings"
-msgstr "Réglages de réparation des URL"
+#: ../../object/Item.php:686 ../../mod/content.php:718
+msgid "Video"
+msgstr "Vidéo"
 
-#: ../../mod/contacts.php:487
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: ../../object/Item.php:687 ../../mod/editpost.php:145
+#: ../../mod/content.php:719 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../include/conversation.php:1126
+msgid "Preview"
+msgstr "Aperçu"
 
-#: ../../mod/contacts.php:489
-msgid "Delete contact"
-msgstr "Effacer ce contact"
+#: ../../index.php:212 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Vous devez être connecté pour utiliser les greffons."
 
-#: ../../mod/contacts.php:493
-msgid "Last update:"
-msgstr "Dernière mise-à-jour :"
+#: ../../index.php:256 ../../mod/help.php:90
+msgid "Not Found"
+msgstr "Non trouvé"
 
-#: ../../mod/contacts.php:495
-msgid "Update public posts"
-msgstr "Mettre à jour les publications publiques:"
+#: ../../index.php:259 ../../mod/help.php:93
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
-msgid "Update now"
-msgstr "Mettre à jour"
-
-#: ../../mod/contacts.php:504
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: ../../index.php:368 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Permission refusée"
 
-#: ../../mod/contacts.php:505
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: ../../index.php:369 ../../mod/mood.php:114 ../../mod/display.php:499
+#: ../../mod/register.php:42 ../../mod/dfrn_confirm.php:55
+#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/wallmessage.php:9
+#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
+#: ../../mod/wallmessage.php:103 ../../mod/suggest.php:58
+#: ../../mod/network.php:4 ../../mod/install.php:151 ../../mod/editpost.php:10
+#: ../../mod/attach.php:33 ../../mod/regmod.php:110 ../../mod/crepair.php:119
+#: ../../mod/uimport.php:23 ../../mod/notes.php:20 ../../mod/contacts.php:254
+#: ../../mod/settings.php:102 ../../mod/settings.php:596
+#: ../../mod/settings.php:601 ../../mod/profiles.php:165
+#: ../../mod/profiles.php:603 ../../mod/group.php:19 ../../mod/follow.php:9
+#: ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/viewcontacts.php:24 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/wall_attach.php:55
+#: ../../mod/poke.php:135 ../../mod/wall_upload.php:66
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/events.php:140 ../../mod/delegate.php:12 ../../mod/nogroup.php:25
+#: ../../mod/fsuggest.php:78 ../../mod/item.php:168 ../../mod/item.php:184
+#: ../../mod/notifications.php:66 ../../mod/invite.php:15
+#: ../../mod/invite.php:101 ../../mod/manage.php:96 ../../mod/allfriends.php:9
+#: ../../include/items.php:4696
+msgid "Permission denied."
+msgstr "Permission refusée."
 
-#: ../../mod/contacts.php:506
-msgid "Currently archived"
-msgstr "Actuellement archivé"
+#: ../../index.php:428
+msgid "toggle mobile"
+msgstr "activ. mobile"
 
-#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Cacher ce contact aux autres"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../mod/notifications.php:93
+#: ../../include/nav.php:105 ../../include/nav.php:146
+msgid "Home"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:507
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
+#: ../../view/theme/perihel/theme.php:33
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:146
+msgid "Your posts and conversations"
+msgstr "Vos publications et conversations"
 
-#: ../../mod/contacts.php:508
-msgid "Notification for new posts"
-msgstr "Notification des nouvelles publications"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2114
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../include/nav.php:77 ../../include/profile_advanced.php:7
+#: ../../include/profile_advanced.php:87
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:508
-msgid "Send a notification of every new post of this contact"
-msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
+#: ../../view/theme/perihel/theme.php:34
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Votre page de profil"
 
-#: ../../mod/contacts.php:509
-msgid "Fetch further information for feeds"
-msgstr "Chercher plus d'informations pour les flux"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2121
+#: ../../mod/fbrowser.php:25 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Photos"
 
-#: ../../mod/contacts.php:510
-msgid "Disabled"
-msgstr "Désactivé"
+#: ../../view/theme/perihel/theme.php:35
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Vos photos"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information"
-msgstr ""
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2138
+#: ../../mod/events.php:370 ../../include/nav.php:80
+msgid "Events"
+msgstr "Événements"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch information and keywords"
-msgstr ""
+#: ../../view/theme/perihel/theme.php:36
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Vos événements"
 
-#: ../../mod/contacts.php:512
-msgid "Blacklisted keywords"
-msgstr ""
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/contacts.php:512
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr ""
+#: ../../view/theme/perihel/theme.php:37
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Vos photos personnelles"
 
-#: ../../mod/contacts.php:563
-msgid "Suggestions"
-msgstr "Suggestions"
+#: ../../view/theme/perihel/theme.php:38
+#: ../../view/theme/diabook/theme.php:129 ../../mod/community.php:32
+#: ../../include/nav.php:129
+msgid "Community"
+msgstr "Communauté"
 
-#: ../../mod/contacts.php:566
-msgid "Suggest potential friends"
-msgstr "Suggérer des amis potentiels"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "cacher"
 
-#: ../../mod/contacts.php:569 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Tous les contacts"
+#: ../../view/theme/perihel/config.php:89
+#: ../../view/theme/diabook/theme.php:621
+#: ../../view/theme/diabook/config.php:142 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "montrer"
 
-#: ../../mod/contacts.php:572
-msgid "Show all contacts"
-msgstr "Montrer tous les contacts"
+#: ../../view/theme/perihel/config.php:97
+#: ../../view/theme/diabook/config.php:150
+#: ../../view/theme/quattro/config.php:66
+#: ../../view/theme/zero-childs/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/clean/config.php:84
+#: ../../view/theme/duepuntozero/config.php:61
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:55
+#: ../../view/theme/vier-mobil/config.php:49
+msgid "Theme settings"
+msgstr "Réglages du thème graphique"
 
-#: ../../mod/contacts.php:575
-msgid "Unblocked"
-msgstr "Non-bloqués"
+#: ../../view/theme/perihel/config.php:98
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/zero-childs/cleanzero/config.php:84
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
+msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
 
-#: ../../mod/contacts.php:578
-msgid "Only show unblocked contacts"
-msgstr "Ne montrer que les contacts non-bloqués"
+#: ../../view/theme/perihel/config.php:99
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires"
 
-#: ../../mod/contacts.php:582
-msgid "Blocked"
-msgstr "Bloqués"
+#: ../../view/theme/perihel/config.php:100
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Réglez la résolution de la colonne centrale"
 
-#: ../../mod/contacts.php:585
-msgid "Only show blocked contacts"
-msgstr "Ne montrer que les contacts bloqués"
+#: ../../view/theme/diabook/theme.php:125 ../../mod/contacts.php:702
+#: ../../include/nav.php:175
+msgid "Contacts"
+msgstr "Contacts"
 
-#: ../../mod/contacts.php:589
-msgid "Ignored"
-msgstr "Ignorés"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vos contacts"
 
-#: ../../mod/contacts.php:592
-msgid "Only show ignored contacts"
-msgstr "Ne montrer que les contacts ignorés"
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+#: ../../view/theme/diabook/config.php:158
+msgid "Community Pages"
+msgstr "Pages de Communauté"
 
-#: ../../mod/contacts.php:596
-msgid "Archived"
-msgstr "Archivés"
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+#: ../../view/theme/diabook/config.php:160
+msgid "Community Profiles"
+msgstr "Profils communautaires"
 
-#: ../../mod/contacts.php:599
-msgid "Only show archived contacts"
-msgstr "Ne montrer que les contacts archivés"
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/config.php:164
+msgid "Last users"
+msgstr "Derniers utilisateurs"
 
-#: ../../mod/contacts.php:603
-msgid "Hidden"
-msgstr "Cachés"
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:166
+msgid "Last likes"
+msgstr "Dernièrement aimé"
 
-#: ../../mod/contacts.php:606
-msgid "Only show hidden contacts"
-msgstr "Ne montrer que les contacts masqués"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:246 ../../include/text.php:1966
+msgid "event"
+msgstr "évènement"
 
-#: ../../mod/contacts.php:654
-msgid "Mutual Friendship"
-msgstr "Relation réciproque"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+#: ../../include/diaspora.php:2087
+msgid "status"
+msgstr "le statut"
 
-#: ../../mod/contacts.php:658
-msgid "is a fan of yours"
-msgstr "Vous suit"
+#: ../../view/theme/diabook/theme.php:471 ../../mod/tagger.php:62
+#: ../../mod/like.php:149 ../../mod/subthread.php:87
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1968 ../../include/diaspora.php:2087
+msgid "photo"
+msgstr "photo"
 
-#: ../../mod/contacts.php:662
-msgid "you are a fan of"
-msgstr "Vous le/la suivez"
+#: ../../view/theme/diabook/theme.php:480 ../../mod/like.php:166
+#: ../../include/conversation.php:137 ../../include/diaspora.php:2103
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
 
-#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Éditer le contact"
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+#: ../../view/theme/diabook/config.php:165
+msgid "Last photos"
+msgstr "Dernières photos"
 
-#: ../../mod/contacts.php:701 ../../include/nav.php:175
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contacts"
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+msgid "Contact Photos"
+msgstr "Photos du contact"
 
-#: ../../mod/contacts.php:705
-msgid "Search your contacts"
-msgstr "Rechercher dans vos contacts"
+#: ../../view/theme/diabook/theme.php:500 ../../mod/photos.php:155
+#: ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+msgid "Profile Photos"
+msgstr "Photos du profil"
 
-#: ../../mod/contacts.php:706 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Trouvé: "
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:163
+msgid "Find Friends"
+msgstr "Trouver des amis"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Trouver"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Annuaire local"
 
-#: ../../mod/contacts.php:712 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Mises-à-jour"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Annuaire global"
 
-#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Supprimer"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Intérêts similaires"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Aucun profil"
+#: ../../view/theme/diabook/theme.php:527 ../../mod/suggest.php:68
+#: ../../include/contact_widgets.php:35
+msgid "Friend Suggestions"
+msgstr "Suggestions d'amitiés/contacts"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gérer les identités et/ou les pages"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Inviter des amis"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../mod/newmember.php:22
+#: ../../mod/admin.php:1082 ../../mod/admin.php:1303 ../../mod/settings.php:85
+#: ../../include/nav.php:170
+msgid "Settings"
+msgstr "Réglages"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Choisir une identité à gérer: "
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+#: ../../view/theme/diabook/config.php:159
+msgid "Earth Layers"
+msgstr "Géolocalisation"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publication réussie."
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Régler le niveau de zoom pour la géolocalisation"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Permission refusée"
+#: ../../view/theme/diabook/theme.php:585
+#: ../../view/theme/diabook/config.php:156
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Régler la longitude (X) pour la géolocalisation"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../view/theme/diabook/theme.php:586
+#: ../../view/theme/diabook/config.php:157
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Régler la latitude (Y) pour la géolocalisation"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Éditer la visibilité du profil"
-
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profil"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+#: ../../view/theme/diabook/config.php:161
+msgid "Help or @NewHere ?"
+msgstr "Aide ou @NewHere?"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+#: ../../view/theme/diabook/config.php:162
+msgid "Connect Services"
+msgstr "Connecter des services"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Montrer/cacher les boîtes dans la colonne de droite :"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tous les contacts (ayant un accès sécurisé)"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../mod/display.php:70 ../../mod/display.php:260
-#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
-#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
-#: ../../include/items.php:4487
-msgid "Item not found."
-msgstr "Élément introuvable."
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Niveau de zoom"
 
-#: ../../mod/display.php:200 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alignement"
 
-#: ../../mod/display.php:308 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "L'accès au profil a été restreint."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Gauche"
 
-#: ../../mod/display.php:472
-msgid "Item has been removed."
-msgstr "Cet élément a été enlevé."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centre"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bienvenue sur Friendica"
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/zero-childs/cleanzero/config.php:86
+#: ../../view/theme/clean/config.php:87
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Palette de couleurs"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist du nouvel utilisateur"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Taille de texte des publications"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Taille de police des zones de texte"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Bien démarrer"
+#: ../../view/theme/zero-childs/cleanzero/config.php:83
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica pas-à-pas"
+#: ../../view/theme/zero-childs/cleanzero/config.php:85
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Largeur du thème"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
-#: ../../mod/admin.php:1297 ../../mod/settings.php:85
-#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Réglages"
+#: ../../view/theme/clean/config.php:56
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/user.php:247
+#: ../../include/text.php:1702
+msgid "default"
+msgstr "défaut"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Éditer vos Réglages"
+#: ../../view/theme/clean/config.php:57
+msgid "Midnight"
+msgstr ""
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
+#: ../../view/theme/clean/config.php:58
+msgid "Bootstrap"
+msgstr ""
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
+#: ../../view/theme/clean/config.php:59
+msgid "Shades of Pink"
+msgstr ""
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:665
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: ../../view/theme/clean/config.php:60
+msgid "Lime and Orange"
+msgstr ""
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
+#: ../../view/theme/clean/config.php:61
+msgid "GeoCities Retro"
+msgstr ""
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Éditer votre Profil"
+#: ../../view/theme/clean/config.php:85
+msgid "Background Image"
+msgstr ""
 
-#: ../../mod/newmember.php:38
+#: ../../view/theme/clean/config.php:85
 msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
+"The URL to a picture (e.g. from your photo album) that should be used as "
+"background image."
+msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Mots-clés du profil"
+#: ../../view/theme/clean/config.php:86
+msgid "Background Color"
+msgstr ""
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
+#: ../../view/theme/clean/config.php:86
+msgid "HEX value for the background color. Don't include the #"
+msgstr ""
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Connexions"
+#: ../../view/theme/clean/config.php:88
+msgid "font size"
+msgstr ""
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../view/theme/clean/config.php:88
+msgid "base font size for your interface"
+msgstr ""
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr ""
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importer courriels"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr ""
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Consulter vos Contacts"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr ""
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Consulter l'Annuaire de votre Site"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr ""
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
+#: ../../view/theme/vier/config.php:56
+#: ../../view/theme/vier-mobil/config.php:50
+msgid "Set style"
+msgstr "Définir le style"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Trouver de nouvelles personnes"
+#: ../../boot.php:744
+msgid "Delete this item?"
+msgstr "Effacer cet élément?"
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
+#: ../../boot.php:747
+msgid "show fewer"
+msgstr "montrer moins"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Groupes"
+#: ../../boot.php:1117
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Grouper vos contacts"
+#: ../../boot.php:1235
+msgid "Create a New Account"
+msgstr "Créer un nouveau compte"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
+#: ../../boot.php:1236 ../../mod/register.php:269 ../../include/nav.php:109
+msgid "Register"
+msgstr "S'inscrire"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Pourquoi mes éléments ne sont pas publics?"
+#: ../../boot.php:1260 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Se déconnecter"
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
+#: ../../boot.php:1261 ../../mod/bookmarklet.php:12 ../../include/nav.php:92
+msgid "Login"
+msgstr "Connexion"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtenir de l'aide"
+#: ../../boot.php:1263
+msgid "Nickname or Email address: "
+msgstr "Pseudo ou courriel: "
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Aller à la section Aide"
+#: ../../boot.php:1264
+msgid "Password: "
+msgstr "Mot de passe: "
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
+#: ../../boot.php:1265
+msgid "Remember me"
+msgstr "Se souvenir de moi"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
+#: ../../boot.php:1268
+msgid "Or login using OpenID: "
+msgstr "Ou connectez-vous via OpenID: "
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
+#: ../../boot.php:1274
+msgid "Forgot your password?"
+msgstr "Mot de passe oublié?"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Échec de connexion."
+#: ../../boot.php:1275 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Image envoyée, mais impossible de la retailler."
+#: ../../boot.php:1277
+msgid "Website Terms of Service"
+msgstr "Conditions d'utilisation du site internet"
 
-#: ../../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
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: ../../boot.php:1278
+msgid "terms of service"
+msgstr "conditions d'utilisation"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Réduction de la taille de l'image [%s] échouée."
+#: ../../boot.php:1280
+msgid "Website Privacy Policy"
+msgstr "Politique de confidentialité du site internet"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
+#: ../../boot.php:1281
+msgid "privacy policy"
+msgstr "politique de confidentialité"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: ../../boot.php:1414
+msgid "Requested account is not available."
+msgstr "Le compte demandé n'est pas disponible."
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "L'image dépasse la taille limite de %d"
+#: ../../boot.php:1453 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Le profil demandé n'est pas disponible."
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Impossible de traiter l'image."
+#: ../../boot.php:1496 ../../boot.php:1630
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Editer le profil"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Fichier à téléverser:"
+#: ../../boot.php:1563 ../../mod/suggest.php:90 ../../mod/match.php:58
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
+msgstr "Relier"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Choisir un profil:"
+#: ../../boot.php:1595
+msgid "Message"
+msgstr "Message"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Téléverser"
+#: ../../boot.php:1601 ../../include/nav.php:173
+msgid "Profiles"
+msgstr "Profils"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "ou"
+#: ../../boot.php:1601
+msgid "Manage/edit profiles"
+msgstr "Gérer/éditer les profils"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "ignorer cette étape"
+#: ../../boot.php:1606 ../../boot.php:1632 ../../mod/profiles.php:789
+msgid "Change profile photo"
+msgstr "Changer de photo de profil"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "choisissez une photo depuis vos albums"
+#: ../../boot.php:1607 ../../mod/profiles.php:790
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "(Re)cadrer l'image"
+#: ../../boot.php:1617 ../../mod/profiles.php:801
+msgid "Profile Image"
+msgstr "Image du profil"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
+#: ../../boot.php:1620 ../../mod/profiles.php:803
+msgid "visible to everybody"
+msgstr "visible par tous"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Édition terminée"
+#: ../../boot.php:1621 ../../mod/profiles.php:804
+msgid "Edit visibility"
+msgstr "Changer la visibilité"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: ../../boot.php:1643 ../../mod/directory.php:136 ../../mod/events.php:471
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:170
+msgid "Location:"
+msgstr "Localisation:"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Le téléversement de l'image a échoué."
+#: ../../boot.php:1645 ../../mod/directory.php:138
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Genre:"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1965 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "photo"
+#: ../../boot.php:1648 ../../mod/directory.php:140
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Statut:"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "le statut"
+#: ../../boot.php:1650 ../../mod/directory.php:142
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Page personnelle:"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s suit les %3$s de %2$s"
+#: ../../boot.php:1652 ../../mod/directory.php:144
+#: ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "À propos:"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette supprimée"
+#: ../../boot.php:1701
+msgid "Network:"
+msgstr "Réseau"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+#: ../../boot.php:1731 ../../boot.php:1817
+msgid "g A l F d"
+msgstr "g A | F d"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Sélectionner une étiquette à supprimer: "
+#: ../../boot.php:1732 ../../boot.php:1818
+msgid "F d"
+msgstr "F d"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Utiliser comme photo de profil"
+#: ../../boot.php:1777 ../../boot.php:1858
+msgid "[today]"
+msgstr "[aujourd'hui]"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Sauver dans le Dossier:"
+#: ../../boot.php:1789
+msgid "Birthday Reminders"
+msgstr "Rappels d'anniversaires"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../boot.php:1790
+msgid "Birthdays this week:"
+msgstr "Anniversaires cette semaine:"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:955
-msgid "Save"
-msgstr "Sauver"
+#: ../../boot.php:1851
+msgid "[No description]"
+msgstr "[Sans description]"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact ajouté"
+#: ../../boot.php:1869
+msgid "Event Reminders"
+msgstr "Rappels d'événements"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser la publication originale."
+#: ../../boot.php:1870
+msgid "Events this week:"
+msgstr "Evénements cette semaine:"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Publication vide rejetée."
+#: ../../boot.php:2107 ../../include/nav.php:76
+msgid "Status"
+msgstr "Statut"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: ../../boot.php:2110
+msgid "Status Messages and Posts"
+msgstr "Messages d'état et publications"
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvée."
+#: ../../boot.php:2117
+msgid "Profile Details"
+msgstr "Détails du profil"
 
-#: ../../mod/item.php:964
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
+#: ../../boot.php:2124 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Albums photo"
 
-#: ../../mod/item.php:966
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Vidéos"
+
+#: ../../boot.php:2141
+msgid "Events and Calendar"
+msgstr "Événements et agenda"
+
+#: ../../boot.php:2145 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Notes personnelles"
+
+#: ../../boot.php:2148
+msgid "Only You Can See This"
+msgstr "Vous seul pouvez voir ça"
+
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Vous pouvez leur rendre visite sur %s"
+msgid "%1$s is currently %2$s"
+msgstr "%1$s est d'humeur %2$s"
 
-#: ../../mod/item.php:967
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humeur"
+
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Spécifiez votre humeur du moment, et informez vos amis"
+
+#: ../../mod/display.php:82 ../../mod/display.php:284
+#: ../../mod/display.php:503 ../../mod/decrypt.php:15 ../../mod/admin.php:169
+#: ../../mod/admin.php:1030 ../../mod/admin.php:1243 ../../mod/notice.php:15
+#: ../../mod/viewsrc.php:15 ../../include/items.php:4500
+msgid "Item not found."
+msgstr "Élément introuvable."
+
+#: ../../mod/display.php:212 ../../mod/_search.php:89
+#: ../../mod/directory.php:33 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:762 ../../mod/community.php:18
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/videos.php:115
+msgid "Public access denied."
+msgstr "Accès public refusé."
+
+#: ../../mod/display.php:332 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "L'accès au profil a été restreint."
+
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "Cet élément a été enlevé."
+
+#: ../../mod/decrypt.php:9 ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accès refusé."
+
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr ""
+
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
+msgstr "Motorisé par Friendica version"
+
+#: ../../mod/friendica.php:63
+msgid "running at web location"
+msgstr "hébergé sur"
+
+#: ../../mod/friendica.php:65
 msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica."
 
-#: ../../mod/item.php:971
+#: ../../mod/friendica.php:67
+msgid "Bug reports and issues: please visit"
+msgstr "Pour les rapports de bugs: rendez vous sur"
+
+#: ../../mod/friendica.php:68
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
+
+#: ../../mod/friendica.php:82
+msgid "Installed plugins/addons/apps:"
+msgstr "Extensions/greffons/applications installées:"
+
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
+msgstr "Extensions/greffons/applications non installées:"
+
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "%s posted an update."
-msgstr "%s a publié une mise à jour."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s accueille %2$s"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groupe créé."
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
+#: ../../mod/register.php:96
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Groupe introuvable."
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traitée."
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Groupe renommé."
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "Votre inscription attend une validation du propriétaire du site."
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Sauvegarder le groupe"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nom du groupe: "
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Groupe enlevé."
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Votre OpenID (facultatif): "
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Inclure votre profil dans l'annuaire des membres?"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Éditeur de groupe"
+#: ../../mod/register.php:233 ../../mod/api.php:105 ../../mod/suggest.php:29
+#: ../../mod/dfrn_request.php:830 ../../mod/contacts.php:337
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/profiles.php:646
+#: ../../mod/profiles.php:649 ../../mod/message.php:209
+#: ../../include/items.php:4541
+msgid "Yes"
+msgstr "Oui"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membres"
+#: ../../mod/register.php:234 ../../mod/api.php:106
+#: ../../mod/dfrn_request.php:830 ../../mod/settings.php:1010
+#: ../../mod/settings.php:1016 ../../mod/settings.php:1024
+#: ../../mod/settings.php:1028 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1039 ../../mod/settings.php:1045
+#: ../../mod/settings.php:1051 ../../mod/settings.php:1081
+#: ../../mod/settings.php:1082 ../../mod/settings.php:1083
+#: ../../mod/settings.php:1084 ../../mod/settings.php:1085
+#: ../../mod/profiles.php:646 ../../mod/profiles.php:650
+msgid "No"
+msgstr "Non"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Vous devez être connecté pour utiliser les greffons."
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Applications"
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "Votre ID d'invitation: "
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Pas d'application installée."
+#: ../../mod/register.php:255 ../../mod/admin.php:603
+msgid "Registration"
+msgstr "Inscription"
+
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Votre nom complet (p.ex. Michel Dupont): "
+
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Votre adresse courriel: "
+
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@$sitename&lt;/strong&gt;'."
+
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Choisir un pseudo: "
+
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importer"
+
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importer votre profile dans cette instance de friendica"
 
 #: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
-#: ../../mod/profiles.php:596
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
+#: ../../mod/profiles.php:615
 msgid "Profile not found."
 msgstr "Profil introuvable."
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
+#: ../../mod/dfrn_confirm.php:120 ../../mod/crepair.php:133
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
 msgid "Contact not found."
 msgstr "Contact introuvable."
 
@@ -1085,7 +1192,7 @@ msgid "Unable to update your contact profile details on our system"
 msgstr "Impossible de mettre les détails de votre profil à jour sur notre système"
 
 #: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:3979
+#: ../../include/items.php:3992
 msgid "[Name Withheld]"
 msgstr "[Nom non-publié]"
 
@@ -1094,65 +1201,33 @@ msgstr "[Nom non-publié]"
 msgid "%1$s has joined %2$s"
 msgstr "%1$s a rejoint %2$s"
 
-#: ../../mod/profile.php:21 ../../boot.php:1453
-msgid "Requested profile is not available."
-msgstr "Le profil demandé n'est pas disponible."
-
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Conseils aux nouveaux venus"
-
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Pas de vidéo sélectionné"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Accès restreint à cet élément."
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
 
-#: ../../mod/videos.php:301 ../../include/text.php:1402
-msgid "View Video"
-msgstr "Regarder la vidéo"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Voir l'album"
+#: ../../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 "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vidéos récente"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Impossible de trouver un compte valide."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Téléversé une nouvelle vidéo"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
-
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/contact envoyée."
-
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer des amis/contacts"
-
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer un ami/contact pour %s"
-
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Impossible de trouver un compte valide."
-
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
-
-#: ../../mod/lostpass.php:42
+#: ../../mod/lostpass.php:42
 #, php-format
 msgid ""
 "\n"
@@ -1166,7 +1241,7 @@ msgid ""
 "\n"
 "\t\tYour password will not be changed unless we can verify that you\n"
 "\t\tissued this request."
-msgstr ""
+msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."
 
 #: ../../mod/lostpass.php:53
 #, php-format
@@ -1183,7 +1258,7 @@ msgid ""
 "\n"
 "\t\tSite Location:\t%2$s\n"
 "\t\tLogin Name:\t%3$s"
-msgstr ""
+msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s"
 
 #: ../../mod/lostpass.php:72
 #, php-format
@@ -1196,10 +1271,6 @@ msgid ""
 "Password reset failed."
 msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1275
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
-
 #: ../../mod/lostpass.php:110
 msgid "Your password has been reset as requested."
 msgstr "Votre mot de passe a bien été réinitialisé."
@@ -1231,7 +1302,7 @@ msgid ""
 "\t\t\t\tinformation for your records (or change your password immediately to\n"
 "\t\t\t\tsomething that you will remember).\n"
 "\t\t\t"
-msgstr ""
+msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"
 
 #: ../../mod/lostpass.php:131
 #, php-format
@@ -1245,7 +1316,7 @@ msgid ""
 "\n"
 "\t\t\t\tYou may change that password from your account settings page after logging in.\n"
 "\t\t\t"
-msgstr ""
+msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"
 
 #: ../../mod/lostpass.php:147
 #, php-format
@@ -1270,574 +1341,709 @@ msgstr "Pseudo ou Courriel: "
 msgid "Reset"
 msgstr "Réinitialiser"
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
-
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s n'aime pas %3$s de %2$s"
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} souhaite être votre ami(e)"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Pas de destinataire sélectionné."
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} vous a envoyé un message"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Impossible de vérifier votre localisation."
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} a demandé à s'inscrire"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Impossible d'envoyer le message."
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} a commenté la publication de %s"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Récupération des messages infructueuse."
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} a aimé la publication de %s"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Message envoyé."
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} n'a pas aimé la publication de %s"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Pas de destinataire."
 
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} est désormais ami(e) avec %s"
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a link URL:"
+msgstr "Entrez un lien web:"
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} a publié"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Envoyer un message privé"
 
-#: ../../mod/ping.php:281
+#: ../../mod/wallmessage.php:143
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} a étiqueté la publication de %s avec #%s"
-
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} vous a mentionné dans une publication"
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Aucun contact."
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "À:"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
-msgid "View Contacts"
-msgstr "Voir les contacts"
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Sujet:"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identifiant de demande invalide."
+#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
+#: ../../mod/message.php:558 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Votre message:"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Rejeter"
+#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../include/conversation.php:1091
+msgid "Upload photo"
+msgstr "Joindre photo"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Système"
+#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../include/conversation.php:1095
+msgid "Insert web link"
+msgstr "Insérer lien web"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:143
-msgid "Network"
-msgstr "Réseau"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bienvenue sur Friendica"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Personnel"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checklist du nouvel utilisateur"
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Profil"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:152
-msgid "Introductions"
-msgstr "Introductions"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Bien démarrer"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Voir les demandes ignorées"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica pas-à-pas"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Cacher les demandes ignorées"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Type de notification: "
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Éditer vos Réglages"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Suggestion d'amitié/contact"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "suggéré(e) par %s"
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Poster une nouvelle avtivité d'ami"
+#: ../../mod/newmember.php:36 ../../mod/profiles.php:684
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "si possible"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:977
-msgid "Approve"
-msgstr "Approuver"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Éditer votre Profil"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Prétend que vous le connaissez: "
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "oui"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Mots-clés du profil"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "non"
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Approuver en tant que: "
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Connexions"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Ami"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Initiateur du partage"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Admirateur"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Demande de connexion/relation"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importer courriels"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nouvel abonné"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Aucune demande d'introduction."
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Consulter vos Contacts"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:153
-msgid "Notifications"
-msgstr "Notifications"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s a aimé la publication de %s"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Consulter l'Annuaire de votre Site"
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s n'a pas aimé la publication de %s"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s est désormais ami(e) avec %s"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trouver de nouvelles personnes"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a créé une nouvelle publication"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s a commenté la publication de %s"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Groupes"
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Aucune notification du réseau."
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grouper vos contacts"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Notifications du réseau"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Pas plus de notifications système."
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Pourquoi mes éléments ne sont pas publics?"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Notifications du système"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Aucun notification personnelle."
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtenir de l'aide"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Notifications personnelles"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Aller à la section Aide"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Aucune notification de la page d'accueil."
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Notifications de page d'accueil"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texte source (bbcode) :"
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:844 ../../mod/contacts.php:340
+#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/message.php:212 ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../include/conversation.php:1129
+#: ../../include/items.php:4544
+msgid "Cancel"
+msgstr "Annuler"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texte source (Diaspora) à convertir en BBcode :"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Source input: "
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorer/cacher"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML brut)"
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Résultats pour:"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/network.php:185 ../../mod/_search.php:21 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Retirer le terme"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/network.php:194 ../../mod/_search.php:30 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Recherches"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
+msgstr "ajouter"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Tri par commentaires"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Trier par date de commentaire"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Tri des publications"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Texte source (format Diaspora) :"
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Trier par date de publication"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb :"
+#: ../../mod/network.php:371 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Personnel"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Rien de neuf ici"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous concernent"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "Effacer les notifications"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nouveau"
 
-#: ../../mod/message.php:9 ../../include/nav.php:162
-msgid "New Message"
-msgstr "Nouveau message"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Flux d'activités - par date"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Pas de destinataire sélectionné."
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Liens partagés"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossible de localiser les informations du contact."
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Liens intéressants"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Impossible d'envoyer le message."
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Mis en avant"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Récupération des messages infructueuse."
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Publications favorites"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Message envoyé."
-
-#: ../../mod/message.php:182 ../../include/nav.php:159
-msgid "Messages"
-msgstr "Messages"
-
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Voulez-vous vraiment supprimer ce message ?"
-
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
+msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Entrez un lien web:"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Groupe inexistant"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Envoyer un message privé"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Groupe vide"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "À:"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Groupe: "
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Sujet:"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Contact: "
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Votre message:"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Joindre photo"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Contact invalide."
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Insérer lien web"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Serveur de communications Friendica - Configuration"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Patientez"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base."
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Aucun message."
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Impossible de créer une table."
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Émetteur inconnu - %s"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "La base de données de votre site Friendica a bien été installée."
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Vous et %s"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s et vous"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Référez-vous au fichier \"INSTALL.txt\"."
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Effacer conversation"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Vérifications système"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../mod/install.php:207 ../../mod/events.php:373
+msgid "Next"
+msgstr "Suivant"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Message indisponible."
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Effacer message"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
 
-#: ../../mod/message.php:548
+#: ../../mod/install.php:229
 msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Répondre"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[contenu incorporé - rechargez la page pour le voir]"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Serveur de base de données"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Réglages du contact appliqués."
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nom d'utilisateur de la base"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Impossible d'appliquer les réglages."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Mot de passe de la base"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Réglages de réparation des contacts"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nom de la base"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Adresse électronique de l'administrateur du site"
 
-#: ../../mod/crepair.php:142
+#: ../../mod/install.php:238 ../../mod/install.php:277
 msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "une photo"
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Retour à l'éditeur de contact"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr ""
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr ""
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr ""
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
-#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
-#: ../../mod/settings.php:642
-msgid "Name"
-msgstr "Nom"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Chemin vers l'exécutable de PHP"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Pseudo du compte"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Version \"ligne de commande\" de PHP"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL du compte"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "Echec du téléversement de l'image."
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Version de PHP:"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "Accès public refusé."
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "Aucune photo sélectionnée"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Téléverser des photos"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Ceci est requis pour que la livraison des messages fonctionne."
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nouvelle photo depuis cette URL"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr ""
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr ""
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/crepair.php:176
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Générer les clés de chiffrement"
+
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Module libCurl de PHP"
+
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Module GD (graphiques) de PHP"
+
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Module OpenSSL de PHP"
+
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Module Mysqli de PHP"
+
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Module mb_string de PHP"
+
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Module mod_rewrite Apache"
+
+#: ../../mod/install.php:397
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accès refusé."
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Recherche de personnes"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Aucune correspondance"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Photos"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Fichiers"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contacts qui n’appartiennent à aucun groupe"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
+
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
+
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
+
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Fichier .htconfig.php accessible en écriture"
+
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
+
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
+
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
+
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
+
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 est autorisé à l écriture"
+
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
+
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne."
+
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
+
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Ensuite</h1>"
+
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."
 
 #: ../../mod/admin.php:57
 msgid "Theme settings updated."
 msgstr "Réglages du thème sauvés."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:596
+#: ../../mod/admin.php:104 ../../mod/admin.php:601
 msgid "Site"
 msgstr "Site"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
+#: ../../mod/admin.php:105 ../../mod/admin.php:976 ../../mod/admin.php:991
 msgid "Users"
 msgstr "Utilisateurs"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
+#: ../../mod/admin.php:106 ../../mod/admin.php:1080 ../../mod/admin.php:1133
 #: ../../mod/settings.php:57
 msgid "Plugins"
 msgstr "Extensions"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
+#: ../../mod/admin.php:107 ../../mod/admin.php:1301 ../../mod/admin.php:1335
 msgid "Themes"
 msgstr "Thèmes"
 
@@ -1845,412 +2051,428 @@ msgstr "Thèmes"
 msgid "DB updates"
 msgstr "Mise-à-jour de la base"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1422
 msgid "Logs"
 msgstr "Journaux"
 
-#: ../../mod/admin.php:128 ../../include/nav.php:182
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr ""
+
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr ""
+
+#: ../../mod/admin.php:130 ../../include/nav.php:182
 msgid "Admin"
 msgstr "Admin"
 
-#: ../../mod/admin.php:129
+#: ../../mod/admin.php:131
 msgid "Plugin Features"
 msgstr "Propriétés des extensions"
 
-#: ../../mod/admin.php:131
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr ""
+
+#: ../../mod/admin.php:134
 msgid "User registrations waiting for confirmation"
 msgstr "Inscriptions en attente de confirmation"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:924
+#: ../../mod/admin.php:193 ../../mod/admin.php:930
 msgid "Normal Account"
 msgstr "Compte normal"
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:925
+#: ../../mod/admin.php:194 ../../mod/admin.php:931
 msgid "Soapbox Account"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:926
+#: ../../mod/admin.php:195 ../../mod/admin.php:932
 msgid "Community/Celebrity Account"
 msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:927
+#: ../../mod/admin.php:196 ../../mod/admin.php:933
 msgid "Automatic Friend Account"
 msgstr "Compte auto-amical"
 
-#: ../../mod/admin.php:194
+#: ../../mod/admin.php:197
 msgid "Blog Account"
 msgstr "Compte de blog"
 
-#: ../../mod/admin.php:195
+#: ../../mod/admin.php:198
 msgid "Private Forum"
 msgstr "Forum privé"
 
-#: ../../mod/admin.php:214
+#: ../../mod/admin.php:217
 msgid "Message queues"
 msgstr "Files d'attente des messages"
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
-#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
-#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
+#: ../../mod/admin.php:222 ../../mod/admin.php:600 ../../mod/admin.php:975
+#: ../../mod/admin.php:1079 ../../mod/admin.php:1132 ../../mod/admin.php:1300
+#: ../../mod/admin.php:1334 ../../mod/admin.php:1421
 msgid "Administration"
 msgstr "Administration"
 
-#: ../../mod/admin.php:220
+#: ../../mod/admin.php:223
 msgid "Summary"
 msgstr "Résumé"
 
-#: ../../mod/admin.php:222
+#: ../../mod/admin.php:225
 msgid "Registered users"
 msgstr "Utilisateurs inscrits"
 
-#: ../../mod/admin.php:224
+#: ../../mod/admin.php:227
 msgid "Pending registrations"
 msgstr "Inscriptions en attente"
 
-#: ../../mod/admin.php:225
+#: ../../mod/admin.php:228
 msgid "Version"
 msgstr "Versio"
 
-#: ../../mod/admin.php:229
+#: ../../mod/admin.php:232
 msgid "Active plugins"
 msgstr "Extensions activés"
 
-#: ../../mod/admin.php:252
+#: ../../mod/admin.php:255
 msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>"
 
-#: ../../mod/admin.php:500
+#: ../../mod/admin.php:505
 msgid "Site settings updated."
 msgstr "Réglages du site mis-à-jour."
 
-#: ../../mod/admin.php:529 ../../mod/settings.php:828
+#: ../../mod/admin.php:534 ../../mod/settings.php:828
 msgid "No special theme for mobile devices"
 msgstr "Pas de thème particulier pour les terminaux mobiles"
 
-#: ../../mod/admin.php:547
+#: ../../mod/admin.php:551 ../../mod/contacts.php:419
+msgid "Never"
+msgstr "Jamais"
+
+#: ../../mod/admin.php:552
 msgid "At post arrival"
 msgstr "A l'arrivé d'une publication"
 
-#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
+#: ../../mod/admin.php:553 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "Fréquemment"
 
-#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
+#: ../../mod/admin.php:554 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "Toutes les heures"
 
-#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
+#: ../../mod/admin.php:555 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "Deux fois par jour"
 
-#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
+#: ../../mod/admin.php:556 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Chaque jour"
 
-#: ../../mod/admin.php:556
+#: ../../mod/admin.php:561
 msgid "Multi user instance"
 msgstr "Instance multi-utilisateurs"
 
-#: ../../mod/admin.php:579
+#: ../../mod/admin.php:584
 msgid "Closed"
 msgstr "Fermé"
 
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:585
 msgid "Requires approval"
 msgstr "Demande une apptrobation"
 
-#: ../../mod/admin.php:581
+#: ../../mod/admin.php:586
 msgid "Open"
 msgstr "Ouvert"
 
-#: ../../mod/admin.php:585
+#: ../../mod/admin.php:590
 msgid "No SSL policy, links will track page SSL state"
 msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
 
-#: ../../mod/admin.php:586
+#: ../../mod/admin.php:591
 msgid "Force all links to use SSL"
 msgstr "Forcer tous les liens à utiliser SSL"
 
-#: ../../mod/admin.php:587
+#: ../../mod/admin.php:592
 msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
 
-#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
-#: ../../mod/admin.php:1417 ../../mod/settings.php:614
+#: ../../mod/admin.php:602 ../../mod/admin.php:1134 ../../mod/admin.php:1336
+#: ../../mod/admin.php:1423 ../../mod/settings.php:614
 #: ../../mod/settings.php:724 ../../mod/settings.php:798
 #: ../../mod/settings.php:880 ../../mod/settings.php:1113
 msgid "Save Settings"
 msgstr "Sauvegarder les paramétres"
 
-#: ../../mod/admin.php:598 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Inscription"
-
-#: ../../mod/admin.php:599
+#: ../../mod/admin.php:604
 msgid "File upload"
 msgstr "Téléversement de fichier"
 
-#: ../../mod/admin.php:600
+#: ../../mod/admin.php:605
 msgid "Policies"
 msgstr "Politiques"
 
-#: ../../mod/admin.php:601
+#: ../../mod/admin.php:606
 msgid "Advanced"
 msgstr "Avancé"
 
-#: ../../mod/admin.php:602
+#: ../../mod/admin.php:607
 msgid "Performance"
 msgstr "Performance"
 
-#: ../../mod/admin.php:603
+#: ../../mod/admin.php:608
 msgid ""
 "Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
 
-#: ../../mod/admin.php:606
+#: ../../mod/admin.php:611
 msgid "Site name"
 msgstr "Nom du site"
 
-#: ../../mod/admin.php:607
+#: ../../mod/admin.php:612
 msgid "Host name"
+msgstr "Nom de la machine hôte"
+
+#: ../../mod/admin.php:613
+msgid "Sender Email"
 msgstr ""
 
-#: ../../mod/admin.php:608
+#: ../../mod/admin.php:614
 msgid "Banner/Logo"
 msgstr "Bannière/Logo"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:615
 msgid "Additional Info"
 msgstr "Informations supplémentaires"
 
-#: ../../mod/admin.php:609
+#: ../../mod/admin.php:615
 msgid ""
 "For public servers: you can add additional information here that will be "
 "listed at dir.friendica.com/siteinfo."
 msgstr "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo."
 
-#: ../../mod/admin.php:610
+#: ../../mod/admin.php:616
 msgid "System language"
 msgstr "Langue du système"
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:617
 msgid "System theme"
 msgstr "Thème du système"
 
-#: ../../mod/admin.php:611
+#: ../../mod/admin.php:617
 msgid ""
 "Default system theme - may be over-ridden by user profiles - <a href='#' "
 "id='cnftheme'>change theme settings</a>"
 msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:618
 msgid "Mobile system theme"
 msgstr "Thème mobile"
 
-#: ../../mod/admin.php:612
+#: ../../mod/admin.php:618
 msgid "Theme for mobile devices"
 msgstr "Thème pour les terminaux mobiles"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:619
 msgid "SSL link policy"
 msgstr "Politique SSL pour les liens"
 
-#: ../../mod/admin.php:613
+#: ../../mod/admin.php:619
 msgid "Determines whether generated links should be forced to use SSL"
 msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:620
 msgid "Force SSL"
-msgstr ""
+msgstr "SSL obligatoire"
 
-#: ../../mod/admin.php:614
+#: ../../mod/admin.php:620
 msgid ""
 "Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
 " to endless loops."
-msgstr ""
+msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies."
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:621
 msgid "Old style 'Share'"
 msgstr "Anciens style 'Partage'"
 
-#: ../../mod/admin.php:615
+#: ../../mod/admin.php:621
 msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles."
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:622
 msgid "Hide help entry from navigation menu"
 msgstr "Cacher l'aide du menu de navigation"
 
-#: ../../mod/admin.php:616
+#: ../../mod/admin.php:622
 msgid ""
 "Hides the menu entry for the Help pages from the navigation menu. You can "
 "still access it calling /help directly."
 msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:623
 msgid "Single user instance"
 msgstr "Instance mono-utilisateur"
 
-#: ../../mod/admin.php:617
+#: ../../mod/admin.php:623
 msgid "Make this instance multi-user or single-user for the named user"
 msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:624
 msgid "Maximum image size"
 msgstr "Taille maximale des images"
 
-#: ../../mod/admin.php:618
+#: ../../mod/admin.php:624
 msgid ""
 "Maximum size in bytes of uploaded images. Default is 0, which means no "
 "limits."
 msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:625
 msgid "Maximum image length"
 msgstr "Longueur maximale des images"
 
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:625
 msgid ""
 "Maximum length in pixels of the longest side of uploaded images. Default is "
 "-1, which means no limits."
 msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:626
 msgid "JPEG image quality"
 msgstr "Qualité JPEG des images"
 
-#: ../../mod/admin.php:620
+#: ../../mod/admin.php:626
 msgid ""
 "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
 "100, which is full quality."
 msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
 
-#: ../../mod/admin.php:622
+#: ../../mod/admin.php:628
 msgid "Register policy"
 msgstr "Politique d'inscription"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:629
 msgid "Maximum Daily Registrations"
 msgstr "Inscriptions maximum par jour"
 
-#: ../../mod/admin.php:623
+#: ../../mod/admin.php:629
 msgid ""
 "If registration is permitted above, this sets the maximum number of new user"
 " registrations to accept per day.  If register is set to closed, this "
 "setting has no effect."
 msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:630
 msgid "Register text"
 msgstr "Texte d'inscription"
 
-#: ../../mod/admin.php:624
+#: ../../mod/admin.php:630
 msgid "Will be displayed prominently on the registration page."
 msgstr "Sera affiché de manière bien visible sur la page d'accueil."
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:631
 msgid "Accounts abandoned after x days"
 msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../mod/admin.php:625
+#: ../../mod/admin.php:631
 msgid ""
 "Will not waste system resources polling external sites for abandonded "
 "accounts. Enter 0 for no time limit."
 msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:632
 msgid "Allowed friend domains"
 msgstr "Domaines autorisés"
 
-#: ../../mod/admin.php:626
+#: ../../mod/admin.php:632
 msgid ""
 "Comma separated list of domains which are allowed to establish friendships "
 "with this site. Wildcards are accepted. Empty to allow any domains"
 msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:633
 msgid "Allowed email domains"
 msgstr "Domaines courriel autorisés"
 
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:633
 msgid ""
 "Comma separated list of domains which are allowed in email addresses for "
 "registrations to this site. Wildcards are accepted. Empty to allow any "
 "domains"
 msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:634
 msgid "Block public"
 msgstr "Interdire la publication globale"
 
-#: ../../mod/admin.php:628
+#: ../../mod/admin.php:634
 msgid ""
 "Check to block public access to all otherwise public personal pages on this "
 "site unless you are currently logged in."
 msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:635
 msgid "Force publish"
 msgstr "Forcer la publication globale"
 
-#: ../../mod/admin.php:629
+#: ../../mod/admin.php:635
 msgid ""
 "Check to force all profiles on this site to be listed in the site directory."
 msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:636
 msgid "Global directory update URL"
 msgstr "URL de mise-à-jour de l'annuaire global"
 
-#: ../../mod/admin.php:630
+#: ../../mod/admin.php:636
 msgid ""
 "URL to update the global directory. If this is not set, the global directory"
 " is completely unavailable to the application."
 msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:637
 msgid "Allow threaded items"
 msgstr "autoriser le suivi des éléments par fil conducteur"
 
-#: ../../mod/admin.php:631
+#: ../../mod/admin.php:637
 msgid "Allow infinite level threading for items on this site."
 msgstr "Permettre une imbrication infinie des commentaires."
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:638
 msgid "Private posts by default for new users"
 msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
 
-#: ../../mod/admin.php:632
+#: ../../mod/admin.php:638
 msgid ""
 "Set default post permissions for all new members to the default privacy "
 "group rather than public."
 msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:639
 msgid "Don't include post content in email notifications"
 msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
 
-#: ../../mod/admin.php:633
+#: ../../mod/admin.php:639
 msgid ""
 "Don't include the content of a post/comment/private message/etc. in the "
 "email notifications that are sent out from this site, as a privacy measure."
 msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:640
 msgid "Disallow public access to addons listed in the apps menu."
 msgstr "Interdire l’accès public pour les greffons listées dans le menu apps."
 
-#: ../../mod/admin.php:634
+#: ../../mod/admin.php:640
 msgid ""
 "Checking this box will restrict addons listed in the apps menu to members "
 "only."
 msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres."
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:641
 msgid "Don't embed private images in posts"
 msgstr "Ne pas miniaturiser les images privées dans les publications"
 
-#: ../../mod/admin.php:635
+#: ../../mod/admin.php:641
 msgid ""
 "Don't replace locally-hosted private photos in posts with an embedded copy "
 "of the image. This means that contacts who receive posts containing private "
@@ -2258,293 +2480,293 @@ msgid ""
 "while."
 msgstr "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps."
 
-#: ../../mod/admin.php:636
+#: ../../mod/admin.php:642
 msgid "Allow Users to set remote_self"
 msgstr "Autoriser les utilisateurs à définir remote_self"
 
-#: ../../mod/admin.php:636
+#: ../../mod/admin.php:642
 msgid ""
 "With checking this, every user is allowed to mark every contact as a "
 "remote_self in the repair contact dialog. Setting this flag on a contact "
 "causes mirroring every posting of that contact in the users stream."
 msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs."
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:643
 msgid "Block multiple registrations"
 msgstr "Interdire les inscriptions multiples"
 
-#: ../../mod/admin.php:637
+#: ../../mod/admin.php:643
 msgid "Disallow users to register additional accounts for use as pages."
 msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:644
 msgid "OpenID support"
 msgstr "Support OpenID"
 
-#: ../../mod/admin.php:638
+#: ../../mod/admin.php:644
 msgid "OpenID support for registration and logins."
 msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:645
 msgid "Fullname check"
 msgstr "Vérification du \"Prénom Nom\""
 
-#: ../../mod/admin.php:639
+#: ../../mod/admin.php:645
 msgid ""
 "Force users to register with a space between firstname and lastname in Full "
 "name, as an antispam measure"
 msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:646
 msgid "UTF-8 Regular expressions"
 msgstr "Regex UTF-8"
 
-#: ../../mod/admin.php:640
+#: ../../mod/admin.php:646
 msgid "Use PHP UTF8 regular expressions"
 msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:647
 msgid "Show Community Page"
 msgstr "Montrer la \"Place publique\""
 
-#: ../../mod/admin.php:641
+#: ../../mod/admin.php:647
 msgid ""
 "Display a Community page showing all recent public postings on this site."
 msgstr "Afficher une page Communauté avec toutes les publications publiques récentes du site."
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:648
 msgid "Enable OStatus support"
 msgstr "Activer le support d'OStatus"
 
-#: ../../mod/admin.php:642
+#: ../../mod/admin.php:648
 msgid ""
 "Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
 "communications in OStatus are public, so privacy warnings will be "
 "occasionally displayed."
 msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:649
 msgid "OStatus conversation completion interval"
 msgstr "Achèvement de l'intervalle de conversation OStatus "
 
-#: ../../mod/admin.php:643
+#: ../../mod/admin.php:649
 msgid ""
 "How often shall the poller check for new entries in OStatus conversations? "
 "This can be a very ressource task."
 msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:650
 msgid "Enable Diaspora support"
 msgstr "Activer le support de Diaspora"
 
-#: ../../mod/admin.php:644
+#: ../../mod/admin.php:650
 msgid "Provide built-in Diaspora network compatibility."
 msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:651
 msgid "Only allow Friendica contacts"
 msgstr "N'autoriser que les contacts Friendica"
 
-#: ../../mod/admin.php:645
+#: ../../mod/admin.php:651
 msgid ""
 "All contacts must use Friendica protocols. All other built-in communication "
 "protocols disabled."
 msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:652
 msgid "Verify SSL"
 msgstr "Vérifier SSL"
 
-#: ../../mod/admin.php:646
+#: ../../mod/admin.php:652
 msgid ""
 "If you wish, you can turn on strict certificate checking. This will mean you"
 " cannot connect (at all) to self-signed SSL sites."
 msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
 
-#: ../../mod/admin.php:647
+#: ../../mod/admin.php:653
 msgid "Proxy user"
 msgstr "Utilisateur du proxy"
 
-#: ../../mod/admin.php:648
+#: ../../mod/admin.php:654
 msgid "Proxy URL"
 msgstr "URL du proxy"
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:655
 msgid "Network timeout"
 msgstr "Dépassement du délai d'attente du réseau"
 
-#: ../../mod/admin.php:649
+#: ../../mod/admin.php:655
 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:656
 msgid "Delivery interval"
 msgstr "Intervalle de transmission"
 
-#: ../../mod/admin.php:650
+#: ../../mod/admin.php:656
 msgid ""
 "Delay background delivery processes by this many seconds to reduce system "
 "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
 "for large dedicated servers."
 msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:657
 msgid "Poll interval"
 msgstr "Intervalle de réception"
 
-#: ../../mod/admin.php:651
+#: ../../mod/admin.php:657
 msgid ""
 "Delay background polling processes by this many seconds to reduce system "
 "load. If 0, use delivery interval."
 msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:658
 msgid "Maximum Load Average"
 msgstr "Plafond de la charge moyenne"
 
-#: ../../mod/admin.php:652
+#: ../../mod/admin.php:658
 msgid ""
 "Maximum system load before delivery and poll processes are deferred - "
 "default 50."
 msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:660
 msgid "Use MySQL full text engine"
 msgstr "Utiliser le moteur de recherche plein texte de MySQL"
 
-#: ../../mod/admin.php:654
+#: ../../mod/admin.php:660
 msgid ""
 "Activates the full text engine. Speeds up search - but can only search for "
 "four and more characters."
 msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:661
 msgid "Suppress Language"
 msgstr "Supprimer un langage"
 
-#: ../../mod/admin.php:655
+#: ../../mod/admin.php:661
 msgid "Suppress language information in meta information about a posting."
 msgstr "Supprimer les informations de langue dans les métadonnées des publications."
 
-#: ../../mod/admin.php:656
+#: ../../mod/admin.php:662
 msgid "Path to item cache"
 msgstr "Chemin vers le cache des objets."
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:663
 msgid "Cache duration in seconds"
 msgstr "Durée du cache en secondes"
 
-#: ../../mod/admin.php:657
+#: ../../mod/admin.php:663
 msgid ""
 "How long should the cache files be hold? Default value is 86400 seconds (One"
 " day). To disable the item cache, set the value to -1."
 msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:664
 msgid "Maximum numbers of comments per post"
 msgstr "Nombre maximum de commentaires par publication"
 
-#: ../../mod/admin.php:658
+#: ../../mod/admin.php:664
 msgid "How much comments should be shown for each post? Default value is 100."
 msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
 
-#: ../../mod/admin.php:659
+#: ../../mod/admin.php:665
 msgid "Path for lock file"
 msgstr "Chemin vers le ficher de verrouillage"
 
-#: ../../mod/admin.php:660
+#: ../../mod/admin.php:666
 msgid "Temp path"
 msgstr "Chemin des fichiers temporaires"
 
-#: ../../mod/admin.php:661
+#: ../../mod/admin.php:667
 msgid "Base path to installation"
 msgstr "Chemin de base de l'installation"
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:668
 msgid "Disable picture proxy"
 msgstr "Désactiver le proxy image "
 
-#: ../../mod/admin.php:662
+#: ../../mod/admin.php:668
 msgid ""
 "The picture proxy increases performance and privacy. It shouldn't be used on"
 " systems with very low bandwith."
 msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."
 
-#: ../../mod/admin.php:664
+#: ../../mod/admin.php:670
 msgid "New base url"
 msgstr "Nouvelle URL de base"
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:672
 msgid "Disable noscrape"
 msgstr "Désactiver le noscrape"
 
-#: ../../mod/admin.php:666
+#: ../../mod/admin.php:672
 msgid ""
 "The noscrape feature speeds up directory submissions by using JSON data "
 "instead of HTML scraping. Disabling it will cause higher load on your server"
 " and the directory server."
 msgstr "La fonction de noscrape accélère les répertoires de mémoire en utilisant des données JSON lieu de grattage HTML. En le désactivant il entraîne une charge plus élevée sur votre serveur et le serveur d'annuaire."
 
-#: ../../mod/admin.php:683
+#: ../../mod/admin.php:689
 msgid "Update has been marked successful"
 msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: ../../mod/admin.php:691
+#: ../../mod/admin.php:697
 #, php-format
 msgid "Database structure update %s was successfully applied."
 msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
 
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:700
 #, php-format
 msgid "Executing of database structure update %s failed with error: %s"
 msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
 
-#: ../../mod/admin.php:706
+#: ../../mod/admin.php:712
 #, php-format
 msgid "Executing %s failed with error: %s"
 msgstr "L'exécution %s a échoué avec l'erreur: %s"
 
-#: ../../mod/admin.php:709
+#: ../../mod/admin.php:715
 #, php-format
 msgid "Update %s was successfully applied."
 msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: ../../mod/admin.php:713
+#: ../../mod/admin.php:719
 #, php-format
 msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
 
-#: ../../mod/admin.php:715
+#: ../../mod/admin.php:721
 #, php-format
 msgid "There was no additional update function %s that needed to be called."
 msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
 
-#: ../../mod/admin.php:734
+#: ../../mod/admin.php:740
 msgid "No failed updates."
 msgstr "Pas de mises-à-jour échouées."
 
-#: ../../mod/admin.php:735
+#: ../../mod/admin.php:741
 msgid "Check database structure"
 msgstr "Vérifier la structure de la base de données"
 
-#: ../../mod/admin.php:740
+#: ../../mod/admin.php:746
 msgid "Failed Updates"
 msgstr "Mises-à-jour échouées"
 
-#: ../../mod/admin.php:741
+#: ../../mod/admin.php:747
 msgid ""
 "This does not include updates prior to 1139, which did not return a status."
 msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
 
-#: ../../mod/admin.php:742
+#: ../../mod/admin.php:748
 msgid "Mark success (if update was manually applied)"
 msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
 
-#: ../../mod/admin.php:743
+#: ../../mod/admin.php:749
 msgid "Attempt to execute this update step automatically"
 msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: ../../mod/admin.php:775
+#: ../../mod/admin.php:781
 #, php-format
 msgid ""
 "\n"
@@ -2552,7 +2774,7 @@ msgid ""
 "\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr "\n\t\t\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte."
 
-#: ../../mod/admin.php:778
+#: ../../mod/admin.php:784
 #, php-format
 msgid ""
 "\n"
@@ -2580,985 +2802,1074 @@ msgid ""
 "\t\t\tyou to make some new and interesting friends.\n"
 "\n"
 "\t\t\tThank you and welcome to %4$s."
-msgstr ""
+msgstr "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s."
 
-#: ../../mod/admin.php:810 ../../include/user.php:413
+#: ../../mod/admin.php:816 ../../include/user.php:413
 #, php-format
 msgid "Registration details for %s"
 msgstr "Détails d'inscription pour %s"
 
-#: ../../mod/admin.php:822
+#: ../../mod/admin.php:828
 #, php-format
 msgid "%s user blocked/unblocked"
 msgid_plural "%s users blocked/unblocked"
 msgstr[0] "%s utilisateur a (dé)bloqué"
 msgstr[1] "%s utilisateurs ont (dé)bloqué"
 
-#: ../../mod/admin.php:829
+#: ../../mod/admin.php:835
 #, php-format
 msgid "%s user deleted"
 msgid_plural "%s users deleted"
 msgstr[0] "%s utilisateur supprimé"
 msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../mod/admin.php:868
+#: ../../mod/admin.php:874
 #, php-format
 msgid "User '%s' deleted"
 msgstr "Utilisateur '%s' supprimé"
 
-#: ../../mod/admin.php:876
+#: ../../mod/admin.php:882
 #, php-format
 msgid "User '%s' unblocked"
 msgstr "Utilisateur '%s' débloqué"
 
-#: ../../mod/admin.php:876
+#: ../../mod/admin.php:882
 #, php-format
 msgid "User '%s' blocked"
 msgstr "Utilisateur '%s' bloqué"
 
-#: ../../mod/admin.php:971
+#: ../../mod/admin.php:977
 msgid "Add User"
 msgstr "Ajouter l'utilisateur"
 
-#: ../../mod/admin.php:972
+#: ../../mod/admin.php:978
 msgid "select all"
 msgstr "tout sélectionner"
 
-#: ../../mod/admin.php:973
+#: ../../mod/admin.php:979
 msgid "User registrations waiting for confirm"
 msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: ../../mod/admin.php:974
+#: ../../mod/admin.php:980
 msgid "User waiting for permanent deletion"
 msgstr "Utilisateur en attente de suppression définitive"
 
-#: ../../mod/admin.php:975
+#: ../../mod/admin.php:981
 msgid "Request date"
 msgstr "Date de la demande"
 
-#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
-#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1007 ../../mod/crepair.php:165
+#: ../../mod/settings.php:616 ../../mod/settings.php:642
+msgid "Name"
+msgstr "Nom"
+
+#: ../../mod/admin.php:981 ../../mod/admin.php:993 ../../mod/admin.php:994
+#: ../../mod/admin.php:1009 ../../include/contact_selectors.php:79
 #: ../../include/contact_selectors.php:86
 msgid "Email"
 msgstr "Courriel"
 
-#: ../../mod/admin.php:976
+#: ../../mod/admin.php:982
 msgid "No registrations."
 msgstr "Pas d'inscriptions."
 
-#: ../../mod/admin.php:978
+#: ../../mod/admin.php:983 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Approuver"
+
+#: ../../mod/admin.php:984
 msgid "Deny"
 msgstr "Rejetter"
 
-#: ../../mod/admin.php:982
+#: ../../mod/admin.php:986 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Block"
+msgstr "Bloquer"
+
+#: ../../mod/admin.php:987 ../../mod/contacts.php:442
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:714
+msgid "Unblock"
+msgstr "Débloquer"
+
+#: ../../mod/admin.php:988
 msgid "Site admin"
 msgstr "Administration du Site"
 
-#: ../../mod/admin.php:983
+#: ../../mod/admin.php:989
 msgid "Account expired"
 msgstr "Compte expiré"
 
-#: ../../mod/admin.php:986
+#: ../../mod/admin.php:992
 msgid "New User"
 msgstr "Nouvel utilisateur"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Register date"
 msgstr "Date d'inscription"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Last login"
 msgstr "Dernière connexion"
 
-#: ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:993 ../../mod/admin.php:994
 msgid "Last item"
 msgstr "Dernier élément"
 
-#: ../../mod/admin.php:987
+#: ../../mod/admin.php:993
 msgid "Deleted since"
 msgstr "Supprimé depuis"
 
-#: ../../mod/admin.php:988 ../../mod/settings.php:36
+#: ../../mod/admin.php:994 ../../mod/settings.php:36
 msgid "Account"
 msgstr "Compte"
 
-#: ../../mod/admin.php:990
+#: ../../mod/admin.php:996
 msgid ""
 "Selected users will be deleted!\\n\\nEverything these users had posted on "
 "this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:991
+#: ../../mod/admin.php:997
 msgid ""
 "The user {0} will be deleted!\\n\\nEverything this user has posted on this "
 "site will be permanently deleted!\\n\\nAre you sure?"
 msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
 
-#: ../../mod/admin.php:1001
+#: ../../mod/admin.php:1007
 msgid "Name of the new user."
 msgstr "Nom du nouvel utilisateur."
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1008
 msgid "Nickname"
 msgstr "Pseudo"
 
-#: ../../mod/admin.php:1002
+#: ../../mod/admin.php:1008
 msgid "Nickname of the new user."
 msgstr "Pseudo du nouvel utilisateur."
 
-#: ../../mod/admin.php:1003
+#: ../../mod/admin.php:1009
 msgid "Email address of the new user."
 msgstr "Adresse mail du nouvel utilisateur."
 
-#: ../../mod/admin.php:1036
+#: ../../mod/admin.php:1042
 #, php-format
 msgid "Plugin %s disabled."
 msgstr "Extension %s désactivée."
 
-#: ../../mod/admin.php:1040
+#: ../../mod/admin.php:1046
 #, php-format
 msgid "Plugin %s enabled."
 msgstr "Extension %s activée."
 
-#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
+#: ../../mod/admin.php:1056 ../../mod/admin.php:1272
 msgid "Disable"
 msgstr "Désactiver"
 
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
+#: ../../mod/admin.php:1058 ../../mod/admin.php:1274
 msgid "Enable"
 msgstr "Activer"
 
-#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
+#: ../../mod/admin.php:1081 ../../mod/admin.php:1302
 msgid "Toggle"
 msgstr "Activer/Désactiver"
 
-#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
+#: ../../mod/admin.php:1089 ../../mod/admin.php:1312
 msgid "Author: "
 msgstr "Auteur: "
 
-#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
+#: ../../mod/admin.php:1090 ../../mod/admin.php:1313
 msgid "Maintainer: "
 msgstr "Mainteneur: "
 
-#: ../../mod/admin.php:1226
+#: ../../mod/admin.php:1232
 msgid "No themes found."
 msgstr "Aucun thème trouvé."
 
-#: ../../mod/admin.php:1288
+#: ../../mod/admin.php:1294
 msgid "Screenshot"
 msgstr "Capture d'écran"
 
-#: ../../mod/admin.php:1334
+#: ../../mod/admin.php:1340
 msgid "[Experimental]"
 msgstr "[Expérimental]"
 
-#: ../../mod/admin.php:1335
+#: ../../mod/admin.php:1341
 msgid "[Unsupported]"
 msgstr "[Non supporté]"
 
-#: ../../mod/admin.php:1362
+#: ../../mod/admin.php:1368
 msgid "Log settings updated."
 msgstr "Réglages des journaux mis-à-jour."
 
-#: ../../mod/admin.php:1418
+#: ../../mod/admin.php:1424
 msgid "Clear"
 msgstr "Effacer"
 
-#: ../../mod/admin.php:1424
+#: ../../mod/admin.php:1430
 msgid "Enable Debugging"
 msgstr "Activer le déboggage"
 
-#: ../../mod/admin.php:1425
+#: ../../mod/admin.php:1431
 msgid "Log file"
 msgstr "Fichier de journaux"
 
-#: ../../mod/admin.php:1425
+#: ../../mod/admin.php:1431
 msgid ""
 "Must be writable by web server. Relative to your Friendica top-level "
 "directory."
 msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
 
-#: ../../mod/admin.php:1426
+#: ../../mod/admin.php:1432
 msgid "Log level"
 msgstr "Niveau de journalisaton"
 
-#: ../../mod/admin.php:1476
+#: ../../mod/admin.php:1481 ../../mod/contacts.php:498
+msgid "Update now"
+msgstr "Mettre à jour"
+
+#: ../../mod/admin.php:1482
 msgid "Close"
 msgstr "Fermer"
 
-#: ../../mod/admin.php:1482
+#: ../../mod/admin.php:1488
 msgid "FTP Host"
 msgstr "Hôte FTP"
 
-#: ../../mod/admin.php:1483
+#: ../../mod/admin.php:1489
 msgid "FTP Path"
 msgstr "Chemin FTP"
 
-#: ../../mod/admin.php:1484
+#: ../../mod/admin.php:1490
 msgid "FTP User"
 msgstr "Utilisateur FTP"
 
-#: ../../mod/admin.php:1485
+#: ../../mod/admin.php:1491
 msgid "FTP Password"
 msgstr "Mot de passe FTP"
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Résultats pour:"
+#: ../../mod/_search.php:99 ../../mod/search.php:99 ../../include/text.php:953
+#: ../../include/text.php:954 ../../include/nav.php:119
+msgid "Search"
+msgstr "Recherche"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: ../../mod/_search.php:180 ../../mod/_search.php:206
+#: ../../mod/search.php:170 ../../mod/search.php:196
+#: ../../mod/community.php:62 ../../mod/community.php:71
+msgid "No results."
+msgstr "Aucun résultat."
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Recherches"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Conseils aux nouveaux venus"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "ajouter"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "lien"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Tri par commentaires"
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Trier par date de commentaire"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Élément introuvable"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Tri des publications"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Éditer la publication"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Trier par date de publication"
+#: ../../mod/editpost.php:109 ../../mod/notes.php:63 ../../mod/filer.php:31
+#: ../../include/text.php:956
+msgid "Save"
+msgstr "Sauver"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Publications qui vous concernent"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
+msgstr "envoi image"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nouveau"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
+msgstr "Joindre fichier"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Flux d'activités - par date"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
+msgstr "ajout fichier"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Liens partagés"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
+msgstr "lien web"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Liens intéressants"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
+msgstr "Insérer un lien video"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Mis en avant"
-
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Publications favorites"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
+msgstr "lien vidéo"
 
-#: ../../mod/network.php:463
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
-msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
+msgstr "Insérer un lien audio"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
+msgstr "lien audio"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Groupe inexistant"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
+msgstr "Définir votre localisation"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Groupe vide"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
+msgstr "spéc. localisation"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Groupe: "
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
+msgstr "Effacer la localisation du navigateur"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
+msgstr "supp. localisation"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
+msgstr "Réglages des permissions"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Contact invalide."
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
+msgstr "CC: adresses de courriel"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amis de %s"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
+msgstr "Publication publique"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Pas d'amis à afficher."
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
+msgstr "Définir un titre"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Vous devez donner un nom et un horaire de début à l'événement."
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemple: bob@exemple.com, mary@exemple.com"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editer l'événement"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Elément non disponible."
 
-#: ../../mod/events.php:335 ../../include/text.php:1644
-#: ../../include/text.php:1654
-msgid "link to source"
-msgstr "lien original"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Element introuvable."
 
-#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Événements"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Inscription validée."
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Créer un nouvel événement"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Précédent"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Merci de vous connecter."
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Suivant"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Trouver sur ce site"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "heures:minutes"
+#: ../../mod/directory.php:61 ../../mod/contacts.php:707
+msgid "Finding: "
+msgstr "Trouvé: "
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Annuaire local"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Le format est %s %s. La date de début et le nom sont nécessaires."
+#: ../../mod/directory.php:63 ../../mod/contacts.php:708
+#: ../../include/contact_widgets.php:34
+msgid "Find"
+msgstr "Trouver"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Début de l'événement:"
+#: ../../mod/directory.php:113 ../../mod/profiles.php:735
+msgid "Age: "
+msgstr "Age: "
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Requis"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Genre: "
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date/heure de fin inconnue ou sans objet"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Aucune entrée (certaines peuvent être cachées)."
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Fin de l'événement:"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Réglages du contact appliqués."
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster à la zone horaire du visiteur"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Impossible d'appliquer les réglages."
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Description:"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Réglages de réparation des contacts"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Localisation:"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titre :"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "une photo"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Retour à l'éditeur de contact"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Sélectionner"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr ""
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Voir le profil de %s @ %s"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr ""
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr ""
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Voir dans le contexte"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Pseudo du compte"
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commentaire"
-msgstr[1] "%d commentaires"
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1969
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commentaire"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL du compte"
 
-#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "montrer plus"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "Echec du téléversement de l'image."
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
-msgid "Private Message"
-msgstr "Message privé"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "Accès public refusé."
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
-msgid "I like this (toggle)"
-msgstr "J'aime (bascule)"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
-msgid "like"
-msgstr "aime"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Téléverser des photos"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
-msgid "I don't like this (toggle)"
-msgstr "Je n'aime pas (bascule)"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nouvelle photo depuis cette URL"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
-msgid "dislike"
-msgstr "n'aime pas"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr ""
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "Share this"
-msgstr "Partager"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
-msgid "share"
-msgstr "partager"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
-#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
-msgid "This is you"
-msgstr "C'est vous"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Migrer le compte"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Commenter"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
 
-#: ../../mod/content.php:711 ../../object/Item.php:679
-msgid "Bold"
-msgstr "Gras"
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
-msgid "Italic"
-msgstr "Italique"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
-msgid "Underline"
-msgstr "Souligné"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Fichier du compte"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
-msgid "Quote"
-msgstr "Citation"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
-msgid "Code"
-msgstr "Code"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informations de confidentialité indisponibles."
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
-msgid "Image"
-msgstr "Image"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visible par:"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
-msgid "Link"
-msgstr "Lien"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Aide:"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
-msgid "Video"
-msgstr "Vidéo"
+#: ../../mod/help.php:84 ../../include/nav.php:114
+msgid "Help"
+msgstr "Aide"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Aperçu"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Aucun profil"
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Éditer"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Cette introduction a déjà été acceptée."
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "mett en avant"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "ne plus mettre en avant"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "mettre en avant"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "mis en avant"
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
+msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "ajouter une étiquette"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Phase d'introduction achevée."
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "sauver vers dossier"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Erreur de protocole non-récupérable."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "à"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil indisponible."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Inter-mur"
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "en Inter-mur:"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Des mesures de protection contre le spam ont été déclenchées."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Supprimer mon compte"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Localisateur invalide"
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Merci de saisir votre mot de passe pour vérification:"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Adresse courriel invalide."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Serveur de communications Friendica - Configuration"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base."
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossible de créer une table."
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Vous vous êtes déjà présenté ici."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "La base de données de votre site Friendica a bien été installée."
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Il semblerait que vous soyez déjà ami avec %s."
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "URL de profil invalide."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Référez-vous au fichier \"INSTALL.txt\"."
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "URL de profil interdite."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Vérifications système"
+#: ../../mod/dfrn_request.php:576 ../../mod/contacts.php:188
+msgid "Failed to update contact record."
+msgstr "Échec de mise-à-jour du contact."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Votre introduction a été envoyée."
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Connectez-vous pour confirmer l'introduction."
 
-#: ../../mod/install.php:228
+#: ../../mod/dfrn_request.php:660
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil."
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Cacher ce contact"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bienvenue chez vous, %s."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Serveur de base de données"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nom d'utilisateur de la base"
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Confirmer"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Mot de passe de la base"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nom de la base"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Adresse électronique de l'administrateur du site"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Requête de relation/amitié"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/dfrn_request.php:828
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Merci de répondre à ce qui suit:"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Réglages du site"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Est-ce que %s vous connaît?"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Ajouter une note personnelle:"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Chemin vers l'exécutable de PHP"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
+#: ../../mod/dfrn_request.php:838 ../../mod/settings.php:736
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Version \"ligne de commande\" de PHP"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora."
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Votre adresse d'identité:"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Version de PHP:"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Envoyer la requête"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: ../../mod/update_profile.php:41 ../../mod/update_network.php:25
+#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
+#: ../../mod/update_notes.php:37
+msgid "[Embedded content - reload page to view]"
+msgstr "[contenu incorporé - rechargez la page pour le voir]"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
+msgstr "Voir dans le contexte"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Ceci est requis pour que la livraison des messages fonctionne."
+#: ../../mod/contacts.php:108
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contact édité"
+msgstr[1] "%d contacts édités."
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder à l'enregistrement du contact."
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
+#: ../../mod/contacts.php:153
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil séléctionné."
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/contacts.php:186
+msgid "Contact updated."
+msgstr "Contact mis-à-jour."
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Générer les clés de chiffrement"
+#: ../../mod/contacts.php:287
+msgid "Contact has been blocked"
+msgstr "Le contact a été bloqué"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Module libCurl de PHP"
+#: ../../mod/contacts.php:287
+msgid "Contact has been unblocked"
+msgstr "Le contact n'est plus bloqué"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Module GD (graphiques) de PHP"
+#: ../../mod/contacts.php:298
+msgid "Contact has been ignored"
+msgstr "Le contact a été ignoré"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Module OpenSSL de PHP"
+#: ../../mod/contacts.php:298
+msgid "Contact has been unignored"
+msgstr "Le contact n'est plus ignoré"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Module Mysqli de PHP"
+#: ../../mod/contacts.php:310
+msgid "Contact has been archived"
+msgstr "Contact archivé"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Module mb_string de PHP"
+#: ../../mod/contacts.php:310
+msgid "Contact has been unarchived"
+msgstr "Contact désarchivé"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Module mod_rewrite Apache"
+#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
+msgid "Do you really want to delete this contact?"
+msgstr "Voulez-vous vraiment supprimer ce contact?"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
+#: ../../mod/contacts.php:352
+msgid "Contact has been removed."
+msgstr "Ce contact a été retiré."
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
+#: ../../mod/contacts.php:390
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Vous êtes ami (et réciproquement) avec %s"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
+#: ../../mod/contacts.php:394
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Vous partagez avec %s"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
+#: ../../mod/contacts.php:399
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s partage avec vous"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
+#: ../../mod/contacts.php:416
+msgid "Private communications are not available for this contact."
+msgstr "Les communications privées ne sont pas disponibles pour ce contact."
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
+#: ../../mod/contacts.php:423
+msgid "(Update was successful)"
+msgstr "(Mise à jour effectuée avec succès)"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
+#: ../../mod/contacts.php:423
+msgid "(Update was not successful)"
+msgstr "(Mise à jour échouée)"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
+#: ../../mod/contacts.php:425
+msgid "Suggest friends"
+msgstr "Suggérer amitié/contact"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
+#: ../../mod/contacts.php:429
+#, php-format
+msgid "Network type: %s"
+msgstr "Type de réseau %s"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contact en commun"
+msgstr[1] "%d contacts en commun"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Fichier .htconfig.php accessible en écriture"
+#: ../../mod/contacts.php:437
+msgid "View all contacts"
+msgstr "Voir tous les contacts"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
+#: ../../mod/contacts.php:445
+msgid "Toggle Blocked status"
+msgstr "(dés)activer l'état \"bloqué\""
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715
+msgid "Unignore"
+msgstr "Ne plus ignorer"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
+#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
+#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
+#: ../../mod/contacts.php:451
+msgid "Toggle Ignored status"
+msgstr "(dés)activer l'état \"ignoré\""
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 est autorisé à l écriture"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Unarchive"
+msgstr "Désarchiver"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
+msgid "Archive"
+msgstr "Archiver"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne."
+#: ../../mod/contacts.php:458
+msgid "Toggle Archive status"
+msgstr "(dés)activer l'état \"archivé\""
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
+#: ../../mod/contacts.php:461
+msgid "Repair"
+msgstr "Réparer"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Ensuite</h1>"
+#: ../../mod/contacts.php:464
+msgid "Advanced Contact Settings"
+msgstr "Réglages avancés du contact"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."
+#: ../../mod/contacts.php:470
+msgid "Communications lost with this contact!"
+msgstr "Communications perdues avec ce contact !"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#: ../../mod/contacts.php:473
+msgid "Contact Editor"
+msgstr "Éditeur de contact"
+
+#: ../../mod/contacts.php:476
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
+
+#: ../../mod/contacts.php:477
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Impossible de vérifier votre localisation."
+#: ../../mod/contacts.php:478
+msgid "Contact Information / Notes"
+msgstr "Informations de contact / Notes"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Pas de destinataire."
+#: ../../mod/contacts.php:479
+msgid "Edit contact notes"
+msgstr "Éditer les notes des contacts"
 
-#: ../../mod/wallmessage.php:143
+#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
+#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
 #, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
+
+#: ../../mod/contacts.php:485
+msgid "Block/Unblock contact"
+msgstr "Bloquer/débloquer ce contact"
+
+#: ../../mod/contacts.php:486
+msgid "Ignore contact"
+msgstr "Ignorer ce contact"
+
+#: ../../mod/contacts.php:487
+msgid "Repair URL settings"
+msgstr "Réglages de réparation des URL"
+
+#: ../../mod/contacts.php:488
+msgid "View conversations"
+msgstr "Voir les conversations"
+
+#: ../../mod/contacts.php:490
+msgid "Delete contact"
+msgstr "Effacer ce contact"
+
+#: ../../mod/contacts.php:494
+msgid "Last update:"
+msgstr "Dernière mise-à-jour :"
+
+#: ../../mod/contacts.php:496
+msgid "Update public posts"
+msgstr "Mettre à jour les publications publiques:"
+
+#: ../../mod/contacts.php:505
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
+
+#: ../../mod/contacts.php:506
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
+
+#: ../../mod/contacts.php:507
+msgid "Currently archived"
+msgstr "Actuellement archivé"
+
+#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Cacher ce contact aux autres"
+
+#: ../../mod/contacts.php:508
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Aide:"
+#: ../../mod/contacts.php:509
+msgid "Notification for new posts"
+msgstr "Notification des nouvelles publications"
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Aide"
+#: ../../mod/contacts.php:509
+msgid "Send a notification of every new post of this contact"
+msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Non trouvé"
+#: ../../mod/contacts.php:510
+msgid "Fetch further information for feeds"
+msgstr "Chercher plus d'informations pour les flux"
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Page introuvable."
+#: ../../mod/contacts.php:511
+msgid "Disabled"
+msgstr "Désactivé"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s accueille %2$s"
+#: ../../mod/contacts.php:511
+msgid "Fetch information"
+msgstr "Récupérer informations"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
+#: ../../mod/contacts.php:511
+msgid "Fetch information and keywords"
+msgstr "Récupérer informations"
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
+#: ../../mod/contacts.php:513
+msgid "Blacklisted keywords"
+msgstr "Mots-clés sur la liste noire"
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr ""
+#: ../../mod/contacts.php:513
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné."
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "La taille du fichier dépasse la limite de %d"
+#: ../../mod/contacts.php:564
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Le téléversement a échoué."
+#: ../../mod/contacts.php:567
+msgid "Suggest potential friends"
+msgstr "Suggérer des amis potentiels"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correpondance de profils"
+#: ../../mod/contacts.php:570 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Tous les contacts"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
+#: ../../mod/contacts.php:573
+msgid "Show all contacts"
+msgstr "Montrer tous les contacts"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "s'intéresse à:"
+#: ../../mod/contacts.php:576
+msgid "Unblocked"
+msgstr "Non-bloqués"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Relier"
+#: ../../mod/contacts.php:579
+msgid "Only show unblocked contacts"
+msgstr "Ne montrer que les contacts non-bloqués"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "lien"
+#: ../../mod/contacts.php:583
+msgid "Blocked"
+msgstr "Bloqués"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Indisponible."
+#: ../../mod/contacts.php:586
+msgid "Only show blocked contacts"
+msgstr "Ne montrer que les contacts bloqués"
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Communauté"
+#: ../../mod/contacts.php:590
+msgid "Ignored"
+msgstr "Ignorés"
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:170 ../../mod/search.php:196
-msgid "No results."
-msgstr "Aucun résultat."
+#: ../../mod/contacts.php:593
+msgid "Only show ignored contacts"
+msgstr "Ne montrer que les contacts ignorés"
+
+#: ../../mod/contacts.php:597
+msgid "Archived"
+msgstr "Archivés"
+
+#: ../../mod/contacts.php:600
+msgid "Only show archived contacts"
+msgstr "Ne montrer que les contacts archivés"
+
+#: ../../mod/contacts.php:604
+msgid "Hidden"
+msgstr "Cachés"
+
+#: ../../mod/contacts.php:607
+msgid "Only show hidden contacts"
+msgstr "Ne montrer que les contacts masqués"
+
+#: ../../mod/contacts.php:655
+msgid "Mutual Friendship"
+msgstr "Relation réciproque"
+
+#: ../../mod/contacts.php:659
+msgid "is a fan of yours"
+msgstr "Vous suit"
+
+#: ../../mod/contacts.php:663
+msgid "you are a fan of"
+msgstr "Vous le/la suivez"
+
+#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Éditer le contact"
+
+#: ../../mod/contacts.php:706
+msgid "Search your contacts"
+msgstr "Rechercher dans vos contacts"
+
+#: ../../mod/contacts.php:713 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
+msgstr "Mises-à-jour"
 
 #: ../../mod/settings.php:29 ../../mod/photos.php:80
 msgid "everybody"
@@ -3610,7 +3921,7 @@ msgstr "Fonctionnalités mises à jour"
 
 #: ../../mod/settings.php:321
 msgid "Relocate message has been send to your contacts"
-msgstr ""
+msgstr "Un message de relocalisation a été envoyé à vos contacts."
 
 #: ../../mod/settings.php:335
 msgid "Passwords do not match. Password unchanged."
@@ -3730,11 +4041,6 @@ msgstr "Fonctions supplémentaires"
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Le support natif pour la connectivité %s est %s"
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
 #: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "enabled"
 msgstr "activé"
@@ -3922,18 +4228,6 @@ msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:627
-#: ../../mod/profiles.php:631 ../../mod/api.php:106
-msgid "No"
-msgstr "Non"
-
 #: ../../mod/settings.php:1016
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire social global?"
@@ -3972,6 +4266,10 @@ msgstr "Autoriser les messages privés d'inconnus?"
 msgid "Profile is <strong>not published</strong>."
 msgstr "Ce profil n'est <strong>pas publié</strong>."
 
+#: ../../mod/settings.php:1062 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "ou"
+
 #: ../../mod/settings.php:1067
 msgid "Your Identity Address is"
 msgstr "L'adresse de votre identité est"
@@ -4188,925 +4486,817 @@ msgstr "Modifier le comportement de ce compte dans certaines situations"
 
 #: ../../mod/settings.php:1193
 msgid "Relocate"
-msgstr ""
+msgstr "Relocaliser"
 
 #: ../../mod/settings.php:1194
 msgid ""
 "If you have moved this profile from another server, and some of your "
 "contacts don't receive your updates, try pushing this button."
-msgstr ""
+msgstr "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."
 
 #: ../../mod/settings.php:1195
 msgid "Resend relocate message to contacts"
-msgstr ""
-
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Cette introduction a déjà été acceptée."
+msgstr "Renvoyer un message de relocalisation aux contacts."
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil supprimé."
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nouveau profil créé."
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
-msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Ce profil ne peut être cloné."
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Phase d'introduction achevée."
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Erreur de protocole non-récupérable."
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Statut marital"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil indisponible."
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Partenaire/conjoint"
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Derniers \"J'aime\""
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Des mesures de protection contre le spam ont été déclenchées."
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Derniers \"Je n'aime pas\""
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Travail/Occupation"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Localisateur invalide"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Adresse courriel invalide."
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Tendance politique"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Sexe"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Vous vous êtes déjà présenté ici."
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Site internet"
 
-#: ../../mod/dfrn_request.php:480
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Il semblerait que vous soyez déjà ami avec %s."
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:683
+msgid "Interests"
+msgstr "Centres d'intérêt"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "URL de profil invalide."
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "URL de profil interdite."
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:679
+msgid "Location"
+msgstr "Localisation"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Votre introduction a été envoyée."
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profil mis à jour."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Connectez-vous pour confirmer l'introduction."
+#: ../../mod/profiles.php:553
+msgid " and "
+msgstr " et "
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil."
+#: ../../mod/profiles.php:561
+msgid "public profile"
+msgstr "profil public"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Cacher ce contact"
+#: ../../mod/profiles.php:564
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
 
-#: ../../mod/dfrn_request.php:674
+#: ../../mod/profiles.php:565
 #, php-format
-msgid "Welcome home %s."
-msgstr "Bienvenue chez vous, %s."
+msgid " - Visit %1$s's %2$s"
+msgstr "Visiter le %2$s de %1$s"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/profiles.php:568
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Confirmer"
+#: ../../mod/profiles.php:643
+msgid "Hide contacts and friends:"
+msgstr "Cacher mes contacts et amis:"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"
+#: ../../mod/profiles.php:648
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>."
+#: ../../mod/profiles.php:670
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Requête de relation/amitié"
+#: ../../mod/profiles.php:672
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/profiles.php:673
+msgid "View this profile"
+msgstr "Voir ce profil"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Merci de répondre à ce qui suit:"
+#: ../../mod/profiles.php:674
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil en utilisant ces réglages"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "Est-ce que %s vous connaît?"
+#: ../../mod/profiles.php:675
+msgid "Clone this profile"
+msgstr "Cloner ce profil"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Ajouter une note personnelle:"
+#: ../../mod/profiles.php:676
+msgid "Delete this profile"
+msgstr "Supprimer ce profil"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/profiles.php:677
+msgid "Basic information"
+msgstr "Information de base"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/profiles.php:678
+msgid "Profile picture"
+msgstr "Image de profil"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora."
+#: ../../mod/profiles.php:680
+msgid "Preferences"
+msgstr "Préférences"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Votre adresse d'identité:"
+#: ../../mod/profiles.php:681
+msgid "Status information"
+msgstr "Information sur le statut"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Envoyer la requête"
+#: ../../mod/profiles.php:682
+msgid "Additional information"
+msgstr "Information additionnelle"
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
+#: ../../mod/profiles.php:685
+msgid "Profile Name:"
+msgstr "Nom du profil:"
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr ""
+#: ../../mod/profiles.php:686
+msgid "Your Full Name:"
+msgstr "Votre nom complet:"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traitée."
+#: ../../mod/profiles.php:687
+msgid "Title/Description:"
+msgstr "Titre/Description:"
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
-msgstr "Votre inscription attend une validation du propriétaire du site."
-
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
+#: ../../mod/profiles.php:688
+msgid "Your Gender:"
+msgstr "Votre genre:"
 
-#: ../../mod/register.php:214
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
+#: ../../mod/profiles.php:689
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Anniversaire (%s):"
 
-#: ../../mod/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
+#: ../../mod/profiles.php:690
+msgid "Street Address:"
+msgstr "Adresse postale:"
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Votre OpenID (facultatif): "
+#: ../../mod/profiles.php:691
+msgid "Locality/City:"
+msgstr "Ville/Localité:"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Inclure votre profil dans l'annuaire des membres?"
+#: ../../mod/profiles.php:692
+msgid "Postal/Zip Code:"
+msgstr "Code postal:"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "L'inscription à ce site se fait uniquement sur invitation."
+#: ../../mod/profiles.php:693
+msgid "Country:"
+msgstr "Pays:"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "Votre ID d'invitation: "
+#: ../../mod/profiles.php:694
+msgid "Region/State:"
+msgstr "Région/État:"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Votre nom complet (p.ex. Michel Dupont): "
+#: ../../mod/profiles.php:695
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Votre adresse courriel: "
+#: ../../mod/profiles.php:696
+msgid "Who: (if applicable)"
+msgstr "Qui: (si pertinent)"
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@$sitename&lt;/strong&gt;'."
+#: ../../mod/profiles.php:697
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Choisir un pseudo: "
+#: ../../mod/profiles.php:698
+msgid "Since [date]:"
+msgstr "Depuis [date] :"
 
-#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
-msgid "Register"
-msgstr "S'inscrire"
+#: ../../mod/profiles.php:699 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Préférence sexuelle:"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importer"
+#: ../../mod/profiles.php:700
+msgid "Homepage URL:"
+msgstr "Page personnelle:"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Importer votre profile dans cette instance de friendica"
+#: ../../mod/profiles.php:701 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr " Ville d'origine:"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Système indisponible pour cause de maintenance"
+#: ../../mod/profiles.php:702 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Opinions politiques:"
 
-#: ../../mod/search.php:99 ../../include/text.php:952
-#: ../../include/text.php:953 ../../include/nav.php:119
-msgid "Search"
-msgstr "Recherche"
+#: ../../mod/profiles.php:703
+msgid "Religious Views:"
+msgstr "Opinions religieuses:"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Annuaire global"
+#: ../../mod/profiles.php:704
+msgid "Public Keywords:"
+msgstr "Mots-clés publics:"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Trouver sur ce site"
+#: ../../mod/profiles.php:705
+msgid "Private Keywords:"
+msgstr "Mots-clés privés:"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Annuaire local"
+#: ../../mod/profiles.php:706 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "J'aime :"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:716
-msgid "Age: "
-msgstr "Age: "
+#: ../../mod/profiles.php:707 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Je n'aime pas :"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Genre: "
+#: ../../mod/profiles.php:708
+msgid "Example: fishing photography software"
+msgstr "Exemple: football dessin programmation"
 
-#: ../../mod/directory.php:138 ../../boot.php:1645
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Genre:"
+#: ../../mod/profiles.php:709
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
 
-#: ../../mod/directory.php:140 ../../boot.php:1648
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Statut:"
+#: ../../mod/profiles.php:710
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
 
-#: ../../mod/directory.php:142 ../../boot.php:1650
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Page personnelle:"
+#: ../../mod/profiles.php:711
+msgid "Tell us about yourself..."
+msgstr "Parlez-nous de vous..."
 
-#: ../../mod/directory.php:144 ../../boot.php:1652
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "À propos:"
+#: ../../mod/profiles.php:712
+msgid "Hobbies/Interests"
+msgstr "Passe-temps/Centres d'intérêt"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Aucune entrée (certaines peuvent être cachées)."
+#: ../../mod/profiles.php:713
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées/Réseaux sociaux"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Pas de délégataire potentiel."
+#: ../../mod/profiles.php:714
+msgid "Musical interests"
+msgstr "Goûts musicaux"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:168
-msgid "Delegate Page Management"
-msgstr "Déléguer la gestion de la page"
+#: ../../mod/profiles.php:715
+msgid "Books, literature"
+msgstr "Lectures"
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
+#: ../../mod/profiles.php:716
+msgid "Television"
+msgstr "Télévision"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Gestionnaires existants"
+#: ../../mod/profiles.php:717
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma/Danse/Culture/Divertissement"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Délégataires existants"
+#: ../../mod/profiles.php:718
+msgid "Love/romance"
+msgstr "Amour/Romance"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Délégataires potentiels"
+#: ../../mod/profiles.php:719
+msgid "Work/employment"
+msgstr "Activité professionnelle/Occupation"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Ajouter"
+#: ../../mod/profiles.php:720
+msgid "School/education"
+msgstr "Études/Formation"
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Aucune entrée."
+#: ../../mod/profiles.php:725
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amis communs"
+#: ../../mod/profiles.php:788
+msgid "Edit/Manage Profiles"
+msgstr "Editer/gérer les profils"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Pas de contacts en commun."
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Groupe créé."
 
-#: ../../mod/uexport.php:77
-msgid "Export account"
-msgstr "Exporter le compte"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossible de créer le groupe."
 
-#: ../../mod/uexport.php:77
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
-msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Groupe introuvable."
 
-#: ../../mod/uexport.php:78
-msgid "Export all"
-msgstr "Tout exporter"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Groupe renommé."
 
-#: ../../mod/uexport.php:78
-msgid ""
-"Export your accout info, contacts and all your items as json. Could be a "
-"very big file, and could take a lot of time. Use this to make a full backup "
-"of your account (photos are not exported)"
-msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Sauvegarder le groupe"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s est d'humeur %2$s"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Créez un groupe de contacts/amis."
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humeur"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nom du groupe: "
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Spécifiez votre humeur du moment, et informez vos amis"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Groupe enlevé."
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossible d'enlever le groupe."
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Suggestions d'amitiés/contacts"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Éditeur de groupe"
 
-#: ../../mod/suggest.php:74
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membres"
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorer/cacher"
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil supprimé."
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texte source (bbcode) :"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texte source (Diaspora) à convertir en BBcode :"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nouveau profil créé."
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Source input: "
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Ce profil ne peut être cloné."
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML brut)"
 
-#: ../../mod/profiles.php:172
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../mod/profiles.php:323
-msgid "Marital Status"
-msgstr "Statut marital"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../mod/profiles.php:327
-msgid "Romantic Partner"
-msgstr "Partenaire/conjoint"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../mod/profiles.php:331
-msgid "Likes"
-msgstr "Derniers \"J'aime\""
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../mod/profiles.php:335
-msgid "Dislikes"
-msgstr "Derniers \"Je n'aime pas\""
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../mod/profiles.php:339
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../mod/profiles.php:342
-msgid "Religion"
-msgstr "Religion"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Texte source (format Diaspora) :"
 
-#: ../../mod/profiles.php:346
-msgid "Political Views"
-msgstr "Tendance politique"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb :"
 
-#: ../../mod/profiles.php:350
-msgid "Gender"
-msgstr "Sexe"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Indisponible."
 
-#: ../../mod/profiles.php:354
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact ajouté"
 
-#: ../../mod/profiles.php:358
-msgid "Homepage"
-msgstr "Site internet"
+#: ../../mod/notify.php:75 ../../mod/notifications.php:336
+msgid "No more system notifications."
+msgstr "Pas plus de notifications système."
 
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
-msgid "Interests"
-msgstr "Centres d'intérêt"
+#: ../../mod/notify.php:79 ../../mod/notifications.php:340
+msgid "System Notifications"
+msgstr "Notifications du système"
 
-#: ../../mod/profiles.php:366
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/message.php:9 ../../include/nav.php:162
+msgid "New Message"
+msgstr "Nouveau message"
 
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
-msgid "Location"
-msgstr "Localisation"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossible de localiser les informations du contact."
 
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
-msgstr "Profil mis à jour."
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
+msgstr "Messages"
 
-#: ../../mod/profiles.php:534
-msgid " and "
-msgstr " et "
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Voulez-vous vraiment supprimer ce message ?"
 
-#: ../../mod/profiles.php:542
-msgid "public profile"
-msgstr "profil public"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Message supprimé."
+
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
+
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Aucun message."
 
-#: ../../mod/profiles.php:545
+#: ../../mod/message.php:378
 #, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
+msgid "Unknown sender - %s"
+msgstr "Émetteur inconnu - %s"
 
-#: ../../mod/profiles.php:546
+#: ../../mod/message.php:381
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr "Visiter le %2$s de %1$s"
+msgid "You and %s"
+msgstr "Vous et %s"
 
-#: ../../mod/profiles.php:549
+#: ../../mod/message.php:384
 #, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
+msgid "%s and You"
+msgstr "%s et vous"
 
-#: ../../mod/profiles.php:624
-msgid "Hide contacts and friends:"
-msgstr "Cacher mes contacts et amis:"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Effacer conversation"
 
-#: ../../mod/profiles.php:629
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../mod/profiles.php:651
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
 
-#: ../../mod/profiles.php:653
-msgid "Change Profile Photo"
-msgstr "Changer la photo du profil"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Message indisponible."
 
-#: ../../mod/profiles.php:654
-msgid "View this profile"
-msgstr "Voir ce profil"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Effacer message"
 
-#: ../../mod/profiles.php:655
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil en utilisant ces réglages"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
 
-#: ../../mod/profiles.php:656
-msgid "Clone this profile"
-msgstr "Cloner ce profil"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Répondre"
 
-#: ../../mod/profiles.php:657
-msgid "Delete this profile"
-msgstr "Supprimer ce profil"
+#: ../../mod/like.php:168 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s n'aime pas %3$s de %2$s"
 
-#: ../../mod/profiles.php:658
-msgid "Basic information"
-msgstr "Information de base"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publication réussie."
 
-#: ../../mod/profiles.php:659
-msgid "Profile picture"
-msgstr "Image de profil"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:148
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/profiles.php:661
-msgid "Preferences"
-msgstr "Préférences"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversion temporelle"
 
-#: ../../mod/profiles.php:662
-msgid "Status information"
-msgstr "Information sur le statut"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
 
-#: ../../mod/profiles.php:663
-msgid "Additional information"
-msgstr "Information additionnelle"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Temps UTC : %s"
 
-#: ../../mod/profiles.php:666
-msgid "Profile Name:"
-msgstr "Nom du profil:"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Zone de temps courante : %s"
 
-#: ../../mod/profiles.php:667
-msgid "Your Full Name:"
-msgstr "Votre nom complet:"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Temps local converti : %s"
 
-#: ../../mod/profiles.php:668
-msgid "Title/Description:"
-msgstr "Titre/Description:"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Sélectionner votre zone :"
 
-#: ../../mod/profiles.php:669
-msgid "Your Gender:"
-msgstr "Votre genre:"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
+msgstr "Sauver dans le Dossier:"
 
-#: ../../mod/profiles.php:670
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Anniversaire (%s):"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- choisir -"
 
-#: ../../mod/profiles.php:671
-msgid "Street Address:"
-msgstr "Adresse postale:"
-
-#: ../../mod/profiles.php:672
-msgid "Locality/City:"
-msgstr "Ville/Localité:"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
 
-#: ../../mod/profiles.php:673
-msgid "Postal/Zip Code:"
-msgstr "Code postal:"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Éditer la visibilité du profil"
 
-#: ../../mod/profiles.php:674
-msgid "Country:"
-msgstr "Pays:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visible par"
 
-#: ../../mod/profiles.php:675
-msgid "Region/State:"
-msgstr "Région/État:"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Tous les contacts (ayant un accès sécurisé)"
 
-#: ../../mod/profiles.php:676
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Aucun contact."
 
-#: ../../mod/profiles.php:677
-msgid "Who: (if applicable)"
-msgstr "Qui: (si pertinent)"
+#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
+msgid "View Contacts"
+msgstr "Voir les contacts"
 
-#: ../../mod/profiles.php:678
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Recherche de personnes"
 
-#: ../../mod/profiles.php:679
-msgid "Since [date]:"
-msgstr "Depuis [date] :"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Aucune correspondance"
 
-#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Préférence sexuelle:"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Téléverser de nouvelles photos"
 
-#: ../../mod/profiles.php:681
-msgid "Homepage URL:"
-msgstr "Page personnelle:"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Informations de contact indisponibles"
 
-#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr " Ville d'origine:"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album introuvable."
 
-#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Opinions politiques:"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Effacer l'album"
 
-#: ../../mod/profiles.php:684
-msgid "Religious Views:"
-msgstr "Opinions religieuses:"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
 
-#: ../../mod/profiles.php:685
-msgid "Public Keywords:"
-msgstr "Mots-clés publics:"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Effacer la photo"
 
-#: ../../mod/profiles.php:686
-msgid "Private Keywords:"
-msgstr "Mots-clés privés:"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Voulez-vous vraiment supprimer cette photo ?"
 
-#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "J'aime :"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s a été étiqueté dans %2$s par %3$s"
 
-#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Je n'aime pas :"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "une photo"
 
-#: ../../mod/profiles.php:689
-msgid "Example: fishing photography software"
-msgstr "Exemple: football dessin programmation"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "L'image dépasse la taille maximale de  "
 
-#: ../../mod/profiles.php:690
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Fichier image vide."
 
-#: ../../mod/profiles.php:691
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
+#: ../../mod/photos.php:807 ../../mod/wall_upload.php:144
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Impossible de traiter l'image."
 
-#: ../../mod/profiles.php:692
-msgid "Tell us about yourself..."
-msgstr "Parlez-nous de vous..."
+#: ../../mod/photos.php:834 ../../mod/wall_upload.php:172
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Le téléversement de l'image a échoué."
 
-#: ../../mod/profiles.php:693
-msgid "Hobbies/Interests"
-msgstr "Passe-temps/Centres d'intérêt"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../mod/profiles.php:694
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées/Réseaux sociaux"
+#: ../../mod/photos.php:1031 ../../mod/videos.php:226
+msgid "Access to this item is restricted."
+msgstr "Accès restreint à cet élément."
 
-#: ../../mod/profiles.php:695
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
 
-#: ../../mod/profiles.php:696
-msgid "Books, literature"
-msgstr "Lectures"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
 
-#: ../../mod/profiles.php:697
-msgid "Television"
-msgstr "Télévision"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nom du nouvel album: "
 
-#: ../../mod/profiles.php:698
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "ou nom d'un album existant: "
 
-#: ../../mod/profiles.php:699
-msgid "Love/romance"
-msgstr "Amour/Romance"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de notice de statut pour cet envoi"
 
-#: ../../mod/profiles.php:700
-msgid "Work/employment"
-msgstr "Activité professionnelle/Occupation"
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Permissions"
 
-#: ../../mod/profiles.php:701
-msgid "School/education"
-msgstr "Études/Formation"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Photo privée"
 
-#: ../../mod/profiles.php:706
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Photo publique"
 
-#: ../../mod/profiles.php:769
-msgid "Edit/Manage Profiles"
-msgstr "Editer/gérer les profils"
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Éditer l'album"
 
-#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
-msgid "Change profile photo"
-msgstr "Changer de photo de profil"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Plus récent d'abord"
 
-#: ../../mod/profiles.php:771 ../../boot.php:1607
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Plus ancien d'abord"
 
-#: ../../mod/profiles.php:782 ../../boot.php:1617
-msgid "Profile Image"
-msgstr "Image du profil"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Voir la photo"
 
-#: ../../mod/profiles.php:784 ../../boot.php:1620
-msgid "visible to everybody"
-msgstr "visible par tous"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
 
-#: ../../mod/profiles.php:785 ../../boot.php:1621
-msgid "Edit visibility"
-msgstr "Changer la visibilité"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Photo indisponible"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Voir photo"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Éditer la publication"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Éditer la photo"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "envoi image"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Joindre fichier"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "ajout fichier"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Étiquettes:"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "lien web"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Retirer toutes les étiquettes]"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Insérer un lien video"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "lien vidéo"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Insérer un lien audio"
-
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "lien audio"
-
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Définir votre localisation"
-
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "spéc. localisation"
-
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Effacer la localisation du navigateur"
-
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "supp. localisation"
-
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Réglages des permissions"
-
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "CC: adresses de courriel"
-
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Publication publique"
-
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Définir un titre"
-
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Catégories (séparées par des virgules)"
-
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple: bob@exemple.com, mary@exemple.com"
-
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
-msgstr "Motorisé par Friendica version"
-
-#: ../../mod/friendica.php:63
-msgid "running at web location"
-msgstr "hébergé sur"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Nom du nouvel album"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica."
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Titre"
 
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
-msgstr "Pour les rapports de bugs: rendez vous sur"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
 
-#: ../../mod/friendica.php:68
+#: ../../mod/photos.php:1512
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
-
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
-msgstr "Extensions/greffons/applications installées:"
-
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
-msgstr "Extensions/greffons/applications non installées:"
-
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Photo privée"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Photo publique"
 
-#: ../../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 "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
+msgstr "Partager"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informations de confidentialité indisponibles."
+#: ../../mod/photos.php:1808 ../../mod/videos.php:308
+msgid "View Album"
+msgstr "Voir l'album"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visible par:"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Photos récentes"
 
-#: ../../mod/notes.php:44 ../../boot.php:2145
-msgid "Personal Notes"
-msgstr "Notes personnelles"
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversion temporelle"
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "La taille du fichier dépasse la limite de %d"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Le téléversement a échoué."
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Temps UTC : %s"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Pas de vidéo sélectionné"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Zone de temps courante : %s"
+#: ../../mod/videos.php:301 ../../include/text.php:1405
+msgid "View Video"
+msgstr "Regarder la vidéo"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Temps local converti : %s"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Vidéos récente"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Sélectionner votre zone :"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Téléversé une nouvelle vidéo"
 
 #: ../../mod/poke.php:192
 msgid "Poke/Prod"
@@ -5128,544 +5318,657 @@ msgstr "Choisissez ce que vous voulez faire au destinataire"
 msgid "Make this post private"
 msgstr "Rendez ce message privé"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "La limite d'invitation totale est éxédée."
-
-#: ../../mod/invite.php:49
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Adresse de courriel invalide."
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s suit les %3$s de %2$s"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Rejoignez-nous sur Friendica"
+#: ../../mod/uexport.php:77
+msgid "Export account"
+msgstr "Exporter le compte"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
+#: ../../mod/uexport.php:77
+msgid ""
+"Export your account info and contacts. Use this to make a backup of your "
+"account and/or to move it to another server."
+msgstr "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur."
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : L'envoi du message a échoué."
+#: ../../mod/uexport.php:78
+msgid "Export all"
+msgstr "Tout exporter"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyés."
+#: ../../mod/uexport.php:78
+msgid ""
+"Export your accout info, contacts and all your items as json. Could be a "
+"very big file, and could take a lot of time. Use this to make a full backup "
+"of your account (photos are not exported)"
+msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Vous n'avez plus d'invitations disponibles"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amis communs"
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Pas de contacts en commun."
 
-#: ../../mod/invite.php:122
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
 #, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
+msgid "Image exceeds size limit of %d"
+msgstr "L'image dépasse la taille limite de %d"
 
-#: ../../mod/invite.php:123
+#: ../../mod/wall_upload.php:169 ../../mod/wall_upload.php:178
+#: ../../mod/wall_upload.php:185 ../../mod/item.php:484
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Photos du mur"
+
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Image envoyée, mais impossible de la retailler."
+
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
 #, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Réduction de la taille de l'image [%s] échouée."
+
+#: ../../mod/profile_photo.php:118
 msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Fichier à téléverser:"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses email, une par ligne:"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Choisir un profil:"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Téléverser"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Vous devrez fournir ce code d'invitation: $invite_code"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "ignorer cette étape"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "choisissez une photo depuis vos albums"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "(Re)cadrer l'image"
 
-#: ../../mod/photos.php:52 ../../boot.php:2124
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Photos du contact"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Édition terminée"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Téléverser de nouvelles photos"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Informations de contact indisponibles"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Applications"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album introuvable."
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Pas d'application installée."
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Effacer l'album"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Rien de neuf ici"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Effacer les notifications"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Effacer la photo"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Correpondance de profils"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Voulez-vous vraiment supprimer cette photo ?"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s a été étiqueté dans %2$s par %3$s"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "s'intéresse à:"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "une photo"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette supprimée"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "L'image dépasse la taille maximale de  "
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Enlever l'étiquette de l'élément"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Fichier image vide."
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Sélectionner une étiquette à supprimer: "
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Aucune photo sélectionnée"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Vous devez donner un nom et un horaire de début à l'événement."
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Nom du nouvel album: "
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editer l'événement"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "ou nom d'un album existant: "
+#: ../../mod/events.php:335 ../../include/text.php:1647
+#: ../../include/text.php:1657
+msgid "link to source"
+msgstr "lien original"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de notice de statut pour cet envoi"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Créer un nouvel événement"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Permissions"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Précédent"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Photo privée"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "heures:minutes"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Photo publique"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Détails de l'événement"
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Le format est %s %s. La date de début et le nom sont nécessaires."
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Plus récent d'abord"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Début de l'événement:"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Plus ancien d'abord"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Requis"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Voir la photo"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date/heure de fin inconnue ou sans objet"
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Fin de l'événement:"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster à la zone horaire du visiteur"
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Voir photo"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Description:"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titre :"
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo de profil"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Partager cet événement"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Pas de délégataire potentiel."
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Étiquettes:"
+#: ../../mod/delegate.php:130 ../../include/nav.php:168
+msgid "Delegate Page Management"
+msgstr "Déléguer la gestion de la page"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Retirer toutes les étiquettes]"
+#: ../../mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Gestionnaires existants"
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Délégataires existants"
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Nom du nouvel album"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Délégataires potentiels"
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Titre"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Ajouter"
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Aucune entrée."
 
-#: ../../mod/photos.php:1512
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacts qui n’appartiennent à aucun groupe"
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Photo privée"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Fichiers"
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Photo publique"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Système indisponible pour cause de maintenance"
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Partager"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Supprimer mon compte"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Inscription validée."
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Merci de saisir votre mot de passe pour vérification:"
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/contact envoyée."
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer des amis/contacts"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Migrer le compte"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer un ami/contact pour %s"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication originale."
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
+msgstr "Publication vide rejetée."
 
-#: ../../mod/uimport.php:69
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvée."
+
+#: ../../mod/item.php:964
+#, php-format
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Fichier du compte"
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Vous pouvez leur rendre visite sur %s"
 
-#: ../../mod/uimport.php:70
+#: ../../mod/item.php:967
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elément non disponible."
+#: ../../mod/item.php:971
+#, php-format
+msgid "%s posted an update."
+msgstr "%s a publié une mise à jour."
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Element introuvable."
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} souhaite être votre ami(e)"
 
-#: ../../boot.php:744
-msgid "Delete this item?"
-msgstr "Effacer cet élément?"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} vous a envoyé un message"
 
-#: ../../boot.php:747
-msgid "show fewer"
-msgstr "montrer moins"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} a demandé à s'inscrire"
 
-#: ../../boot.php:1117
+#: ../../mod/ping.php:256
 #, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
+msgid "{0} commented %s's post"
+msgstr "{0} a commenté la publication de %s"
 
-#: ../../boot.php:1235
-msgid "Create a New Account"
-msgstr "Créer un nouveau compte"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} a aimé la publication de %s"
 
-#: ../../boot.php:1260 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Se déconnecter"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} n'a pas aimé la publication de %s"
 
-#: ../../boot.php:1261 ../../include/nav.php:92
-msgid "Login"
-msgstr "Connexion"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} est désormais ami(e) avec %s"
 
-#: ../../boot.php:1263
-msgid "Nickname or Email address: "
-msgstr "Pseudo ou courriel: "
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} a publié"
 
-#: ../../boot.php:1264
-msgid "Password: "
-msgstr "Mot de passe: "
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} a étiqueté la publication de %s avec #%s"
 
-#: ../../boot.php:1265
-msgid "Remember me"
-msgstr "Se souvenir de moi"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} vous a mentionné dans une publication"
 
-#: ../../boot.php:1268
-msgid "Or login using OpenID: "
-msgstr "Ou connectez-vous via OpenID: "
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
 
-#: ../../boot.php:1274
-msgid "Forgot your password?"
-msgstr "Mot de passe oublié?"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
 
-#: ../../boot.php:1277
-msgid "Website Terms of Service"
-msgstr "Conditions d'utilisation du site internet"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Échec de connexion."
 
-#: ../../boot.php:1278
-msgid "terms of service"
-msgstr "conditions d'utilisation"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identifiant de demande invalide."
 
-#: ../../boot.php:1280
-msgid "Website Privacy Policy"
-msgstr "Politique de confidentialité du site internet"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Rejeter"
 
-#: ../../boot.php:1281
-msgid "privacy policy"
-msgstr "politique de confidentialité"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Système"
 
-#: ../../boot.php:1414
-msgid "Requested account is not available."
-msgstr "Le compte demandé n'est pas disponible."
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
+msgstr "Réseau"
 
-#: ../../boot.php:1496 ../../boot.php:1630
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Editer le profil"
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
+msgstr "Introductions"
 
-#: ../../boot.php:1595
-msgid "Message"
-msgstr "Message"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Voir les demandes ignorées"
 
-#: ../../boot.php:1601 ../../include/nav.php:173
-msgid "Profiles"
-msgstr "Profils"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Cacher les demandes ignorées"
 
-#: ../../boot.php:1601
-msgid "Manage/edit profiles"
-msgstr "Gérer/éditer les profils"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Type de notification: "
 
-#: ../../boot.php:1701
-msgid "Network:"
-msgstr "Réseau"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Suggestion d'amitié/contact"
 
-#: ../../boot.php:1731 ../../boot.php:1817
-msgid "g A l F d"
-msgstr "g A | F d"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "suggéré(e) par %s"
 
-#: ../../boot.php:1732 ../../boot.php:1818
-msgid "F d"
-msgstr "F d"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Poster une nouvelle avtivité d'ami"
 
-#: ../../boot.php:1777 ../../boot.php:1858
-msgid "[today]"
-msgstr "[aujourd'hui]"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "si possible"
 
-#: ../../boot.php:1789
-msgid "Birthday Reminders"
-msgstr "Rappels d'anniversaires"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Prétend que vous le connaissez: "
 
-#: ../../boot.php:1790
-msgid "Birthdays this week:"
-msgstr "Anniversaires cette semaine:"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "oui"
 
-#: ../../boot.php:1851
-msgid "[No description]"
-msgstr "[Sans description]"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "non"
 
-#: ../../boot.php:1869
-msgid "Event Reminders"
-msgstr "Rappels d'événements"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Approuver en tant que: "
 
-#: ../../boot.php:1870
-msgid "Events this week:"
-msgstr "Evénements cette semaine:"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Ami"
 
-#: ../../boot.php:2107 ../../include/nav.php:76
-msgid "Status"
-msgstr "Statut"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Initiateur du partage"
 
-#: ../../boot.php:2110
-msgid "Status Messages and Posts"
-msgstr "Messages d'état et publications"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Admirateur"
 
-#: ../../boot.php:2117
-msgid "Profile Details"
-msgstr "Détails du profil"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Demande de connexion/relation"
 
-#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Vidéos"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nouvel abonné"
 
-#: ../../boot.php:2141
-msgid "Events and Calendar"
-msgstr "Événements et agenda"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Aucune demande d'introduction."
 
-#: ../../boot.php:2148
-msgid "Only You Can See This"
-msgstr "Vous seul pouvez voir ça"
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
+msgstr "Notifications"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Cette entrée à été édité"
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s a aimé la publication de %s"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignorer le fil"
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s n'a pas aimé la publication de %s"
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "Ne plus ignorer le fil"
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s est désormais ami(e) avec %s"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "Ignorer le statut"
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a créé une nouvelle publication"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "ignoré"
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s a commenté la publication de %s"
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Catégories:"
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
+msgstr "Aucune notification du réseau."
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Rangé sous:"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
+msgstr "Notifications du réseau"
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
+msgstr "Aucun notification personnelle."
 
-#: ../../include/dbstructure.php:26
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
+msgstr "Notifications personnelles"
+
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
+msgstr "Aucune notification de la page d'accueil."
+
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
+msgstr "Notifications de page d'accueil"
+
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "La limite d'invitation totale est éxédée."
+
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Adresse de courriel invalide."
+
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Rejoignez-nous sur Friendica"
+
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
+
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : L'envoi du message a échoué."
+
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message envoyé."
+msgstr[1] "%d messages envoyés."
+
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Vous n'avez plus d'invitations disponibles"
+
+#: ../../mod/invite.php:120
 #, php-format
 msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr ""
+"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 "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/invite.php:122
 #, php-format
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Des erreurs ont été signalées lors de la création des tables."
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr ""
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Déconnecté."
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses email, une par ligne:"
+
+#: ../../mod/invite.php:135
 msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Le message d'erreur était :"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Vous devrez fournir ce code d'invitation: $invite_code"
+
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:"
+
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
+
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gérer les identités et/ou les pages"
+
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
+
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Choisir une identité à gérer: "
+
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
+
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amis de %s"
+
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Pas d'amis à afficher."
 
 #: ../../include/contact_widgets.php:6
 msgid "Add New Contact"
@@ -5702,458 +6005,241 @@ msgstr "Connecter/Suivre"
 msgid "Examples: Robert Morgenstein, Fishing"
 msgstr "Exemples: Robert Morgenstein, Pêche"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Intérêts similaires"
-
 #: ../../include/contact_widgets.php:37
 msgid "Random Profile"
 msgstr "Profil au hasard"
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Inviter des amis"
-
 #: ../../include/contact_widgets.php:71
 msgid "Networks"
 msgstr "Réseaux"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Tous réseaux"
-
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
-
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Tout"
-
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Catégories"
-
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Fonctions générales"
-
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Profils multiples"
-
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Possibilité de créer plusieurs profils"
-
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Caractéristiques de composition de publication"
-
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Éditeur de texte enrichi"
-
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Activer l'éditeur de texte enrichi"
-
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Aperçu de la publication"
-
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permet la prévisualisation des publications et commentaires avant de les publier"
-
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr ""
-
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr ""
-
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets réseau pour barre latérale"
-
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Rechercher par Date"
-
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Capacité de sélectionner les publications par intervalles de dates"
-
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Filtre de groupe"
-
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"
-
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Filtre de réseau"
-
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"
-
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
-
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Onglets Réseau"
-
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Onglet Réseau Personnel"
-
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"
-
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Nouvel onglet réseaux"
-
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
-
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Onglet réseau partagé"
-
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
-
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "outils de publication/commentaire"
-
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Suppression multiple"
-
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
-
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Éditer les publications envoyées"
-
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Éditer et corriger les publications et commentaires après l'envoi"
-
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Étiquettage"
-
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Possibilité d'étiqueter les publications existantes"
-
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Catégories des publications"
-
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Ajouter des catégories à vos publications"
-
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Possibilité d'afficher les publications sous les répertoires"
-
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Publications non aimées"
-
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Possibilité de ne pas aimer les publications/commentaires"
-
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Publications spéciales"
-
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Possibilité de marquer les publications spéciales d'une étoile"
-
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr ""
-
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr ""
-
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de connexion manquante."
-
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
-
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
-
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
-
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Aucune URL de navigation ne correspond à cette adresse."
-
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
-
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
-
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
-
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
-
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossible de récupérer les informations du contact."
-
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "following"
-
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
-
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Tous réseaux"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tout le monde"
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "éditer"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Tout"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editer groupe"
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Catégories"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Créer un nouveau groupe"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contacts n'appartenant à aucun groupe"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action dépasse les limites définies par votre abonnement."
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Divers"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas disponible avec votre abonnement."
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "an"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1063
+#: ../../include/api.php:1065
+msgid "User not found."
+msgstr "Utilisateur non trouvé"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "mois"
+#: ../../include/api.php:771
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée."
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "jour"
+#: ../../include/api.php:790
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "jamais"
+#: ../../include/api.php:809
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "il y a moins d'une seconde"
+#: ../../include/api.php:1272
+msgid "There is no status with this id."
+msgstr "Il n'y a pas de statut avec cet id."
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "ans"
+#: ../../include/api.php:1342
+msgid "There is no conversation with this id."
+msgstr "Il n'y a pas de conversation avec cet id."
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "mois"
+#: ../../include/api.php:1614
+msgid "Invalid request."
+msgstr ""
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "semaine"
+#: ../../include/api.php:1625
+msgid "Invalid item."
+msgstr ""
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "semaines"
+#: ../../include/api.php:1635
+msgid "Invalid action. "
+msgstr ""
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "jours"
+#: ../../include/api.php:1643
+msgid "DB error"
+msgstr ""
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "heure"
+#: ../../include/network.php:895
+msgid "view full size"
+msgstr "voir en pleine taille"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "heures"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:154
+msgid "Starts:"
+msgstr "Débute:"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minute"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:162
+msgid "Finishes:"
+msgstr "Finit:"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minutes"
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "seconde"
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
+msgid "(no subject)"
+msgstr "(sans titre)"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "secondes"
+#: ../../include/notifier.php:796 ../../include/enotify.php:33
+#: ../../include/delivery.php:467
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s auparavant"
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
 
-#: ../../include/datetime.php:477 ../../include/items.php:2195
-#, php-format
-msgid "%s's birthday"
-msgstr "Anniversaire de %s's"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "L'invitation fournie n'a pu être validée."
 
-#: ../../include/datetime.php:478 ../../include/items.php:2196
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Joyeux anniversaire, %s !"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Adresse OpenID invalide"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Visible par tout le monde"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "montrer"
+#: ../../include/user.php:67 ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Le message d'erreur était :"
 
-#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "cacher"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Entrez les informations requises."
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[pas de sujet]"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Utilisez un nom plus court."
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "retiré de la liste de suivi"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Nom trop court."
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Sollicitations (pokes)"
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Voir les statuts"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Voir le profil"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Ceci n'est pas une adresse courriel valide."
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Voir les photos"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Impossible d'utiliser ce courriel."
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Publications du réseau"
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Éditer le contact"
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Supprimer le contact"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Message privé"
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Bienvenue "
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Merci d'illustrer votre profil d'une image."
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bienvenue à nouveau, "
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Amis"
 
-#: ../../include/security.php:366
+#: ../../include/user.php:377
+#, php-format
 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 "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t"
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "évènement"
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s."
 
 #: ../../include/conversation.php:207
 #, php-format
 msgid "%1$s poked %2$s"
 msgstr "%1$s a sollicité %2$s"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1004
+#: ../../include/conversation.php:211 ../../include/text.php:1005
 msgid "poked"
 msgstr "a titillé"
 
@@ -6178,6 +6264,37 @@ msgstr "Supprimer les éléments sélectionnés"
 msgid "Follow Thread"
 msgstr "Suivre le fil"
 
+#: ../../include/conversation.php:876 ../../include/Contact.php:229
+msgid "View Status"
+msgstr "Voir les statuts"
+
+#: ../../include/conversation.php:877 ../../include/Contact.php:230
+msgid "View Profile"
+msgstr "Voir le profil"
+
+#: ../../include/conversation.php:878 ../../include/Contact.php:231
+msgid "View Photos"
+msgstr "Voir les photos"
+
+#: ../../include/conversation.php:879 ../../include/Contact.php:232
+#: ../../include/Contact.php:255
+msgid "Network Posts"
+msgstr "Publications du réseau"
+
+#: ../../include/conversation.php:880 ../../include/Contact.php:233
+#: ../../include/Contact.php:255
+msgid "Edit Contact"
+msgstr "Éditer le contact"
+
+#: ../../include/conversation.php:881 ../../include/Contact.php:235
+#: ../../include/Contact.php:255
+msgid "Send PM"
+msgstr "Message privé"
+
+#: ../../include/conversation.php:882 ../../include/Contact.php:228
+msgid "Poke"
+msgstr "Sollicitations (pokes)"
+
 #: ../../include/conversation.php:944
 #, php-format
 msgid "%s likes this."
@@ -6266,511 +6383,691 @@ msgstr "Publier aux contacts"
 msgid "Private post"
 msgstr "Message privé"
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "voir en pleine taille"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Déconnecté."
+
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
+
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
+
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erreur! Pseudo invalide"
+
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
+
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Erreur de création d'utilisateur"
+
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erreur de création du profil utilisateur"
+
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contacts non importés"
+msgstr[1] "%d contacts non importés"
+
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
 
-#: ../../include/text.php:296
+#: ../../include/text.php:297
 msgid "newer"
 msgstr "Plus récent"
 
-#: ../../include/text.php:298
+#: ../../include/text.php:299
 msgid "older"
 msgstr "Plus ancien"
 
-#: ../../include/text.php:303
+#: ../../include/text.php:304
 msgid "prev"
 msgstr "précédent"
 
-#: ../../include/text.php:305
+#: ../../include/text.php:306
 msgid "first"
 msgstr "premier"
 
-#: ../../include/text.php:337
+#: ../../include/text.php:338
 msgid "last"
 msgstr "dernier"
 
-#: ../../include/text.php:340
+#: ../../include/text.php:341
 msgid "next"
 msgstr "suivant"
 
-#: ../../include/text.php:854
+#: ../../include/text.php:855
 msgid "No contacts"
 msgstr "Aucun contact"
 
-#: ../../include/text.php:863
+#: ../../include/text.php:864
 #, php-format
 msgid "%d Contact"
 msgid_plural "%d Contacts"
 msgstr[0] "%d contact"
 msgstr[1] "%d contacts"
 
-#: ../../include/text.php:1004
+#: ../../include/text.php:1005
 msgid "poke"
 msgstr "titiller"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "ping"
 msgstr "attirer l'attention"
 
-#: ../../include/text.php:1005
+#: ../../include/text.php:1006
 msgid "pinged"
 msgstr "a attiré l'attention de"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prod"
 msgstr "aiguillonner"
 
-#: ../../include/text.php:1006
+#: ../../include/text.php:1007
 msgid "prodded"
 msgstr "a aiguillonné"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slap"
 msgstr "gifler"
 
-#: ../../include/text.php:1007
+#: ../../include/text.php:1008
 msgid "slapped"
 msgstr "a giflé"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "finger"
 msgstr "tripoter"
 
-#: ../../include/text.php:1008
+#: ../../include/text.php:1009
 msgid "fingered"
 msgstr "a tripoté"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuff"
 msgstr "rabrouer"
 
-#: ../../include/text.php:1009
+#: ../../include/text.php:1010
 msgid "rebuffed"
 msgstr "a rabroué"
 
-#: ../../include/text.php:1023
+#: ../../include/text.php:1024
 msgid "happy"
 msgstr "heureuse"
 
-#: ../../include/text.php:1024
+#: ../../include/text.php:1025
 msgid "sad"
 msgstr "triste"
 
-#: ../../include/text.php:1025
+#: ../../include/text.php:1026
 msgid "mellow"
 msgstr "suave"
 
-#: ../../include/text.php:1026
+#: ../../include/text.php:1027
 msgid "tired"
 msgstr "fatiguée"
 
-#: ../../include/text.php:1027
+#: ../../include/text.php:1028
 msgid "perky"
 msgstr "guillerette"
 
-#: ../../include/text.php:1028
+#: ../../include/text.php:1029
 msgid "angry"
 msgstr "colérique"
 
-#: ../../include/text.php:1029
+#: ../../include/text.php:1030
 msgid "stupified"
 msgstr "stupéfaite"
 
-#: ../../include/text.php:1030
+#: ../../include/text.php:1031
 msgid "puzzled"
 msgstr "perplexe"
 
-#: ../../include/text.php:1031
+#: ../../include/text.php:1032
 msgid "interested"
 msgstr "intéressée"
 
-#: ../../include/text.php:1032
+#: ../../include/text.php:1033
 msgid "bitter"
 msgstr "amère"
 
-#: ../../include/text.php:1033
+#: ../../include/text.php:1034
 msgid "cheerful"
 msgstr "entraînante"
 
-#: ../../include/text.php:1034
+#: ../../include/text.php:1035
 msgid "alive"
 msgstr "vivante"
 
-#: ../../include/text.php:1035
+#: ../../include/text.php:1036
 msgid "annoyed"
 msgstr "ennuyée"
 
-#: ../../include/text.php:1036
+#: ../../include/text.php:1037
 msgid "anxious"
 msgstr "anxieuse"
 
-#: ../../include/text.php:1037
+#: ../../include/text.php:1038
 msgid "cranky"
 msgstr "excentrique"
 
-#: ../../include/text.php:1038
+#: ../../include/text.php:1039
 msgid "disturbed"
 msgstr "dérangée"
 
-#: ../../include/text.php:1039
+#: ../../include/text.php:1040
 msgid "frustrated"
 msgstr "frustrée"
 
-#: ../../include/text.php:1040
+#: ../../include/text.php:1041
 msgid "motivated"
 msgstr "motivée"
 
-#: ../../include/text.php:1041
+#: ../../include/text.php:1042
 msgid "relaxed"
 msgstr "détendue"
 
-#: ../../include/text.php:1042
+#: ../../include/text.php:1043
 msgid "surprised"
 msgstr "surprise"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Monday"
 msgstr "Lundi"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Tuesday"
 msgstr "Mardi"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Wednesday"
 msgstr "Mercredi"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Thursday"
 msgstr "Jeudi"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Friday"
 msgstr "Vendredi"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Saturday"
 msgstr "Samedi"
 
-#: ../../include/text.php:1210
+#: ../../include/text.php:1213
 msgid "Sunday"
 msgstr "Dimanche"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "January"
 msgstr "Janvier"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "February"
 msgstr "Février"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "March"
 msgstr "Mars"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "April"
 msgstr "Avril"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "May"
 msgstr "Mai"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "June"
 msgstr "Juin"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "July"
 msgstr "Juillet"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "August"
 msgstr "Août"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "September"
 msgstr "Septembre"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "October"
 msgstr "Octobre"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "November"
 msgstr "Novembre"
 
-#: ../../include/text.php:1214
+#: ../../include/text.php:1217
 msgid "December"
 msgstr "Décembre"
 
-#: ../../include/text.php:1434
+#: ../../include/text.php:1437
 msgid "bytes"
 msgstr "octets"
 
-#: ../../include/text.php:1458 ../../include/text.php:1470
+#: ../../include/text.php:1461 ../../include/text.php:1473
 msgid "Click to open/close"
 msgstr "Cliquer pour ouvrir/fermer"
 
-#: ../../include/text.php:1699 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "défaut"
-
-#: ../../include/text.php:1711
+#: ../../include/text.php:1714
 msgid "Select an alternate language"
 msgstr "Choisir une langue alternative"
 
-#: ../../include/text.php:1967
-msgid "activity"
-msgstr "activité"
+#: ../../include/text.php:1970
+msgid "activity"
+msgstr "activité"
+
+#: ../../include/text.php:1973
+msgid "post"
+msgstr "publication"
+
+#: ../../include/text.php:2141
+msgid "Item filed"
+msgstr "Élément classé"
+
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Notification Friendica"
+
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Merci, "
+
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "L'administrateur de %s"
+
+#: ../../include/enotify.php:64
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
+
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
+
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
+
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %2$s."
+
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "un message privé"
+
+#: ../../include/enotify.php:72
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
+
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
+
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
+
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
+
+#: ../../include/enotify.php:149
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
+
+#: ../../include/enotify.php:150
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s a commenté un élément que vous suivez."
+
+#: ../../include/enotify.php:153 ../../include/enotify.php:168
+#: ../../include/enotify.php:181 ../../include/enotify.php:194
+#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
+
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
+
+#: ../../include/enotify.php:162
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s a publié sur votre mur à %2$s"
+
+#: ../../include/enotify.php:164
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
+
+#: ../../include/enotify.php:175
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notification] %s vous a étiqueté"
+
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s vous a étiqueté sur %2$s"
+
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
+
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notification] %s partage une nouvelle publication"
+
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s a partagé une nouvelle publication sur %2$s"
+
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]partage une publication[/url]."
+
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s vous a sollicité"
+
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s vous a sollicité via %2$s"
 
-#: ../../include/text.php:1970
-msgid "post"
-msgstr "publication"
+#: ../../include/enotify.php:204
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
 
-#: ../../include/text.php:2138
-msgid "Item filed"
-msgstr "Élément classé"
+#: ../../include/enotify.php:219
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notification] %s a étiqueté votre publication"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
-#: ../../include/bbcode.php:1028
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../include/enotify.php:220
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s a étiqueté votre publication sur %2$s"
 
-#: ../../include/bbcode.php:528
+#: ../../include/enotify.php:221
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr ""
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
 
-#: ../../include/bbcode.php:562
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notification] Introduction reçue"
+
+#: ../../include/enotify.php:233
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr ""
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
 
-#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
-msgid "$1 wrote:"
-msgstr "$1 a écrit:"
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
 
-#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter son profil sur %s"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(sans titre)"
+#: ../../include/enotify.php:239
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:31
-msgid "noreply"
-msgstr "noreply"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr ""
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
+msgid "%1$s is sharing with you at %2$s"
+msgstr ""
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Inconnu | Non-classé"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr ""
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquer immédiatement"
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr ""
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Douteux, spammeur, accro à l'auto-promotion"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Connu de moi, mais sans opinion"
+#: ../../include/enotify.php:271
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probablement inoffensif"
+#: ../../include/enotify.php:272
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Réputé, a toute ma confiance"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Nom :"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Chaque semaine"
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Photo :"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Chaque mois"
+#: ../../include/enotify.php:281
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr ""
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr ""
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr ""
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr ""
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr ""
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../include/enotify.php:307
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr ""
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../include/enotify.php:309
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr ""
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr ""
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Connecteur Diaspora"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s."
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../include/enotify.php:327
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
 
-#: ../../include/Scrape.php:593
+#: ../../include/Scrape.php:614
 msgid " on Last.fm"
 msgstr "sur Last.fm"
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Débute:"
-
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Finit:"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Tout le monde"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Anniversaire:"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "éditer"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Age:"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editer groupe"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Créer un nouveau groupe"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Étiquette:"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contacts n'appartenant à aucun groupe"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de connexion manquante."
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passe-temps/Centres d'intérêt:"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées/Réseaux sociaux:"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Goûts musicaux:"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Lectures:"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Télévision:"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Aucune URL de navigation ne correspond à cette adresse."
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/Danse/Culture/Divertissement:"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amour/Romance:"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Activité professionnelle/Occupation:"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Études/Formation:"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Impossible de récupérer les informations du contact."
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Cette action dépasse les limites définies par votre abonnement."
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "following"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Cette action n'est pas disponible avec votre abonnement."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[pas de sujet]"
 
 #: ../../include/nav.php:73
 msgid "End this session"
 msgstr "Mettre fin à cette session"
 
-#: ../../include/nav.php:76 ../../include/nav.php:146
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Vos publications et conversations"
-
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Votre page de profil"
-
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Vos photos"
-
 #: ../../include/nav.php:79
 msgid "Your videos"
 msgstr "Vos vidéos"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Vos événements"
-
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Notes personnelles"
-
 #: ../../include/nav.php:81
 msgid "Your personal notes"
 msgstr "Vos notes personnelles"
@@ -6891,919 +7188,727 @@ msgstr "Navigation"
 msgid "Site map"
 msgstr "Carte du site"
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1062
-#: ../../include/api.php:1064
-msgid "User not found."
-msgstr "Utilisateur non trouvé"
-
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: ../../include/api.php:1271
-msgid "There is no status with this id."
-msgstr "Il n'y a pas de statut avec cet id."
-
-#: ../../include/api.php:1341
-msgid "There is no conversation with this id."
-msgstr "Il n'y a pas de conversation avec cet id."
-
-#: ../../include/api.php:1613
-msgid "Invalid request."
-msgstr ""
-
-#: ../../include/api.php:1624
-msgid "Invalid item."
-msgstr ""
-
-#: ../../include/api.php:1634
-msgid "Invalid action. "
-msgstr ""
-
-#: ../../include/api.php:1642
-msgid "DB error"
-msgstr ""
-
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "L'invitation fournie n'a pu être validée."
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Adresse OpenID invalide"
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Entrez les informations requises."
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Utilisez un nom plus court."
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Nom trop court."
-
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
-
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
-
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Ceci n'est pas une adresse courriel valide."
-
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Impossible d'utiliser ce courriel."
-
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
-
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
-
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
-
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
-
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Amis"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Anniversaire:"
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr ""
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Age:"
 
-#: ../../include/user.php:381
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr ""
-
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Notification de partage du réseau Diaspora"
-
-#: ../../include/diaspora.php:2332
-msgid "Attachments:"
-msgstr "Pièces jointes : "
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
 
-#: ../../include/items.php:4526
-msgid "Do you really want to delete this item?"
-msgstr "Voulez-vous vraiment supprimer cet élément ?"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Étiquette:"
 
-#: ../../include/items.php:4749
-msgid "Archives"
-msgstr "Archives"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculin"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passe-temps/Centres d'intérêt:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Féminin"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées/Réseaux sociaux:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Actuellement masculin"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Goûts musicaux:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Actuellement féminin"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Lectures:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Principalement masculin"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Télévision:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Principalement féminin"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/Danse/Culture/Divertissement:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgenre"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amour/Romance:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Inter-sexe"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Activité professionnelle/Occupation:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuel"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Études/Formation:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodite"
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
+#: ../../include/bbcode.php:1048
+msgid "Image/photo"
+msgstr "Image/photo"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutre"
+#: ../../include/bbcode.php:528
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non-spécifique"
+#: ../../include/bbcode.php:562
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Autre"
+#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
+msgid "$1 wrote:"
+msgstr "$1 a écrit:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indécis"
+#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Hommes"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Inconnu | Non-classé"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmes"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquer immédiatement"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Douteux, spammeur, accro à l'auto-promotion"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbienne"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Connu de moi, mais sans opinion"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sans préférence"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probablement inoffensif"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuel"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Réputé, a toute ma confiance"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Auto-sexuel"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Chaque semaine"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Chaque mois"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vierge"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Déviant"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fétichiste"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Non-sexuel"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Célibataire"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Esseulé"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponible"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Indisponible"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Attiré par quelqu'un"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Connecteur Diaspora"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Entiché"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dans une relation"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infidèle"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Divers"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Accro au sexe"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "an"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amis par intérêt"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "mois"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "jour"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Fiancé"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "jamais"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Marié"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "il y a moins d'une seconde"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Se croit marié"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "ans"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partenaire"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "mois"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "En cohabitation"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "semaine"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "semaines"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Heureux"
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "jours"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Pas intéressé"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "heure"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Échangiste"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "heures"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Trahi(e)"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minute"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Séparé"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minutes"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instable"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "seconde"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorcé"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "secondes"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Se croit divorcé"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s auparavant"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Veuf/Veuve"
+#: ../../include/datetime.php:477 ../../include/items.php:2204
+#, php-format
+msgid "%s's birthday"
+msgstr "Anniversaire de %s's"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incertain"
+#: ../../include/datetime.php:478 ../../include/items.php:2205
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Joyeux anniversaire, %s !"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "C'est compliqué"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Fonctions générales"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "S'en désintéresse"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Me demander"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Notification Friendica"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Caractéristiques de composition de publication"
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Merci, "
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Éditeur de texte enrichi"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "L'administrateur de %s"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Activer l'éditeur de texte enrichi"
 
-#: ../../include/enotify.php:61
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Aperçu de la publication"
 
-#: ../../include/enotify.php:65
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permet la prévisualisation des publications et commentaires avant de les publier"
 
-#: ../../include/enotify.php:67
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s vous a envoyé %2$s."
+#: ../../include/features.php:33
+msgid ""
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr ""
 
-#: ../../include/enotify.php:68
-msgid "a private message"
-msgstr "un message privé"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets réseau pour barre latérale"
 
-#: ../../include/enotify.php:69
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Rechercher par Date"
 
-#: ../../include/enotify.php:121
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Capacité de sélectionner les publications par intervalles de dates"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtre de groupe"
 
-#: ../../include/enotify.php:136
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"
 
-#: ../../include/enotify.php:146
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtre de réseau"
 
-#: ../../include/enotify.php:147
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s a commenté un élément que vous suivez."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"
 
-#: ../../include/enotify.php:150 ../../include/enotify.php:165
-#: ../../include/enotify.php:178 ../../include/enotify.php:191
-#: ../../include/enotify.php:209 ../../include/enotify.php:222
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Onglets Réseau"
 
-#: ../../include/enotify.php:159
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s a publié sur votre mur à %2$s"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Onglet Réseau Personnel"
 
-#: ../../include/enotify.php:161
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notification] %s vous a étiqueté"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nouvel onglet réseaux"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s vous a étiqueté sur %2$s"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Onglet réseau partagé"
 
-#: ../../include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notification] %s partage une nouvelle publication"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr ""
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "outils de publication/commentaire"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]partage une publication[/url]."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Suppression multiple"
 
-#: ../../include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s vous a sollicité"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s vous a sollicité via %2$s"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Éditer les publications envoyées"
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Éditer et corriger les publications et commentaires après l'envoi"
 
-#: ../../include/enotify.php:216
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notification] %s a étiqueté votre publication"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Étiquettage"
 
-#: ../../include/enotify.php:217
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s a étiqueté votre publication sur %2$s"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Possibilité d'étiqueter les publications existantes"
 
-#: ../../include/enotify.php:218
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Catégories des publications"
 
-#: ../../include/enotify.php:229
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notification] Introduction reçue"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
 
-#: ../../include/enotify.php:230
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Possibilité d'afficher les publications sous les répertoires"
 
-#: ../../include/enotify.php:231
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Publications non aimées"
 
-#: ../../include/enotify.php:234 ../../include/enotify.php:276
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Vous pouvez visiter son profil sur %s"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Possibilité de ne pas aimer les publications/commentaires"
 
-#: ../../include/enotify.php:236
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Publications spéciales"
 
-#: ../../include/enotify.php:244
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr ""
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Possibilité de marquer les publications spéciales d'une étoile"
 
-#: ../../include/enotify.php:245 ../../include/enotify.php:246
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
 msgstr ""
 
-#: ../../include/enotify.php:252
-msgid "[Friendica:Notify] You have a new follower"
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
 msgstr ""
 
-#: ../../include/enotify.php:253 ../../include/enotify.php:254
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr ""
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Notification de partage du réseau Diaspora"
 
-#: ../../include/enotify.php:267
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
+#: ../../include/diaspora.php:2520
+msgid "Attachments:"
+msgstr "Pièces jointes : "
 
-#: ../../include/enotify.php:268
+#: ../../include/dbstructure.php:26
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
+msgid ""
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."
 
-#: ../../include/enotify.php:269
+#: ../../include/dbstructure.php:31
 #, php-format
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Le message d’erreur est\n[pre]%s[/pre]"
 
-#: ../../include/enotify.php:274
-msgid "Name:"
-msgstr "Nom :"
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
+msgstr "Des erreurs ont été signalées lors de la création des tables."
 
-#: ../../include/enotify.php:275
-msgid "Photo:"
-msgstr "Photo :"
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
+msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données."
 
-#: ../../include/enotify.php:278
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Visible par tout le monde"
 
-#: ../../include/enotify.php:286 ../../include/enotify.php:299
-msgid "[Friendica:Notify] Connection accepted"
-msgstr ""
+#: ../../include/items.php:4539
+msgid "Do you really want to delete this item?"
+msgstr "Voulez-vous vraiment supprimer cet élément ?"
 
-#: ../../include/enotify.php:287 ../../include/enotify.php:300
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr ""
+#: ../../include/items.php:4762
+msgid "Archives"
+msgstr "Archives"
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:301
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr ""
+#: ../../include/oembed.php:212
+msgid "Embedded content"
+msgstr "Contenu incorporé"
 
-#: ../../include/enotify.php:291
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr ""
+#: ../../include/oembed.php:221
+msgid "Embedding disabled"
+msgstr "Incorporation désactivée"
 
-#: ../../include/enotify.php:294 ../../include/enotify.php:308
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr ""
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bienvenue "
 
-#: ../../include/enotify.php:304
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr ""
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Merci d'illustrer votre profil d'une image."
 
-#: ../../include/enotify.php:306
-#, php-format
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bienvenue à nouveau, "
+
+#: ../../include/security.php:366
 msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr ""
+"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 "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
 
-#: ../../include/enotify.php:319
-msgid "[Friendica System:Notify] registration request"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculin"
 
-#: ../../include/enotify.php:320
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Féminin"
 
-#: ../../include/enotify.php:321
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Actuellement masculin"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Actuellement féminin"
 
-#: ../../include/enotify.php:327
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Principalement masculin"
 
-#: ../../include/oembed.php:210
-msgid "Embedded content"
-msgstr "Contenu incorporé"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Principalement féminin"
 
-#: ../../include/oembed.php:219
-msgid "Embedding disabled"
-msgstr "Incorporation désactivée"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgenre"
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Inter-sexe"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuel"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erreur! Pseudo invalide"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodite"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutre"
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erreur de création d'utilisateur"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non-spécifique"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erreur de création du profil utilisateur"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Autre"
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contacts non importés"
-msgstr[1] "%d contacts non importés"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indécis"
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Hommes"
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "activ. mobile"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmes"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Réglages du thème graphique"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
+
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbienne"
+
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sans préférence"
+
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuel"
+
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Auto-sexuel"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vierge"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Largeur du thème"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Déviant"
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Palette de couleurs"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fétichiste"
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Choisir le schéma de couleurs"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Non-sexuel"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alignement"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Célibataire"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Gauche"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Esseulé"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centre"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponible"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Taille de texte des publications"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Indisponible"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Taille de police des zones de texte"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Attiré par quelqu'un"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Réglez la résolution de la colonne centrale"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Entiché"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Choisir le schéma de couleurs"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dans une relation"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Niveau de zoom"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infidèle"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Régler la longitude (X) pour la géolocalisation"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Accro au sexe"
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Régler la latitude (Y) pour la géolocalisation"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amis par intérêt"
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
-msgstr "Pages de Communauté"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Géolocalisation"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Fiancé"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Profils communautaires"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Marié"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Aide ou @NewHere?"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Se croit marié"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Connecter des services"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partenaire"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Trouver des amis"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "En cohabitation"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Derniers utilisateurs"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Dernières photos"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Heureux"
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Dernièrement aimé"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Pas intéressé"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Vos contacts"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Échangiste"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Vos photos personnelles"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Trahi(e)"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Annuaire local"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Séparé"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Régler le niveau de zoom pour la géolocalisation"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instable"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Montrer/cacher les boîtes dans la colonne de droite :"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorcé"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "Définir le style"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Se croit divorcé"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Veuf/Veuve"
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incertain"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "C'est compliqué"
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "S'en désintéresse"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Me demander"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "retiré de la liste de suivi"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr ""
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Supprimer le contact"
index a7cd0d1d868a661721e6af72057f85f82448d285..00f09c482686c186855abda936c5517bc94b6a36 100644 (file)
@@ -5,209 +5,226 @@ function string_plural_select_fr($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d contact édité",
-       1 => "%d contacts édités.",
+$a->strings["This entry was edited"] = "Cette entrée à été édité";
+$a->strings["Private Message"] = "Message privé";
+$a->strings["Edit"] = "Éditer";
+$a->strings["Select"] = "Sélectionner";
+$a->strings["Delete"] = "Supprimer";
+$a->strings["save to folder"] = "sauver vers dossier";
+$a->strings["add star"] = "mett en avant";
+$a->strings["remove star"] = "ne plus mettre en avant";
+$a->strings["toggle star status"] = "mettre en avant";
+$a->strings["starred"] = "mis en avant";
+$a->strings["ignore thread"] = "ignorer le fil";
+$a->strings["unignore thread"] = "Ne plus ignorer le fil";
+$a->strings["toggle ignore status"] = "Ignorer le statut";
+$a->strings["ignored"] = "ignoré";
+$a->strings["add tag"] = "ajouter une étiquette";
+$a->strings["I like this (toggle)"] = "J'aime (bascule)";
+$a->strings["like"] = "aime";
+$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
+$a->strings["dislike"] = "n'aime pas";
+$a->strings["Share this"] = "Partager";
+$a->strings["share"] = "partager";
+$a->strings["Categories:"] = "Catégories:";
+$a->strings["Filed under:"] = "Rangé sous:";
+$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
+$a->strings["to"] = "à";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Inter-mur";
+$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
+$a->strings["%s from %s"] = "%s de %s";
+$a->strings["Comment"] = "Commenter";
+$a->strings["Please wait"] = "Patientez";
+$a->strings["%d comment"] = array(
+       0 => "%d commentaire",
+       1 => "%d commentaires",
 );
-$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
-$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
-$a->strings["Contact updated."] = "Contact mis-à-jour.";
-$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact.";
-$a->strings["Permission denied."] = "Permission refusée.";
-$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
-$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
-$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
-$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
-$a->strings["Contact has been archived"] = "Contact archivé";
-$a->strings["Contact has been unarchived"] = "Contact désarchivé";
-$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
-$a->strings["Yes"] = "Oui";
-$a->strings["Cancel"] = "Annuler";
-$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
-$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
-$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
-$a->strings["%s is sharing with you"] = "%s partage avec vous";
-$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
-$a->strings["Never"] = "Jamais";
-$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
-$a->strings["(Update was not successful)"] = "(Mise à jour échouée)";
-$a->strings["Suggest friends"] = "Suggérer amitié/contact";
-$a->strings["Network type: %s"] = "Type de réseau %s";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contact en commun",
-       1 => "%d contacts en commun",
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "commentaire",
 );
-$a->strings["View all contacts"] = "Voir tous les contacts";
-$a->strings["Unblock"] = "Débloquer";
-$a->strings["Block"] = "Bloquer";
-$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
-$a->strings["Unignore"] = "Ne plus ignorer";
-$a->strings["Ignore"] = "Ignorer";
-$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
-$a->strings["Unarchive"] = "Désarchiver";
-$a->strings["Archive"] = "Archiver";
-$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
-$a->strings["Repair"] = "Réparer";
-$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
-$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
-$a->strings["Contact Editor"] = "Éditeur de contact";
+$a->strings["show more"] = "montrer plus";
+$a->strings["This is you"] = "C'est vous";
 $a->strings["Submit"] = "Envoyer";
-$a->strings["Profile Visibility"] = "Visibilité du profil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
-$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
-$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
-$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
-$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
-$a->strings["Ignore contact"] = "Ignorer ce contact";
-$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
-$a->strings["View conversations"] = "Voir les conversations";
-$a->strings["Delete contact"] = "Effacer ce contact";
-$a->strings["Last update:"] = "Dernière mise-à-jour :";
-$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
-$a->strings["Update now"] = "Mettre à jour";
-$a->strings["Currently blocked"] = "Actuellement bloqué";
-$a->strings["Currently ignored"] = "Actuellement ignoré";
-$a->strings["Currently archived"] = "Actuellement archivé";
-$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
-$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
-$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
-$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
-$a->strings["Disabled"] = "Désactivé";
-$a->strings["Fetch information"] = "";
-$a->strings["Fetch information and keywords"] = "";
-$a->strings["Blacklisted keywords"] = "";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "";
-$a->strings["Suggestions"] = "Suggestions";
-$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
-$a->strings["All Contacts"] = "Tous les contacts";
-$a->strings["Show all contacts"] = "Montrer tous les contacts";
-$a->strings["Unblocked"] = "Non-bloqués";
-$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
-$a->strings["Blocked"] = "Bloqués";
-$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
-$a->strings["Ignored"] = "Ignorés";
-$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
-$a->strings["Archived"] = "Archivés";
-$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
-$a->strings["Hidden"] = "Cachés";
-$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
-$a->strings["Mutual Friendship"] = "Relation réciproque";
-$a->strings["is a fan of yours"] = "Vous suit";
-$a->strings["you are a fan of"] = "Vous le/la suivez";
-$a->strings["Edit contact"] = "Éditer le contact";
-$a->strings["Contacts"] = "Contacts";
-$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
-$a->strings["Finding: "] = "Trouvé: ";
-$a->strings["Find"] = "Trouver";
-$a->strings["Update"] = "Mises-à-jour";
-$a->strings["Delete"] = "Supprimer";
-$a->strings["No profile"] = "Aucun profil";
-$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
-$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
-$a->strings["Post successful."] = "Publication réussie.";
+$a->strings["Bold"] = "Gras";
+$a->strings["Italic"] = "Italique";
+$a->strings["Underline"] = "Souligné";
+$a->strings["Quote"] = "Citation";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Image";
+$a->strings["Link"] = "Lien";
+$a->strings["Video"] = "Vidéo";
+$a->strings["Preview"] = "Aperçu";
+$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
+$a->strings["Not Found"] = "Non trouvé";
+$a->strings["Page not found."] = "Page introuvable.";
 $a->strings["Permission denied"] = "Permission refusée";
-$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
+$a->strings["Permission denied."] = "Permission refusée.";
+$a->strings["toggle mobile"] = "activ. mobile";
+$a->strings["Home"] = "Profil";
+$a->strings["Your posts and conversations"] = "Vos publications et conversations";
 $a->strings["Profile"] = "Profil";
-$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
-$a->strings["Visible To"] = "Visible par";
-$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
-$a->strings["Item not found."] = "Élément introuvable.";
-$a->strings["Public access denied."] = "Accès public refusé.";
-$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
-$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
-$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
-$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
-$a->strings["Getting Started"] = "Bien démarrer";
-$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
-$a->strings["Settings"] = "Réglages";
-$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
-$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
-$a->strings["Edit Your Profile"] = "Éditer votre Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
-$a->strings["Profile Keywords"] = "Mots-clés du profil";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
-$a->strings["Connecting"] = "Connexions";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre.";
-$a->strings["Importing Emails"] = "Importer courriels";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
-$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
-$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
-$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
-$a->strings["Groups"] = "Groupes";
-$a->strings["Group Your Contacts"] = "Grouper vos contacts";
-$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."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
-$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
-$a->strings["Getting Help"] = "Obtenir de l'aide";
-$a->strings["Go to the Help Section"] = "Aller à la section Aide";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
-$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
-$a->strings["Login failed."] = "Échec de connexion.";
-$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
-$a->strings["Profile Photos"] = "Photos du profil";
-$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
-$a->strings["Unable to process image"] = "Impossible de traiter l'image";
-$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
-$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
-$a->strings["Upload File:"] = "Fichier à téléverser:";
-$a->strings["Select a profile:"] = "Choisir un profil:";
-$a->strings["Upload"] = "Téléverser";
-$a->strings["or"] = "ou";
-$a->strings["skip this step"] = "ignorer cette étape";
-$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
-$a->strings["Crop Image"] = "(Re)cadrer l'image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
-$a->strings["Done Editing"] = "Édition terminée";
-$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
-$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
-$a->strings["photo"] = "photo";
+$a->strings["Your profile page"] = "Votre page de profil";
+$a->strings["Photos"] = "Photos";
+$a->strings["Your photos"] = "Vos photos";
+$a->strings["Events"] = "Événements";
+$a->strings["Your events"] = "Vos événements";
+$a->strings["Personal notes"] = "Notes personnelles";
+$a->strings["Your personal photos"] = "Vos photos personnelles";
+$a->strings["Community"] = "Communauté";
+$a->strings["don't show"] = "cacher";
+$a->strings["show"] = "montrer";
+$a->strings["Theme settings"] = "Réglages du thème graphique";
+$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires";
+$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires";
+$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale";
+$a->strings["Contacts"] = "Contacts";
+$a->strings["Your contacts"] = "Vos contacts";
+$a->strings["Community Pages"] = "Pages de Communauté";
+$a->strings["Community Profiles"] = "Profils communautaires";
+$a->strings["Last users"] = "Derniers utilisateurs";
+$a->strings["Last likes"] = "Dernièrement aimé";
+$a->strings["event"] = "évènement";
 $a->strings["status"] = "le statut";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
-$a->strings["Tag removed"] = "Étiquette supprimée";
-$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
-$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: ";
-$a->strings["Remove"] = "Utiliser comme photo de profil";
-$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
-$a->strings["- select -"] = "- choisir -";
-$a->strings["Save"] = "Sauver";
-$a->strings["Contact added"] = "Contact ajouté";
-$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale.";
-$a->strings["Empty post discarded."] = "Publication vide rejetée.";
-$a->strings["Wall Photos"] = "Photos du mur";
-$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica.";
-$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
-$a->strings["%s posted an update."] = "%s a publié une mise à jour.";
-$a->strings["Group created."] = "Groupe créé.";
-$a->strings["Could not create group."] = "Impossible de créer le groupe.";
-$a->strings["Group not found."] = "Groupe introuvable.";
-$a->strings["Group name changed."] = "Groupe renommé.";
-$a->strings["Save Group"] = "Sauvegarder le groupe";
-$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
-$a->strings["Group Name: "] = "Nom du groupe: ";
-$a->strings["Group removed."] = "Groupe enlevé.";
-$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
-$a->strings["Group Editor"] = "Éditeur de groupe";
-$a->strings["Members"] = "Membres";
-$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "Pas d'application installée.";
+$a->strings["photo"] = "photo";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
+$a->strings["Last photos"] = "Dernières photos";
+$a->strings["Contact Photos"] = "Photos du contact";
+$a->strings["Profile Photos"] = "Photos du profil";
+$a->strings["Find Friends"] = "Trouver des amis";
+$a->strings["Local Directory"] = "Annuaire local";
+$a->strings["Global Directory"] = "Annuaire global";
+$a->strings["Similar Interests"] = "Intérêts similaires";
+$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
+$a->strings["Invite Friends"] = "Inviter des amis";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Earth Layers"] = "Géolocalisation";
+$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation";
+$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation";
+$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?";
+$a->strings["Connect Services"] = "Connecter des services";
+$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :";
+$a->strings["Set color scheme"] = "Choisir le schéma de couleurs";
+$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom";
+$a->strings["Alignment"] = "Alignement";
+$a->strings["Left"] = "Gauche";
+$a->strings["Center"] = "Centre";
+$a->strings["Color scheme"] = "Palette de couleurs";
+$a->strings["Posts font size"] = "Taille de texte des publications";
+$a->strings["Textareas font size"] = "Taille de police des zones de texte";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)";
+$a->strings["Set theme width"] = "Largeur du thème";
+$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
+$a->strings["default"] = "défaut";
+$a->strings["Midnight"] = "";
+$a->strings["Bootstrap"] = "";
+$a->strings["Shades of Pink"] = "";
+$a->strings["Lime and Orange"] = "";
+$a->strings["GeoCities Retro"] = "";
+$a->strings["Background Image"] = "";
+$a->strings["The URL to a picture (e.g. from your photo album) that should be used as background image."] = "";
+$a->strings["Background Color"] = "";
+$a->strings["HEX value for the background color. Don't include the #"] = "";
+$a->strings["font size"] = "";
+$a->strings["base font size for your interface"] = "";
+$a->strings["greenzero"] = "";
+$a->strings["purplezero"] = "";
+$a->strings["easterbunny"] = "";
+$a->strings["darkzero"] = "";
+$a->strings["comix"] = "";
+$a->strings["slackr"] = "";
+$a->strings["Variations"] = "";
+$a->strings["Set style"] = "Définir le style";
+$a->strings["Delete this item?"] = "Effacer cet élément?";
+$a->strings["show fewer"] = "montrer moins";
+$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
+$a->strings["Create a New Account"] = "Créer un nouveau compte";
+$a->strings["Register"] = "S'inscrire";
+$a->strings["Logout"] = "Se déconnecter";
+$a->strings["Login"] = "Connexion";
+$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: ";
+$a->strings["Password: "] = "Mot de passe: ";
+$a->strings["Remember me"] = "Se souvenir de moi";
+$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: ";
+$a->strings["Forgot your password?"] = "Mot de passe oublié?";
+$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
+$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet";
+$a->strings["terms of service"] = "conditions d'utilisation";
+$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet";
+$a->strings["privacy policy"] = "politique de confidentialité";
+$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
+$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
+$a->strings["Edit profile"] = "Editer le profil";
+$a->strings["Connect"] = "Relier";
+$a->strings["Message"] = "Message";
+$a->strings["Profiles"] = "Profils";
+$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
+$a->strings["Change profile photo"] = "Changer de photo de profil";
+$a->strings["Create New Profile"] = "Créer un nouveau profil";
+$a->strings["Profile Image"] = "Image du profil";
+$a->strings["visible to everybody"] = "visible par tous";
+$a->strings["Edit visibility"] = "Changer la visibilité";
+$a->strings["Location:"] = "Localisation:";
+$a->strings["Gender:"] = "Genre:";
+$a->strings["Status:"] = "Statut:";
+$a->strings["Homepage:"] = "Page personnelle:";
+$a->strings["About:"] = "À propos:";
+$a->strings["Network:"] = "Réseau";
+$a->strings["g A l F d"] = "g A | F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[aujourd'hui]";
+$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
+$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:";
+$a->strings["[No description]"] = "[Sans description]";
+$a->strings["Event Reminders"] = "Rappels d'événements";
+$a->strings["Events this week:"] = "Evénements cette semaine:";
+$a->strings["Status"] = "Statut";
+$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
+$a->strings["Profile Details"] = "Détails du profil";
+$a->strings["Photo Albums"] = "Albums photo";
+$a->strings["Videos"] = "Vidéos";
+$a->strings["Events and Calendar"] = "Événements et agenda";
+$a->strings["Personal Notes"] = "Notes personnelles";
+$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s";
+$a->strings["Mood"] = "Humeur";
+$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis";
+$a->strings["Item not found."] = "Élément introuvable.";
+$a->strings["Public access denied."] = "Accès public refusé.";
+$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
+$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
+$a->strings["Access denied."] = "Accès refusé.";
+$a->strings["The post was created"] = "";
+$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
+$a->strings["running at web location"] = "hébergé sur";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
+$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:";
+$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté.";
+$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
+$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
+$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
+$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
+$a->strings["Yes"] = "Oui";
+$a->strings["No"] = "Non";
+$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
+$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
+$a->strings["Registration"] = "Inscription";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
+$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
+$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
+$a->strings["Import"] = "Importer";
+$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
 $a->strings["Profile not found."] = "Profil introuvable.";
 $a->strings["Contact not found."] = "Contact introuvable.";
 $a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé.";
@@ -229,164 +246,171 @@ $a->strings["Unable to set your contact credentials on our system."] = "Impossib
 $a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
 $a->strings["[Name Withheld]"] = "[Nom non-publié]";
 $a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
-$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
-$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
-$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
-$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
-$a->strings["View Video"] = "Regarder la vidéo";
-$a->strings["View Album"] = "Voir l'album";
-$a->strings["Recent Videos"] = "Vidéos récente";
-$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s";
-$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
-$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
-$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
+$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
+$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
+$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
 $a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
 $a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\t%3\$s";
 $a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
 $a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
-$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
 $a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
 $a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
 $a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
 $a->strings["click here to login"] = "cliquez ici pour vous connecter";
 $a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t";
 $a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
 $a->strings["Forgot your Password?"] = "Mot de passe oublié?";
 $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
 $a->strings["Nickname or Email: "] = "Pseudo ou Courriel: ";
 $a->strings["Reset"] = "Réinitialiser";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
-$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
-$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
-$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
-$a->strings["{0} commented %s's post"] = "{0} a commenté la publication de %s";
-$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s";
-$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s";
-$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
-$a->strings["{0} posted"] = "{0} a publié";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication";
-$a->strings["No contacts."] = "Aucun contact.";
-$a->strings["View Contacts"] = "Voir les contacts";
-$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
-$a->strings["Discard"] = "Rejeter";
-$a->strings["System"] = "Système";
-$a->strings["Network"] = "Réseau";
-$a->strings["Personal"] = "Personnel";
-$a->strings["Home"] = "Profil";
-$a->strings["Introductions"] = "Introductions";
-$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
-$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
-$a->strings["Notification type: "] = "Type de notification: ";
-$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
-$a->strings["suggested by %s"] = "suggéré(e) par %s";
-$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
-$a->strings["if applicable"] = "si possible";
-$a->strings["Approve"] = "Approuver";
-$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
-$a->strings["yes"] = "oui";
-$a->strings["no"] = "non";
-$a->strings["Approve as: "] = "Approuver en tant que: ";
-$a->strings["Friend"] = "Ami";
-$a->strings["Sharer"] = "Initiateur du partage";
-$a->strings["Fan/Admirer"] = "Fan/Admirateur";
-$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
-$a->strings["New Follower"] = "Nouvel abonné";
-$a->strings["No introductions."] = "Aucune demande d'introduction.";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
-$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
-$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
-$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
-$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
-$a->strings["No more network notifications."] = "Aucune notification du réseau.";
-$a->strings["Network Notifications"] = "Notifications du réseau";
-$a->strings["No more system notifications."] = "Pas plus de notifications système.";
-$a->strings["System Notifications"] = "Notifications du système";
-$a->strings["No more personal notifications."] = "Aucun notification personnelle.";
-$a->strings["Personal Notifications"] = "Notifications personnelles";
-$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil.";
-$a->strings["Home Notifications"] = "Notifications de page d'accueil";
-$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :";
-$a->strings["Source input: "] = "Source input: ";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :";
-$a->strings["diaspora2bb: "] = "diaspora2bb :";
-$a->strings["Nothing new here"] = "Rien de neuf ici";
-$a->strings["Clear notifications"] = "Effacer les notifications";
-$a->strings["New Message"] = "Nouveau message";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
 $a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
-$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
+$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
 $a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
 $a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
 $a->strings["Message sent."] = "Message envoyé.";
-$a->strings["Messages"] = "Messages";
-$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
-$a->strings["Message deleted."] = "Message supprimé.";
-$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["No recipient."] = "Pas de destinataire.";
 $a->strings["Please enter a link URL:"] = "Entrez un lien web:";
 $a->strings["Send Private Message"] = "Envoyer un message privé";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
 $a->strings["To:"] = "À:";
 $a->strings["Subject:"] = "Sujet:";
 $a->strings["Your message:"] = "Votre message:";
 $a->strings["Upload photo"] = "Joindre photo";
 $a->strings["Insert web link"] = "Insérer lien web";
-$a->strings["Please wait"] = "Patientez";
-$a->strings["No messages."] = "Aucun message.";
-$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
-$a->strings["You and %s"] = "Vous et %s";
-$a->strings["%s and You"] = "%s et vous";
-$a->strings["Delete conversation"] = "Effacer conversation";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d message",
-       1 => "%d messages",
-);
-$a->strings["Message not available."] = "Message indisponible.";
-$a->strings["Delete message"] = "Effacer message";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
-$a->strings["Send Reply"] = "Répondre";
-$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
-$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
-$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
-$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
-$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
-$a->strings["No mirroring"] = "";
-$a->strings["Mirror as forwarded posting"] = "";
-$a->strings["Mirror as my own posting"] = "";
-$a->strings["Name"] = "Nom";
-$a->strings["Account Nickname"] = "Pseudo du compte";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
-$a->strings["Account URL"] = "URL du compte";
-$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
-$a->strings["Friend Confirm URL"] = "Accès public refusé.";
-$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
-$a->strings["Poll/Feed URL"] = "Téléverser des photos";
-$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
-$a->strings["Remote Self"] = "";
-$a->strings["Mirror postings from this contact"] = "";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
-$a->strings["Access denied."] = "Accès refusé.";
-$a->strings["People Search"] = "Recherche de personnes";
-$a->strings["No matches"] = "Aucune correspondance";
-$a->strings["Photos"] = "Photos";
-$a->strings["Files"] = "Fichiers";
-$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
+$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
+$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
+$a->strings["Getting Started"] = "Bien démarrer";
+$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
+$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
+$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
+$a->strings["Edit Your Profile"] = "Éditer votre Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
+$a->strings["Profile Keywords"] = "Mots-clés du profil";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
+$a->strings["Connecting"] = "Connexions";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre.";
+$a->strings["Importing Emails"] = "Importer courriels";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
+$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
+$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
+$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
+$a->strings["Groups"] = "Groupes";
+$a->strings["Group Your Contacts"] = "Grouper vos contacts";
+$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."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
+$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
+$a->strings["Getting Help"] = "Obtenir de l'aide";
+$a->strings["Go to the Help Section"] = "Aller à la section Aide";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
+$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
+$a->strings["Cancel"] = "Annuler";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
+$a->strings["Ignore/Hide"] = "Ignorer/cacher";
+$a->strings["Search Results For:"] = "Résultats pour:";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Saved Searches"] = "Recherches";
+$a->strings["add"] = "ajouter";
+$a->strings["Commented Order"] = "Tri par commentaires";
+$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
+$a->strings["Posted Order"] = "Tri des publications";
+$a->strings["Sort by Post Date"] = "Trier par date de publication";
+$a->strings["Personal"] = "Personnel";
+$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
+$a->strings["New"] = "Nouveau";
+$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
+$a->strings["Shared Links"] = "Liens partagés";
+$a->strings["Interesting Links"] = "Liens intéressants";
+$a->strings["Starred"] = "Mis en avant";
+$a->strings["Favourite Posts"] = "Publications favorites";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
+       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
+$a->strings["No such group"] = "Groupe inexistant";
+$a->strings["Group is empty"] = "Groupe vide";
+$a->strings["Group: "] = "Groupe: ";
+$a->strings["Contact: "] = "Contact: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
+$a->strings["Invalid contact."] = "Contact invalide.";
+$a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
+$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
+$a->strings["Could not create table."] = "Impossible de créer une table.";
+$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
+$a->strings["System check"] = "Vérifications système";
+$a->strings["Next"] = "Suivant";
+$a->strings["Check again"] = "Vérifier à nouveau";
+$a->strings["Database connection"] = "Connexion à la base de données";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
+$a->strings["Database Server Name"] = "Serveur de base de données";
+$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
+$a->strings["Database Login Password"] = "Mot de passe de la base";
+$a->strings["Database Name"] = "Nom de la base";
+$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
+$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
+$a->strings["Site settings"] = "Réglages du site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
+$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
+$a->strings["Found PHP version: "] = "Version de PHP:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
+$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
+$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
+$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
+$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
+$a->strings["mysqli PHP module"] = "Module Mysqli de PHP";
+$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
+$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
+$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
+$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
+$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'.";
 $a->strings["Theme settings updated."] = "Réglages du thème sauvés.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Utilisateurs";
@@ -394,8 +418,11 @@ $a->strings["Plugins"] = "Extensions";
 $a->strings["Themes"] = "Thèmes";
 $a->strings["DB updates"] = "Mise-à-jour de la base";
 $a->strings["Logs"] = "Journaux";
+$a->strings["probe address"] = "";
+$a->strings["check webfinger"] = "";
 $a->strings["Admin"] = "Admin";
 $a->strings["Plugin Features"] = "Propriétés des extensions";
+$a->strings["diagnostics"] = "";
 $a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation";
 $a->strings["Normal Account"] = "Compte normal";
 $a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
@@ -413,6 +440,7 @@ $a->strings["Active plugins"] = "Extensions activés";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>";
 $a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
 $a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
+$a->strings["Never"] = "Jamais";
 $a->strings["At post arrival"] = "A l'arrivé d'une publication";
 $a->strings["Frequently"] = "Fréquemment";
 $a->strings["Hourly"] = "Toutes les heures";
@@ -426,14 +454,14 @@ $a->strings["No SSL policy, links will track page SSL state"] = "Pas de politiqu
 $a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)";
 $a->strings["Save Settings"] = "Sauvegarder les paramétres";
-$a->strings["Registration"] = "Inscription";
 $a->strings["File upload"] = "Téléversement de fichier";
 $a->strings["Policies"] = "Politiques";
 $a->strings["Advanced"] = "Avancé";
 $a->strings["Performance"] = "Performance";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible.";
 $a->strings["Site name"] = "Nom du site";
-$a->strings["Host name"] = "";
+$a->strings["Host name"] = "Nom de la machine hôte";
+$a->strings["Sender Email"] = "";
 $a->strings["Banner/Logo"] = "Bannière/Logo";
 $a->strings["Additional Info"] = "Informations supplémentaires";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo.";
@@ -444,8 +472,8 @@ $a->strings["Mobile system theme"] = "Thème mobile";
 $a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles";
 $a->strings["SSL link policy"] = "Politique SSL pour les liens";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'utilisation de SSL";
-$a->strings["Force SSL"] = "";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "";
+$a->strings["Force SSL"] = "SSL obligatoire";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies.";
 $a->strings["Old style 'Share'"] = "Anciens style 'Partage'";
 $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Désactive l'élément 'partage' de bbcode pour répéter les articles.";
 $a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
@@ -548,7 +576,7 @@ $a->strings["This does not include updates prior to 1139, which did not return a
 $a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)";
 $a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement";
 $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tChère/Cher %1\$s,\n\t\t\t\tL’administrateur de %2\$s vous a ouvert un compte.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1\$s\n\t\t\tIdentifiant :\t\t%2\$s\n\t\t\tMot de passe :\t\t%3\$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4\$s.";
 $a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s utilisateur a (dé)bloqué",
@@ -566,9 +594,13 @@ $a->strings["select all"] = "tout sélectionner";
 $a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
 $a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive";
 $a->strings["Request date"] = "Date de la demande";
+$a->strings["Name"] = "Nom";
 $a->strings["Email"] = "Courriel";
 $a->strings["No registrations."] = "Pas d'inscriptions.";
+$a->strings["Approve"] = "Approuver";
 $a->strings["Deny"] = "Rejetter";
+$a->strings["Block"] = "Bloquer";
+$a->strings["Unblock"] = "Débloquer";
 $a->strings["Site admin"] = "Administration du Site";
 $a->strings["Account expired"] = "Compte expiré";
 $a->strings["New User"] = "Nouvel utilisateur";
@@ -600,238 +632,261 @@ $a->strings["Enable Debugging"] = "Activer le déboggage";
 $a->strings["Log file"] = "Fichier de journaux";
 $a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.";
 $a->strings["Log level"] = "Niveau de journalisaton";
+$a->strings["Update now"] = "Mettre à jour";
 $a->strings["Close"] = "Fermer";
 $a->strings["FTP Host"] = "Hôte FTP";
 $a->strings["FTP Path"] = "Chemin FTP";
 $a->strings["FTP User"] = "Utilisateur FTP";
 $a->strings["FTP Password"] = "Mot de passe FTP";
-$a->strings["Search Results For:"] = "Résultats pour:";
-$a->strings["Remove term"] = "Retirer le terme";
-$a->strings["Saved Searches"] = "Recherches";
-$a->strings["add"] = "ajouter";
-$a->strings["Commented Order"] = "Tri par commentaires";
-$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
-$a->strings["Posted Order"] = "Tri des publications";
-$a->strings["Sort by Post Date"] = "Trier par date de publication";
-$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
-$a->strings["New"] = "Nouveau";
-$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
-$a->strings["Shared Links"] = "Liens partagés";
-$a->strings["Interesting Links"] = "Liens intéressants";
-$a->strings["Starred"] = "Mis en avant";
-$a->strings["Favourite Posts"] = "Publications favorites";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
-       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
+$a->strings["Search"] = "Recherche";
+$a->strings["No results."] = "Aucun résultat.";
+$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
+$a->strings["link"] = "lien";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Edit post"] = "Éditer la publication";
+$a->strings["Save"] = "Sauver";
+$a->strings["upload photo"] = "envoi image";
+$a->strings["Attach file"] = "Joindre fichier";
+$a->strings["attach file"] = "ajout fichier";
+$a->strings["web link"] = "lien web";
+$a->strings["Insert video link"] = "Insérer un lien video";
+$a->strings["video link"] = "lien vidéo";
+$a->strings["Insert audio link"] = "Insérer un lien audio";
+$a->strings["audio link"] = "lien audio";
+$a->strings["Set your location"] = "Définir votre localisation";
+$a->strings["set location"] = "spéc. localisation";
+$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
+$a->strings["clear location"] = "supp. localisation";
+$a->strings["Permission settings"] = "Réglages des permissions";
+$a->strings["CC: email addresses"] = "CC: adresses de courriel";
+$a->strings["Public post"] = "Publication publique";
+$a->strings["Set title"] = "Définir un titre";
+$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
+$a->strings["Item not available."] = "Elément non disponible.";
+$a->strings["Item was not found."] = "Element introuvable.";
+$a->strings["Account approved."] = "Inscription validée.";
+$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
+$a->strings["Please login."] = "Merci de vous connecter.";
+$a->strings["Find on this site"] = "Trouver sur ce site";
+$a->strings["Finding: "] = "Trouvé: ";
+$a->strings["Site Directory"] = "Annuaire local";
+$a->strings["Find"] = "Trouver";
+$a->strings["Age: "] = "Age: ";
+$a->strings["Gender: "] = "Genre: ";
+$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
+$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
+$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
+$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
+$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
+$a->strings["No mirroring"] = "";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$a->strings["Account Nickname"] = "Pseudo du compte";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
+$a->strings["Account URL"] = "URL du compte";
+$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
+$a->strings["Friend Confirm URL"] = "Accès public refusé.";
+$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
+$a->strings["Poll/Feed URL"] = "Téléverser des photos";
+$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Move account"] = "Migrer le compte";
+$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora";
+$a->strings["Account file"] = "Fichier du compte";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
+$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
+$a->strings["Visible to:"] = "Visible par:";
+$a->strings["Help:"] = "Aide:";
+$a->strings["Help"] = "Aide";
+$a->strings["No profile"] = "Aucun profil";
+$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
+$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué",
+       1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
-$a->strings["No such group"] = "Groupe inexistant";
-$a->strings["Group is empty"] = "Groupe vide";
-$a->strings["Group: "] = "Groupe: ";
-$a->strings["Contact: "] = "Contact: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
-$a->strings["Invalid contact."] = "Contact invalide.";
-$a->strings["Friends of %s"] = "Amis de %s";
-$a->strings["No friends to display."] = "Pas d'amis à afficher.";
-$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editer l'événement";
-$a->strings["link to source"] = "lien original";
-$a->strings["Events"] = "Événements";
-$a->strings["Create New Event"] = "Créer un nouvel événement";
-$a->strings["Previous"] = "Précédent";
-$a->strings["Next"] = "Suivant";
-$a->strings["hour:minute"] = "heures:minutes";
-$a->strings["Event details"] = "Détails de l'événement";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires.";
-$a->strings["Event Starts:"] = "Début de l'événement:";
-$a->strings["Required"] = "Requis";
-$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
-$a->strings["Event Finishes:"] = "Fin de l'événement:";
-$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
-$a->strings["Description:"] = "Description:";
-$a->strings["Location:"] = "Localisation:";
-$a->strings["Title:"] = "Titre :";
-$a->strings["Share this event"] = "Partager cet événement";
-$a->strings["Select"] = "Sélectionner";
-$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
-$a->strings["%s from %s"] = "%s de %s";
+$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
+$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
+$a->strings["Profile unavailable."] = "Profil indisponible.";
+$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
+$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
+$a->strings["Invalid locator"] = "Localisateur invalide";
+$a->strings["Invalid email address."] = "Adresse courriel invalide.";
+$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée.";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
+$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
+$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
+$a->strings["Invalid profile URL."] = "URL de profil invalide.";
+$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
+$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact.";
+$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
+$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
+$a->strings["Hide this contact"] = "Cacher ce contact";
+$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
+$a->strings["Confirm"] = "Confirmer";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:";
+$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>."] = "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>.";
+$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
+$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
+$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
+$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
+$a->strings["Submit Request"] = "Envoyer la requête";
+$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
 $a->strings["View in context"] = "Voir dans le contexte";
-$a->strings["%d comment"] = array(
-       0 => "%d commentaire",
-       1 => "%d commentaires",
+$a->strings["%d contact edited."] = array(
+       0 => "%d contact édité",
+       1 => "%d contacts édités.",
 );
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "commentaire",
+$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
+$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
+$a->strings["Contact updated."] = "Contact mis-à-jour.";
+$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
+$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
+$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
+$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
+$a->strings["Contact has been archived"] = "Contact archivé";
+$a->strings["Contact has been unarchived"] = "Contact désarchivé";
+$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
+$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
+$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
+$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
+$a->strings["%s is sharing with you"] = "%s partage avec vous";
+$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
+$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
+$a->strings["(Update was not successful)"] = "(Mise à jour échouée)";
+$a->strings["Suggest friends"] = "Suggérer amitié/contact";
+$a->strings["Network type: %s"] = "Type de réseau %s";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contact en commun",
+       1 => "%d contacts en commun",
 );
-$a->strings["show more"] = "montrer plus";
-$a->strings["Private Message"] = "Message privé";
-$a->strings["I like this (toggle)"] = "J'aime (bascule)";
-$a->strings["like"] = "aime";
-$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
-$a->strings["dislike"] = "n'aime pas";
-$a->strings["Share this"] = "Partager";
-$a->strings["share"] = "partager";
-$a->strings["This is you"] = "C'est vous";
-$a->strings["Comment"] = "Commenter";
-$a->strings["Bold"] = "Gras";
-$a->strings["Italic"] = "Italique";
-$a->strings["Underline"] = "Souligné";
-$a->strings["Quote"] = "Citation";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Image";
-$a->strings["Link"] = "Lien";
-$a->strings["Video"] = "Vidéo";
-$a->strings["Preview"] = "Aperçu";
-$a->strings["Edit"] = "Éditer";
-$a->strings["add star"] = "mett en avant";
-$a->strings["remove star"] = "ne plus mettre en avant";
-$a->strings["toggle star status"] = "mettre en avant";
-$a->strings["starred"] = "mis en avant";
-$a->strings["add tag"] = "ajouter une étiquette";
-$a->strings["save to folder"] = "sauver vers dossier";
-$a->strings["to"] = "à";
-$a->strings["Wall-to-Wall"] = "Inter-mur";
-$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
-$a->strings["Remove My Account"] = "Supprimer mon compte";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
-$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:";
-$a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
-$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
-$a->strings["Could not create table."] = "Impossible de créer une table.";
-$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
-$a->strings["System check"] = "Vérifications système";
-$a->strings["Check again"] = "Vérifier à nouveau";
-$a->strings["Database connection"] = "Connexion à la base de données";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
-$a->strings["Database Server Name"] = "Serveur de base de données";
-$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
-$a->strings["Database Login Password"] = "Mot de passe de la base";
-$a->strings["Database Name"] = "Nom de la base";
-$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
-$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
-$a->strings["Site settings"] = "Réglages du site";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
-$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
-$a->strings["Found PHP version: "] = "Version de PHP:";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
-$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
-$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
-$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
-$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
-$a->strings["mysqli PHP module"] = "Module Mysqli de PHP";
-$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
-$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
-$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
-$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
-$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
-$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
-$a->strings["No recipient."] = "Pas de destinataire.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
-$a->strings["Help:"] = "Aide:";
-$a->strings["Help"] = "Aide";
-$a->strings["Not Found"] = "Non trouvé";
-$a->strings["Page not found."] = "Page introuvable.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
-$a->strings["Or - did you try to upload an empty file?"] = "";
-$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
-$a->strings["File upload failed."] = "Le téléversement a échoué.";
-$a->strings["Profile Match"] = "Correpondance de profils";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
-$a->strings["is interested in:"] = "s'intéresse à:";
-$a->strings["Connect"] = "Relier";
-$a->strings["link"] = "lien";
-$a->strings["Not available."] = "Indisponible.";
-$a->strings["Community"] = "Communauté";
-$a->strings["No results."] = "Aucun résultat.";
-$a->strings["everybody"] = "tout le monde";
-$a->strings["Additional features"] = "Fonctions supplémentaires";
-$a->strings["Display"] = "Afficher";
-$a->strings["Social Networks"] = "Réseaux sociaux";
-$a->strings["Delegations"] = "Délégations";
-$a->strings["Connected apps"] = "Applications connectées";
-$a->strings["Export personal data"] = "Exporter";
-$a->strings["Remove account"] = "Supprimer le compte";
-$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
-$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
-$a->strings["Features updated"] = "Fonctionnalités mises à jour";
-$a->strings["Relocate message has been send to your contacts"] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
-$a->strings["Wrong password."] = "Mauvais mot de passe.";
-$a->strings["Password changed."] = "Mots de passe changés.";
-$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
-$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
-$a->strings[" Name too short."] = " Nom trop court.";
-$a->strings["Wrong Password"] = "Mauvais mot de passe";
-$a->strings[" Not valid email."] = " Email invalide.";
-$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
-$a->strings["Settings updated."] = "Réglages mis à jour.";
-$a->strings["Add application"] = "Ajouter une application";
-$a->strings["Consumer Key"] = "Clé utilisateur";
-$a->strings["Consumer Secret"] = "Secret utilisateur";
-$a->strings["Redirect"] = "Rediriger";
-$a->strings["Icon url"] = "URL de l'icône";
-$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
-$a->strings["Connected Apps"] = "Applications connectées";
-$a->strings["Client key starts with"] = "La clé cliente commence par";
-$a->strings["No name"] = "Sans nom";
-$a->strings["Remove authorization"] = "Révoquer l'autorisation";
-$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
-$a->strings["Plugin Settings"] = "Extensions";
-$a->strings["Off"] = "Éteint";
-$a->strings["On"] = "Allumé";
-$a->strings["Additional Features"] = "Fonctions supplémentaires";
-$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "activé";
-$a->strings["disabled"] = "désactivé";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
-$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
-$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
-$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
-$a->strings["IMAP port:"] = "Port IMAP:";
+$a->strings["View all contacts"] = "Voir tous les contacts";
+$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
+$a->strings["Unignore"] = "Ne plus ignorer";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
+$a->strings["Unarchive"] = "Désarchiver";
+$a->strings["Archive"] = "Archiver";
+$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
+$a->strings["Repair"] = "Réparer";
+$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
+$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
+$a->strings["Contact Editor"] = "Éditeur de contact";
+$a->strings["Profile Visibility"] = "Visibilité du profil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
+$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
+$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
+$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
+$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
+$a->strings["Ignore contact"] = "Ignorer ce contact";
+$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
+$a->strings["View conversations"] = "Voir les conversations";
+$a->strings["Delete contact"] = "Effacer ce contact";
+$a->strings["Last update:"] = "Dernière mise-à-jour :";
+$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
+$a->strings["Currently blocked"] = "Actuellement bloqué";
+$a->strings["Currently ignored"] = "Actuellement ignoré";
+$a->strings["Currently archived"] = "Actuellement archivé";
+$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
+$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
+$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
+$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
+$a->strings["Disabled"] = "Désactivé";
+$a->strings["Fetch information"] = "Récupérer informations";
+$a->strings["Fetch information and keywords"] = "Récupérer informations";
+$a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné.";
+$a->strings["Suggestions"] = "Suggestions";
+$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
+$a->strings["All Contacts"] = "Tous les contacts";
+$a->strings["Show all contacts"] = "Montrer tous les contacts";
+$a->strings["Unblocked"] = "Non-bloqués";
+$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
+$a->strings["Blocked"] = "Bloqués";
+$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
+$a->strings["Ignored"] = "Ignorés";
+$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
+$a->strings["Archived"] = "Archivés";
+$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
+$a->strings["Hidden"] = "Cachés";
+$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
+$a->strings["Mutual Friendship"] = "Relation réciproque";
+$a->strings["is a fan of yours"] = "Vous suit";
+$a->strings["you are a fan of"] = "Vous le/la suivez";
+$a->strings["Edit contact"] = "Éditer le contact";
+$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
+$a->strings["Update"] = "Mises-à-jour";
+$a->strings["everybody"] = "tout le monde";
+$a->strings["Additional features"] = "Fonctions supplémentaires";
+$a->strings["Display"] = "Afficher";
+$a->strings["Social Networks"] = "Réseaux sociaux";
+$a->strings["Delegations"] = "Délégations";
+$a->strings["Connected apps"] = "Applications connectées";
+$a->strings["Export personal data"] = "Exporter";
+$a->strings["Remove account"] = "Supprimer le compte";
+$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
+$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
+$a->strings["Features updated"] = "Fonctionnalités mises à jour";
+$a->strings["Relocate message has been send to your contacts"] = "Un message de relocalisation a été envoyé à vos contacts.";
+$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
+$a->strings["Wrong password."] = "Mauvais mot de passe.";
+$a->strings["Password changed."] = "Mots de passe changés.";
+$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
+$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
+$a->strings[" Name too short."] = " Nom trop court.";
+$a->strings["Wrong Password"] = "Mauvais mot de passe";
+$a->strings[" Not valid email."] = " Email invalide.";
+$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
+$a->strings["Settings updated."] = "Réglages mis à jour.";
+$a->strings["Add application"] = "Ajouter une application";
+$a->strings["Consumer Key"] = "Clé utilisateur";
+$a->strings["Consumer Secret"] = "Secret utilisateur";
+$a->strings["Redirect"] = "Rediriger";
+$a->strings["Icon url"] = "URL de l'icône";
+$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
+$a->strings["Connected Apps"] = "Applications connectées";
+$a->strings["Client key starts with"] = "La clé cliente commence par";
+$a->strings["No name"] = "Sans nom";
+$a->strings["Remove authorization"] = "Révoquer l'autorisation";
+$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
+$a->strings["Plugin Settings"] = "Extensions";
+$a->strings["Off"] = "Éteint";
+$a->strings["On"] = "Allumé";
+$a->strings["Additional Features"] = "Fonctions supplémentaires";
+$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
+$a->strings["enabled"] = "activé";
+$a->strings["disabled"] = "désactivé";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
+$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
+$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
+$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
+$a->strings["IMAP port:"] = "Port IMAP:";
 $a->strings["Security:"] = "Sécurité:";
 $a->strings["None"] = "Aucun(e)";
 $a->strings["Email login name:"] = "Nom de connexion:";
@@ -869,7 +924,6 @@ $a->strings["Private forum - approved members only"] = "Forum privé - modéré
 $a->strings["OpenID:"] = "OpenID:";
 $a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
 $a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
-$a->strings["No"] = "Non";
 $a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
 $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
 $a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
@@ -879,6 +933,7 @@ $a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étique
 $a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?";
 $a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?";
 $a->strings["Profile is <strong>not published</strong>."] = "Ce profil n'est <strong>pas publié</strong>.";
+$a->strings["or"] = "ou";
 $a->strings["Your Identity Address is"] = "L'adresse de votre identité est";
 $a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :";
 $a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées";
@@ -932,101 +987,9 @@ $a->strings["Text-only notification emails"] = "";
 $a->strings["Send text only notification emails, without the html part"] = "";
 $a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page";
 $a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations";
-$a->strings["Relocate"] = "";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "";
-$a->strings["Resend relocate message to contacts"] = "";
-$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
-$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué",
-       1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué",
-);
-$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
-$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
-$a->strings["Profile unavailable."] = "Profil indisponible.";
-$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
-$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
-$a->strings["Invalid locator"] = "Localisateur invalide";
-$a->strings["Invalid email address."] = "Adresse courriel invalide.";
-$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée.";
-$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
-$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
-$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
-$a->strings["Invalid profile URL."] = "URL de profil invalide.";
-$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
-$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
-$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
-$a->strings["Hide this contact"] = "Cacher ce contact";
-$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
-$a->strings["Confirm"] = "Confirmer";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:";
-$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>."] = "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>.";
-$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
-$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
-$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
-$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
-$a->strings["Submit Request"] = "Envoyer la requête";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "";
-$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
-$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
-$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
-$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
-$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
-$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
-$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
-$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
-$a->strings["Register"] = "S'inscrire";
-$a->strings["Import"] = "Importer";
-$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
-$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
-$a->strings["Search"] = "Recherche";
-$a->strings["Global Directory"] = "Annuaire global";
-$a->strings["Find on this site"] = "Trouver sur ce site";
-$a->strings["Site Directory"] = "Annuaire local";
-$a->strings["Age: "] = "Age: ";
-$a->strings["Gender: "] = "Genre: ";
-$a->strings["Gender:"] = "Genre:";
-$a->strings["Status:"] = "Statut:";
-$a->strings["Homepage:"] = "Page personnelle:";
-$a->strings["About:"] = "À propos:";
-$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
-$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel.";
-$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
-$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."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
-$a->strings["Existing Page Managers"] = "Gestionnaires existants";
-$a->strings["Existing Page Delegates"] = "Délégataires existants";
-$a->strings["Potential Delegates"] = "Délégataires potentiels";
-$a->strings["Add"] = "Ajouter";
-$a->strings["No entries."] = "Aucune entrée.";
-$a->strings["Common Friends"] = "Amis communs";
-$a->strings["No contacts in common."] = "Pas de contacts en commun.";
-$a->strings["Export account"] = "Exporter le compte";
-$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."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
-$a->strings["Export all"] = "Tout exporter";
-$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)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s";
-$a->strings["Mood"] = "Humeur";
-$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis";
-$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
-$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
-$a->strings["Ignore/Hide"] = "Ignorer/cacher";
+$a->strings["Relocate"] = "Relocaliser";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.";
+$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts.";
 $a->strings["Profile deleted."] = "Profil supprimé.";
 $a->strings["Profile-"] = "Profil-";
 $a->strings["New profile created."] = "Nouveau profil créé.";
@@ -1102,79 +1065,73 @@ $a->strings["Work/employment"] = "Activité professionnelle/Occupation";
 $a->strings["School/education"] = "Études/Formation";
 $a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
 $a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils";
-$a->strings["Change profile photo"] = "Changer de photo de profil";
-$a->strings["Create New Profile"] = "Créer un nouveau profil";
-$a->strings["Profile Image"] = "Image du profil";
-$a->strings["visible to everybody"] = "visible par tous";
-$a->strings["Edit visibility"] = "Changer la visibilité";
-$a->strings["Item not found"] = "Élément introuvable";
-$a->strings["Edit post"] = "Éditer la publication";
-$a->strings["upload photo"] = "envoi image";
-$a->strings["Attach file"] = "Joindre fichier";
-$a->strings["attach file"] = "ajout fichier";
-$a->strings["web link"] = "lien web";
-$a->strings["Insert video link"] = "Insérer un lien video";
-$a->strings["video link"] = "lien vidéo";
-$a->strings["Insert audio link"] = "Insérer un lien audio";
-$a->strings["audio link"] = "lien audio";
-$a->strings["Set your location"] = "Définir votre localisation";
-$a->strings["set location"] = "spéc. localisation";
-$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
-$a->strings["clear location"] = "supp. localisation";
-$a->strings["Permission settings"] = "Réglages des permissions";
-$a->strings["CC: email addresses"] = "CC: adresses de courriel";
-$a->strings["Public post"] = "Publication publique";
-$a->strings["Set title"] = "Définir un titre";
-$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
-$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
-$a->strings["running at web location"] = "hébergé sur";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
-$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:";
-$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:";
-$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
-$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
-$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
-$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
-$a->strings["Visible to:"] = "Visible par:";
-$a->strings["Personal Notes"] = "Notes personnelles";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Conversion temporelle";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
-$a->strings["UTC time: %s"] = "Temps UTC : %s";
-$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
-$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
-$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
-$a->strings["Poke/Prod"] = "Solliciter";
-$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
-$a->strings["Recipient"] = "Destinataire";
-$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
-$a->strings["Make this post private"] = "Rendez ce message privé";
-$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
-$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
-$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
-$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
-$a->strings["%d message sent."] = array(
-       0 => "%d message envoyé.",
-       1 => "%d messages envoyés.",
-);
-$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
-$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."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
-$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."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
-$a->strings["Send invitations"] = "Envoyer des invitations";
-$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com";
-$a->strings["Photo Albums"] = "Albums photo";
-$a->strings["Contact Photos"] = "Photos du contact";
+$a->strings["Group created."] = "Groupe créé.";
+$a->strings["Could not create group."] = "Impossible de créer le groupe.";
+$a->strings["Group not found."] = "Groupe introuvable.";
+$a->strings["Group name changed."] = "Groupe renommé.";
+$a->strings["Save Group"] = "Sauvegarder le groupe";
+$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
+$a->strings["Group Name: "] = "Nom du groupe: ";
+$a->strings["Group removed."] = "Groupe enlevé.";
+$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
+$a->strings["Group Editor"] = "Éditeur de groupe";
+$a->strings["Members"] = "Membres";
+$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
+$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :";
+$a->strings["Source input: "] = "Source input: ";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :";
+$a->strings["diaspora2bb: "] = "diaspora2bb :";
+$a->strings["Not available."] = "Indisponible.";
+$a->strings["Contact added"] = "Contact ajouté";
+$a->strings["No more system notifications."] = "Pas plus de notifications système.";
+$a->strings["System Notifications"] = "Notifications du système";
+$a->strings["New Message"] = "Nouveau message";
+$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
+$a->strings["Messages"] = "Messages";
+$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
+$a->strings["Message deleted."] = "Message supprimé.";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["No messages."] = "Aucun message.";
+$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
+$a->strings["You and %s"] = "Vous et %s";
+$a->strings["%s and You"] = "%s et vous";
+$a->strings["Delete conversation"] = "Effacer conversation";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d message",
+       1 => "%d messages",
+);
+$a->strings["Message not available."] = "Message indisponible.";
+$a->strings["Delete message"] = "Effacer message";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
+$a->strings["Send Reply"] = "Répondre";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
+$a->strings["Post successful."] = "Publication réussie.";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Time Conversion"] = "Conversion temporelle";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
+$a->strings["UTC time: %s"] = "Temps UTC : %s";
+$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
+$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
+$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
+$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
+$a->strings["- select -"] = "- choisir -";
+$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
+$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
+$a->strings["Visible To"] = "Visible par";
+$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
+$a->strings["No contacts."] = "Aucun contact.";
+$a->strings["View Contacts"] = "Voir les contacts";
+$a->strings["People Search"] = "Recherche de personnes";
+$a->strings["No matches"] = "Aucune correspondance";
 $a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
 $a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
 $a->strings["Album not found."] = "Album introuvable.";
@@ -1186,7 +1143,10 @@ $a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté da
 $a->strings["a photo"] = "une photo";
 $a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de  ";
 $a->strings["Image file is empty."] = "Fichier image vide.";
+$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
+$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
 $a->strings["No photos selected"] = "Aucune photo sélectionnée";
+$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos.";
 $a->strings["Upload Photos"] = "Téléverser des photos";
 $a->strings["New album name: "] = "Nom du nouvel album: ";
@@ -1216,185 +1176,225 @@ $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam
 $a->strings["Private photo"] = "Photo privée";
 $a->strings["Public photo"] = "Photo publique";
 $a->strings["Share"] = "Partager";
+$a->strings["View Album"] = "Voir l'album";
 $a->strings["Recent Photos"] = "Photos récentes";
-$a->strings["Account approved."] = "Inscription validée.";
-$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
-$a->strings["Please login."] = "Merci de vous connecter.";
-$a->strings["Move account"] = "Migrer le compte";
-$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora";
-$a->strings["Account file"] = "Fichier du compte";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
-$a->strings["Item not available."] = "Elément non disponible.";
-$a->strings["Item was not found."] = "Element introuvable.";
-$a->strings["Delete this item?"] = "Effacer cet élément?";
-$a->strings["show fewer"] = "montrer moins";
-$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
-$a->strings["Create a New Account"] = "Créer un nouveau compte";
-$a->strings["Logout"] = "Se déconnecter";
-$a->strings["Login"] = "Connexion";
-$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: ";
-$a->strings["Password: "] = "Mot de passe: ";
-$a->strings["Remember me"] = "Se souvenir de moi";
-$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: ";
-$a->strings["Forgot your password?"] = "Mot de passe oublié?";
-$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet";
-$a->strings["terms of service"] = "conditions d'utilisation";
-$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet";
-$a->strings["privacy policy"] = "politique de confidentialité";
-$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
-$a->strings["Edit profile"] = "Editer le profil";
-$a->strings["Message"] = "Message";
-$a->strings["Profiles"] = "Profils";
-$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
-$a->strings["Network:"] = "Réseau";
-$a->strings["g A l F d"] = "g A | F d";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[aujourd'hui]";
-$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
-$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:";
-$a->strings["[No description]"] = "[Sans description]";
-$a->strings["Event Reminders"] = "Rappels d'événements";
-$a->strings["Events this week:"] = "Evénements cette semaine:";
-$a->strings["Status"] = "Statut";
-$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
-$a->strings["Profile Details"] = "Détails du profil";
-$a->strings["Videos"] = "Vidéos";
-$a->strings["Events and Calendar"] = "Événements et agenda";
-$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
-$a->strings["This entry was edited"] = "Cette entrée à été édité";
-$a->strings["ignore thread"] = "ignorer le fil";
-$a->strings["unignore thread"] = "Ne plus ignorer le fil";
-$a->strings["toggle ignore status"] = "Ignorer le statut";
-$a->strings["ignored"] = "ignoré";
-$a->strings["Categories:"] = "Catégories:";
-$a->strings["Filed under:"] = "Rangé sous:";
-$a->strings["via"] = "via";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "";
-$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
-$a->strings["Errors encountered performing database changes."] = "";
-$a->strings["Logged out."] = "Déconnecté.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier.";
-$a->strings["The error message was:"] = "Le message d'erreur était :";
-$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
-$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitation disponible",
-       1 => "%d invitations disponibles",
-);
-$a->strings["Find People"] = "Trouver des personnes";
-$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
-$a->strings["Connect/Follow"] = "Connecter/Suivre";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
-$a->strings["Similar Interests"] = "Intérêts similaires";
-$a->strings["Random Profile"] = "Profil au hasard";
-$a->strings["Invite Friends"] = "Inviter des amis";
-$a->strings["Networks"] = "Réseaux";
-$a->strings["All Networks"] = "Tous réseaux";
-$a->strings["Saved Folders"] = "Dossiers sauvegardés";
-$a->strings["Everything"] = "Tout";
-$a->strings["Categories"] = "Catégories";
-$a->strings["General Features"] = "Fonctions générales";
-$a->strings["Multiple Profiles"] = "Profils multiples";
-$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
-$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication";
-$a->strings["Richtext Editor"] = "Éditeur de texte enrichi";
-$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
-$a->strings["Post Preview"] = "Aperçu de la publication";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier";
-$a->strings["Auto-mention Forums"] = "";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
-$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale";
-$a->strings["Search by Date"] = "Rechercher par Date";
-$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates";
-$a->strings["Group Filter"] = "Filtre de groupe";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné";
-$a->strings["Network Filter"] = "Filtre de réseau";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné";
-$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure";
-$a->strings["Network Tabs"] = "Onglets Réseau";
-$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit";
-$a->strings["Network New Tab"] = "Nouvel onglet réseaux";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)";
-$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens";
-$a->strings["Post/Comment Tools"] = "outils de publication/commentaire";
-$a->strings["Multiple Deletion"] = "Suppression multiple";
-$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois";
-$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
-$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi";
-$a->strings["Tagging"] = "Étiquettage";
-$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes";
-$a->strings["Post Categories"] = "Catégories des publications";
-$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
-$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires";
-$a->strings["Dislike Posts"] = "Publications non aimées";
-$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires";
-$a->strings["Star Posts"] = "Publications spéciales";
-$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile";
-$a->strings["Mute Post Notifications"] = "";
-$a->strings["Ability to mute notifications for a thread"] = "";
-$a->strings["Connect URL missing."] = "URL de connexion manquante.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
-$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
-$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
-$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
-$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
-$a->strings["following"] = "following";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
-$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
-$a->strings["Everybody"] = "Tout le monde";
-$a->strings["edit"] = "éditer";
-$a->strings["Edit group"] = "Editer groupe";
-$a->strings["Create a new group"] = "Créer un nouveau groupe";
-$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
-$a->strings["Miscellaneous"] = "Divers";
-$a->strings["year"] = "an";
-$a->strings["month"] = "mois";
-$a->strings["day"] = "jour";
-$a->strings["never"] = "jamais";
-$a->strings["less than a second ago"] = "il y a moins d'une seconde";
-$a->strings["years"] = "ans";
-$a->strings["months"] = "mois";
-$a->strings["week"] = "semaine";
-$a->strings["weeks"] = "semaines";
-$a->strings["days"] = "jours";
-$a->strings["hour"] = "heure";
-$a->strings["hours"] = "heures";
-$a->strings["minute"] = "minute";
-$a->strings["minutes"] = "minutes";
-$a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant";
-$a->strings["%s's birthday"] = "Anniversaire de %s's";
-$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
-$a->strings["Visible to everybody"] = "Visible par tout le monde";
-$a->strings["show"] = "montrer";
-$a->strings["don't show"] = "cacher";
-$a->strings["[no subject]"] = "[pas de sujet]";
-$a->strings["stopped following"] = "retiré de la liste de suivi";
-$a->strings["Poke"] = "Sollicitations (pokes)";
-$a->strings["View Status"] = "Voir les statuts";
-$a->strings["View Profile"] = "Voir le profil";
-$a->strings["View Photos"] = "Voir les photos";
-$a->strings["Network Posts"] = "Publications du réseau";
-$a->strings["Edit Contact"] = "Éditer le contact";
-$a->strings["Drop Contact"] = "Supprimer le contact";
-$a->strings["Send PM"] = "Message privé";
-$a->strings["Welcome "] = "Bienvenue ";
-$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
-$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
-$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."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
-$a->strings["event"] = "évènement";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?";
+$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
+$a->strings["File upload failed."] = "Le téléversement a échoué.";
+$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
+$a->strings["View Video"] = "Regarder la vidéo";
+$a->strings["Recent Videos"] = "Vidéos récente";
+$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
+$a->strings["Poke/Prod"] = "Solliciter";
+$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
+$a->strings["Recipient"] = "Destinataire";
+$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
+$a->strings["Make this post private"] = "Rendez ce message privé";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
+$a->strings["Export account"] = "Exporter le compte";
+$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."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
+$a->strings["Export all"] = "Tout exporter";
+$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)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
+$a->strings["Common Friends"] = "Amis communs";
+$a->strings["No contacts in common."] = "Pas de contacts en commun.";
+$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
+$a->strings["Wall Photos"] = "Photos du mur";
+$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
+$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
+$a->strings["Unable to process image"] = "Impossible de traiter l'image";
+$a->strings["Upload File:"] = "Fichier à téléverser:";
+$a->strings["Select a profile:"] = "Choisir un profil:";
+$a->strings["Upload"] = "Téléverser";
+$a->strings["skip this step"] = "ignorer cette étape";
+$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
+$a->strings["Crop Image"] = "(Re)cadrer l'image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
+$a->strings["Done Editing"] = "Édition terminée";
+$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "Pas d'application installée.";
+$a->strings["Nothing new here"] = "Rien de neuf ici";
+$a->strings["Clear notifications"] = "Effacer les notifications";
+$a->strings["Profile Match"] = "Correpondance de profils";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
+$a->strings["is interested in:"] = "s'intéresse à:";
+$a->strings["Tag removed"] = "Étiquette supprimée";
+$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
+$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: ";
+$a->strings["Remove"] = "Utiliser comme photo de profil";
+$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editer l'événement";
+$a->strings["link to source"] = "lien original";
+$a->strings["Create New Event"] = "Créer un nouvel événement";
+$a->strings["Previous"] = "Précédent";
+$a->strings["hour:minute"] = "heures:minutes";
+$a->strings["Event details"] = "Détails de l'événement";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires.";
+$a->strings["Event Starts:"] = "Début de l'événement:";
+$a->strings["Required"] = "Requis";
+$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
+$a->strings["Event Finishes:"] = "Fin de l'événement:";
+$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Titre :";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel.";
+$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
+$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."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
+$a->strings["Existing Page Managers"] = "Gestionnaires existants";
+$a->strings["Existing Page Delegates"] = "Délégataires existants";
+$a->strings["Potential Delegates"] = "Délégataires potentiels";
+$a->strings["Add"] = "Ajouter";
+$a->strings["No entries."] = "Aucune entrée.";
+$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
+$a->strings["Files"] = "Fichiers";
+$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
+$a->strings["Remove My Account"] = "Supprimer mon compte";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
+$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:";
+$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
+$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
+$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
+$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale.";
+$a->strings["Empty post discarded."] = "Publication vide rejetée.";
+$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica.";
+$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
+$a->strings["%s posted an update."] = "%s a publié une mise à jour.";
+$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
+$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
+$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
+$a->strings["{0} commented %s's post"] = "{0} a commenté la publication de %s";
+$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s";
+$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s";
+$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
+$a->strings["{0} posted"] = "{0} a publié";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication";
+$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
+$a->strings["Login failed."] = "Échec de connexion.";
+$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
+$a->strings["Discard"] = "Rejeter";
+$a->strings["System"] = "Système";
+$a->strings["Network"] = "Réseau";
+$a->strings["Introductions"] = "Introductions";
+$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
+$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
+$a->strings["Notification type: "] = "Type de notification: ";
+$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
+$a->strings["suggested by %s"] = "suggéré(e) par %s";
+$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
+$a->strings["if applicable"] = "si possible";
+$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
+$a->strings["yes"] = "oui";
+$a->strings["no"] = "non";
+$a->strings["Approve as: "] = "Approuver en tant que: ";
+$a->strings["Friend"] = "Ami";
+$a->strings["Sharer"] = "Initiateur du partage";
+$a->strings["Fan/Admirer"] = "Fan/Admirateur";
+$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
+$a->strings["New Follower"] = "Nouvel abonné";
+$a->strings["No introductions."] = "Aucune demande d'introduction.";
+$a->strings["Notifications"] = "Notifications";
+$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
+$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
+$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
+$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
+$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
+$a->strings["No more network notifications."] = "Aucune notification du réseau.";
+$a->strings["Network Notifications"] = "Notifications du réseau";
+$a->strings["No more personal notifications."] = "Aucun notification personnelle.";
+$a->strings["Personal Notifications"] = "Notifications personnelles";
+$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil.";
+$a->strings["Home Notifications"] = "Notifications de page d'accueil";
+$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
+$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
+$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
+$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
+$a->strings["%d message sent."] = array(
+       0 => "%d message envoyé.",
+       1 => "%d messages envoyés.",
+);
+$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
+$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."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
+$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."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
+$a->strings["Send invitations"] = "Envoyer des invitations";
+$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com";
+$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
+$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["Friends of %s"] = "Amis de %s";
+$a->strings["No friends to display."] = "Pas d'amis à afficher.";
+$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
+$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitation disponible",
+       1 => "%d invitations disponibles",
+);
+$a->strings["Find People"] = "Trouver des personnes";
+$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
+$a->strings["Connect/Follow"] = "Connecter/Suivre";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
+$a->strings["Random Profile"] = "Profil au hasard";
+$a->strings["Networks"] = "Réseaux";
+$a->strings["All Networks"] = "Tous réseaux";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
+$a->strings["Everything"] = "Tout";
+$a->strings["Categories"] = "Catégories";
+$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement.";
+$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement.";
+$a->strings["User not found."] = "Utilisateur non trouvé";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée.";
+$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id.";
+$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id.";
+$a->strings["Invalid request."] = "";
+$a->strings["Invalid item."] = "";
+$a->strings["Invalid action. "] = "";
+$a->strings["DB error"] = "";
+$a->strings["view full size"] = "voir en pleine taille";
+$a->strings["Starts:"] = "Débute:";
+$a->strings["Finishes:"] = "Finit:";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
+$a->strings["(no subject)"] = "(sans titre)";
+$a->strings["noreply"] = "noreply";
+$a->strings["An invitation is required."] = "Une invitation est requise.";
+$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée.";
+$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier.";
+$a->strings["The error message was:"] = "Le message d'erreur était :";
+$a->strings["Please enter the required information."] = "Entrez les informations requises.";
+$a->strings["Please use a shorter name."] = "Utilisez un nom plus court.";
+$a->strings["Name too short."] = "Nom trop court.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site.";
+$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide.";
+$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre.";
+$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué.";
+$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
+$a->strings["Friends"] = "Amis";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s.";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s";
 $a->strings["poked"] = "a titillé";
 $a->strings["post/item"] = "publication/élément";
@@ -1402,6 +1402,13 @@ $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$
 $a->strings["remove"] = "enlever";
 $a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
 $a->strings["Follow Thread"] = "Suivre le fil";
+$a->strings["View Status"] = "Voir les statuts";
+$a->strings["View Profile"] = "Voir le profil";
+$a->strings["View Photos"] = "Voir les photos";
+$a->strings["Network Posts"] = "Publications du réseau";
+$a->strings["Edit Contact"] = "Éditer le contact";
+$a->strings["Send PM"] = "Message privé";
+$a->strings["Poke"] = "Sollicitations (pokes)";
 $a->strings["%s likes this."] = "%s aime ça.";
 $a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
 $a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personnes</span> aiment ça";
@@ -1422,7 +1429,18 @@ $a->strings["permissions"] = "permissions";
 $a->strings["Post to Groups"] = "Publier aux groupes";
 $a->strings["Post to Contacts"] = "Publier aux contacts";
 $a->strings["Private post"] = "Message privé";
-$a->strings["view full size"] = "voir en pleine taille";
+$a->strings["Logged out."] = "Déconnecté.";
+$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
+$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
+$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
+$a->strings["User creation error"] = "Erreur de création d'utilisateur";
+$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contacts non importés",
+       1 => "%d contacts non importés",
+);
+$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
 $a->strings["newer"] = "Plus récent";
 $a->strings["older"] = "Plus ancien";
 $a->strings["prev"] = "précédent";
@@ -1486,68 +1504,90 @@ $a->strings["November"] = "Novembre";
 $a->strings["December"] = "Décembre";
 $a->strings["bytes"] = "octets";
 $a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
-$a->strings["default"] = "défaut";
 $a->strings["Select an alternate language"] = "Choisir une langue alternative";
 $a->strings["activity"] = "activité";
 $a->strings["post"] = "publication";
 $a->strings["Item filed"] = "Élément classé";
-$a->strings["Image/photo"] = "Image/photo";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
-$a->strings["$1 wrote:"] = "$1 a écrit:";
-$a->strings["Encrypted content"] = "Contenu chiffré";
-$a->strings["(no subject)"] = "(sans titre)";
-$a->strings["noreply"] = "noreply";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
-$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
-$a->strings["Block immediately"] = "Bloquer immédiatement";
-$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
-$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
-$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
-$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
-$a->strings["Weekly"] = "Chaque semaine";
-$a->strings["Monthly"] = "Chaque mois";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "App.net";
+$a->strings["Friendica Notification"] = "Notification Friendica";
+$a->strings["Thank You,"] = "Merci, ";
+$a->strings["%s Administrator"] = "L'administrateur de %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
+$a->strings["a private message"] = "un message privé";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a partagé une nouvelle publication sur %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "";
+$a->strings["[Friendica:Notify] You have a new follower"] = "";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
+$a->strings["Name:"] = "Nom :";
+$a->strings["Photo:"] = "Photo :";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "";
+$a->strings["[Friendica System:Notify] registration request"] = "";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Vous avez reçu une [url=%1\$s]demande de création de compte[/url] de %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande.";
 $a->strings[" on Last.fm"] = "sur Last.fm";
-$a->strings["Starts:"] = "Débute:";
-$a->strings["Finishes:"] = "Finit:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Anniversaire:";
-$a->strings["Age:"] = "Age:";
-$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
-$a->strings["Tags:"] = "Étiquette:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
-$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
-$a->strings["Musical interests:"] = "Goûts musicaux:";
-$a->strings["Books, literature:"] = "Lectures:";
-$a->strings["Television:"] = "Télévision:";
-$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
-$a->strings["Love/Romance:"] = "Amour/Romance:";
-$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
-$a->strings["School/education:"] = "Études/Formation:";
-$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement.";
-$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement.";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
+$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["edit"] = "éditer";
+$a->strings["Edit group"] = "Editer groupe";
+$a->strings["Create a new group"] = "Créer un nouveau groupe";
+$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
+$a->strings["Connect URL missing."] = "URL de connexion manquante.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
+$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
+$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
+$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
+$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
+$a->strings["following"] = "following";
+$a->strings["[no subject]"] = "[pas de sujet]";
 $a->strings["End this session"] = "Mettre fin à cette session";
-$a->strings["Your posts and conversations"] = "Vos publications et conversations";
-$a->strings["Your profile page"] = "Votre page de profil";
-$a->strings["Your photos"] = "Vos photos";
 $a->strings["Your videos"] = "Vos vidéos";
-$a->strings["Your events"] = "Vos événements";
-$a->strings["Personal notes"] = "Notes personnelles";
 $a->strings["Your personal notes"] = "Vos notes personnelles";
 $a->strings["Sign in"] = "Se connecter";
 $a->strings["Home Page"] = "Page d'accueil";
@@ -1578,39 +1618,123 @@ $a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés e
 $a->strings["Site setup and configuration"] = "Démarrage et configuration du site";
 $a->strings["Navigation"] = "Navigation";
 $a->strings["Site map"] = "Carte du site";
-$a->strings["User not found."] = "Utilisateur non trouvé";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "";
-$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id.";
-$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id.";
-$a->strings["Invalid request."] = "";
-$a->strings["Invalid item."] = "";
-$a->strings["Invalid action. "] = "";
-$a->strings["DB error"] = "";
-$a->strings["An invitation is required."] = "Une invitation est requise.";
-$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée.";
-$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide";
-$a->strings["Please enter the required information."] = "Entrez les informations requises.";
-$a->strings["Please use a shorter name."] = "Utilisez un nom plus court.";
-$a->strings["Name too short."] = "Nom trop court.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site.";
-$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide.";
-$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre.";
-$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué.";
-$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
-$a->strings["Friends"] = "Amis";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Anniversaire:";
+$a->strings["Age:"] = "Age:";
+$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
+$a->strings["Tags:"] = "Étiquette:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
+$a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
+$a->strings["Musical interests:"] = "Goûts musicaux:";
+$a->strings["Books, literature:"] = "Lectures:";
+$a->strings["Television:"] = "Télévision:";
+$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divertissement:";
+$a->strings["Love/Romance:"] = "Amour/Romance:";
+$a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
+$a->strings["School/education:"] = "Études/Formation:";
+$a->strings["Image/photo"] = "Image/photo";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
+$a->strings["$1 wrote:"] = "$1 a écrit:";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
+$a->strings["Block immediately"] = "Bloquer immédiatement";
+$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
+$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
+$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
+$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
+$a->strings["Weekly"] = "Chaque semaine";
+$a->strings["Monthly"] = "Chaque mois";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings["Miscellaneous"] = "Divers";
+$a->strings["year"] = "an";
+$a->strings["month"] = "mois";
+$a->strings["day"] = "jour";
+$a->strings["never"] = "jamais";
+$a->strings["less than a second ago"] = "il y a moins d'une seconde";
+$a->strings["years"] = "ans";
+$a->strings["months"] = "mois";
+$a->strings["week"] = "semaine";
+$a->strings["weeks"] = "semaines";
+$a->strings["days"] = "jours";
+$a->strings["hour"] = "heure";
+$a->strings["hours"] = "heures";
+$a->strings["minute"] = "minute";
+$a->strings["minutes"] = "minutes";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant";
+$a->strings["%s's birthday"] = "Anniversaire de %s's";
+$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
+$a->strings["General Features"] = "Fonctions générales";
+$a->strings["Multiple Profiles"] = "Profils multiples";
+$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
+$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication";
+$a->strings["Richtext Editor"] = "Éditeur de texte enrichi";
+$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
+$a->strings["Post Preview"] = "Aperçu de la publication";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale";
+$a->strings["Search by Date"] = "Rechercher par Date";
+$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates";
+$a->strings["Group Filter"] = "Filtre de groupe";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné";
+$a->strings["Network Filter"] = "Filtre de réseau";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné";
+$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure";
+$a->strings["Network Tabs"] = "Onglets Réseau";
+$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit";
+$a->strings["Network New Tab"] = "Nouvel onglet réseaux";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)";
+$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens";
+$a->strings["Post/Comment Tools"] = "outils de publication/commentaire";
+$a->strings["Multiple Deletion"] = "Suppression multiple";
+$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois";
+$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
+$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi";
+$a->strings["Tagging"] = "Étiquettage";
+$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes";
+$a->strings["Post Categories"] = "Catégories des publications";
+$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
+$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires";
+$a->strings["Dislike Posts"] = "Publications non aimées";
+$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires";
+$a->strings["Star Posts"] = "Publications spéciales";
+$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile";
+$a->strings["Mute Post Notifications"] = "";
+$a->strings["Ability to mute notifications for a thread"] = "";
 $a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
 $a->strings["Attachments:"] = "Pièces jointes : ";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
+$a->strings["Errors encountered performing database changes."] = "Des erreurs sont survenues lors de la mise à jour de la base de données.";
+$a->strings["Visible to everybody"] = "Visible par tout le monde";
 $a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?";
 $a->strings["Archives"] = "Archives";
+$a->strings["Embedded content"] = "Contenu incorporé";
+$a->strings["Embedding disabled"] = "Incorporation désactivée";
+$a->strings["Welcome "] = "Bienvenue ";
+$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
+$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
+$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."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
 $a->strings["Male"] = "Masculin";
 $a->strings["Female"] = "Féminin";
 $a->strings["Currently Male"] = "Actuellement masculin";
@@ -1668,113 +1792,5 @@ $a->strings["Uncertain"] = "Incertain";
 $a->strings["It's complicated"] = "C'est compliqué";
 $a->strings["Don't care"] = "S'en désintéresse";
 $a->strings["Ask me"] = "Me demander";
-$a->strings["Friendica Notification"] = "Notification Friendica";
-$a->strings["Thank You,"] = "Merci, ";
-$a->strings["%s Administrator"] = "L'administrateur de %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
-$a->strings["a private message"] = "un message privé";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication";
-$a->strings["%1\$s shared a new post at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "";
-$a->strings["[Friendica:Notify] You have a new follower"] = "";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
-$a->strings["Name:"] = "Nom :";
-$a->strings["Photo:"] = "Photo :";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "";
-$a->strings["[Friendica System:Notify] registration request"] = "";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
-$a->strings["Please visit %s to approve or reject the request."] = "";
-$a->strings["Embedded content"] = "Contenu incorporé";
-$a->strings["Embedding disabled"] = "Incorporation désactivée";
-$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
-$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
-$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
-$a->strings["User creation error"] = "Erreur de création d'utilisateur";
-$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contacts non importés",
-       1 => "%d contacts non importés",
-);
-$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
-$a->strings["toggle mobile"] = "activ. mobile";
-$a->strings["Theme settings"] = "Réglages du thème graphique";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)";
-$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires";
-$a->strings["Set theme width"] = "Largeur du thème";
-$a->strings["Color scheme"] = "Palette de couleurs";
-$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires";
-$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
-$a->strings["Alignment"] = "Alignement";
-$a->strings["Left"] = "Gauche";
-$a->strings["Center"] = "Centre";
-$a->strings["Posts font size"] = "Taille de texte des publications";
-$a->strings["Textareas font size"] = "Taille de police des zones de texte";
-$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale";
-$a->strings["Set color scheme"] = "Choisir le schéma de couleurs";
-$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom";
-$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation";
-$a->strings["Community Pages"] = "Pages de Communauté";
-$a->strings["Earth Layers"] = "Géolocalisation";
-$a->strings["Community Profiles"] = "Profils communautaires";
-$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?";
-$a->strings["Connect Services"] = "Connecter des services";
-$a->strings["Find Friends"] = "Trouver des amis";
-$a->strings["Last users"] = "Derniers utilisateurs";
-$a->strings["Last photos"] = "Dernières photos";
-$a->strings["Last likes"] = "Dernièrement aimé";
-$a->strings["Your contacts"] = "Vos contacts";
-$a->strings["Your personal photos"] = "Vos photos personnelles";
-$a->strings["Local Directory"] = "Annuaire local";
-$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation";
-$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :";
-$a->strings["Set style"] = "Définir le style";
-$a->strings["greenzero"] = "";
-$a->strings["purplezero"] = "";
-$a->strings["easterbunny"] = "";
-$a->strings["darkzero"] = "";
-$a->strings["comix"] = "";
-$a->strings["slackr"] = "";
-$a->strings["Variations"] = "";
+$a->strings["stopped following"] = "retiré de la liste de suivi";
+$a->strings["Drop Contact"] = "Supprimer le contact";
index 5270e8052b40a086d92a28d138ea5f2f1c51ef8b..c568a49c3896638abc337a2ad3ed6ec5be07e302 100644 (file)
@@ -14,6 +14,7 @@
 # Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2012
 # Frederico Gonçalves Guimarães <frederico@teia.bio.br>, 2011
 # FULL NAME <EMAIL@ADDRESS>, 2011
+# John Brazil, 2015
 # Ricardo Pereira <rhalah@gmail.com>, 2012
 # Sérgio Lima <oigreslima@gmail.com>, 2013-2014
 # Sérgio Lima <oigreslima@gmail.com>, 2012
@@ -21,9 +22,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-09-07 14:32+0200\n"
-"PO-Revision-Date: 2014-10-04 04:17+0000\n"
-"Last-Translator: Calango Jr <jcsojr@gmail.com>\n"
+"POT-Creation-Date: 2015-01-22 17:30+0100\n"
+"PO-Revision-Date: 2015-01-31 01:21+0000\n"
+"Last-Translator: John Brazil\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"
@@ -31,3399 +32,3575 @@ msgstr ""
 "Language: pt_BR\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/vier/config.php:52 ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:678 ../../mod/contacts.php:470
-#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107
-#: ../../mod/photos.php:1084 ../../mod/photos.php:1205
-#: ../../mod/photos.php:1512 ../../mod/photos.php:1563
-#: ../../mod/photos.php:1607 ../../mod/photos.php:1695
-#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137
-#: ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/profiles.php:645 ../../mod/install.php:248
-#: ../../mod/install.php:286 ../../mod/crepair.php:179
-#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
-msgid "Submit"
-msgstr "Enviar"
+#: ../../mod/contacts.php:107
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contato editado"
+msgstr[1] "%d contatos editados"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/vier/config.php:54 ../../view/theme/diabook/config.php:150
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-msgid "Theme settings"
-msgstr "Configurações do tema"
+#: ../../mod/contacts.php:138 ../../mod/contacts.php:271
+msgid "Could not access contact record."
+msgstr "Não foi possível acessar o registro do contato."
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
+#: ../../mod/contacts.php:152
+msgid "Could not locate selected profile."
+msgstr "Não foi possível localizar o perfil selecionado."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:151
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr "Escolha o tamanho da fonte para publicações e comentários"
+#: ../../mod/contacts.php:185
+msgid "Contact updated."
+msgstr "O contato foi atualizado."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Configure a largura do tema"
+#: ../../mod/contacts.php:187 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Não foi possível atualizar o registro do contato."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Esquema de cores"
+#: ../../mod/contacts.php:253 ../../mod/manage.php:96
+#: ../../mod/display.php:475 ../../mod/profile_photo.php:19
+#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
+#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
+#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
+#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
+#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:22
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/crepair.php:119
+#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
+#: ../../mod/events.php:140 ../../mod/install.php:151
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
+#: ../../mod/settings.php:596 ../../mod/settings.php:601
+#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
+#: ../../mod/suggest.php:58 ../../mod/profiles.php:148
+#: ../../mod/profiles.php:584 ../../mod/editpost.php:10 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
+#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
+#: ../../mod/attach.php:33 ../../include/items.php:4683 ../../index.php:369
+msgid "Permission denied."
+msgstr "Permissão negada."
 
-#: ../../view/theme/vier/config.php:55
-msgid "Set style"
-msgstr "escolha estilo"
+#: ../../mod/contacts.php:286
+msgid "Contact has been blocked"
+msgstr "O contato foi bloqueado"
 
-#: ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:328
-msgid "don't show"
-msgstr "não exibir"
+#: ../../mod/contacts.php:286
+msgid "Contact has been unblocked"
+msgstr "O contato foi desbloqueado"
 
-#: ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:327
-msgid "show"
-msgstr "exibir"
+#: ../../mod/contacts.php:297
+msgid "Contact has been ignored"
+msgstr "O contato foi ignorado"
 
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr "Escolha comprimento da linha para publicações e comentários"
+#: ../../mod/contacts.php:297
+msgid "Contact has been unignored"
+msgstr "O contato deixou de ser ignorado"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Escolha a resolução para a coluna do meio"
+#: ../../mod/contacts.php:309
+msgid "Contact has been archived"
+msgstr "O contato foi arquivado"
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/contacts.php:309
+msgid "Contact has been unarchived"
+msgstr "O contato foi desarquivado"
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/contacts.php:334 ../../mod/contacts.php:710
+msgid "Do you really want to delete this contact?"
+msgstr "Você realmente deseja deletar esse contato?"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Configure longitude (X) para Camadas da Terra"
+#: ../../mod/contacts.php:336 ../../mod/message.php:209
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:233 ../../mod/suggest.php:29
+#: ../../mod/profiles.php:627 ../../mod/profiles.php:630 ../../mod/api.php:105
+#: ../../include/items.php:4528
+msgid "Yes"
+msgstr "Sim"
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Configure latitude (Y) para Camadas da Terra"
+#: ../../mod/contacts.php:339 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
+#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
+#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
+#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
+#: ../../mod/photos.php:203 ../../mod/photos.php:292
+#: ../../include/conversation.php:1129 ../../include/items.php:4531
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
-msgstr "Páginas da Comunidade"
+#: ../../mod/contacts.php:351
+msgid "Contact has been removed."
+msgstr "O contato foi removido."
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Camadas da Terra"
+#: ../../mod/contacts.php:389
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Você possui uma amizade mútua com %s"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Profiles Comunitários"
+#: ../../mod/contacts.php:393
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Você está compartilhando com %s"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Ajuda ou @NewHere ?"
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s está compartilhando com você"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Conectar serviços"
+#: ../../mod/contacts.php:415
+msgid "Private communications are not available for this contact."
+msgstr "As comunicações privadas não estão disponíveis para este contato."
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Encontrar amigos"
+#: ../../mod/contacts.php:418 ../../mod/admin.php:546
+msgid "Never"
+msgstr "Nunca"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Últimos usuários"
+#: ../../mod/contacts.php:422
+msgid "(Update was successful)"
+msgstr "(A atualização foi bem sucedida)"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Últimas fotos"
+#: ../../mod/contacts.php:422
+msgid "(Update was not successful)"
+msgstr "(A atualização não foi bem sucedida)"
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Últimas gostadas"
+#: ../../mod/contacts.php:424
+msgid "Suggest friends"
+msgstr "Sugerir amigos"
 
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
-#: ../../include/nav.php:146 ../../mod/notifications.php:93
-msgid "Home"
-msgstr "Pessoal"
+#: ../../mod/contacts.php:428
+#, php-format
+msgid "Network type: %s"
+msgstr "Tipo de rede: %s"
 
-#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
-#: ../../include/nav.php:146
-msgid "Your posts and conversations"
-msgstr "Suas publicações e conversas"
+#: ../../mod/contacts.php:431 ../../include/contact_widgets.php:200
+#, 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"
 
-#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2070
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../mod/profperm.php:103
-#: ../../mod/newmember.php:32
-msgid "Profile"
-msgstr "Perfil "
+#: ../../mod/contacts.php:436
+msgid "View all contacts"
+msgstr "Ver todos os contatos"
 
-#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Sua página de perfil"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:981
+msgid "Unblock"
+msgstr "Desbloquear"
 
-#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:175
-#: ../../mod/contacts.php:694
-msgid "Contacts"
-msgstr "Contatos"
+#: ../../mod/contacts.php:441 ../../mod/contacts.php:500
+#: ../../mod/contacts.php:713 ../../mod/admin.php:980
+msgid "Block"
+msgstr "Bloquear"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Seus contatos"
+#: ../../mod/contacts.php:444
+msgid "Toggle Blocked status"
+msgstr "Alternar o status de bloqueio"
 
-#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2077
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-msgid "Photos"
-msgstr "Fotos"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714
+msgid "Unignore"
+msgstr "Deixar de ignorar"
 
-#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Suas fotos"
+#: ../../mod/contacts.php:447 ../../mod/contacts.php:501
+#: ../../mod/contacts.php:714 ../../mod/notifications.php:51
+#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignorar"
 
-#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2094
-#: ../../include/nav.php:80 ../../mod/events.php:370
-msgid "Events"
-msgstr "Eventos"
+#: ../../mod/contacts.php:450
+msgid "Toggle Ignored status"
+msgstr "Alternar o status de ignorado"
 
-#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
-msgid "Your events"
-msgstr "Seus eventos"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Unarchive"
+msgstr "Desarquivar"
 
-#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
-msgid "Personal notes"
-msgstr "Suas anotações pessoais"
+#: ../../mod/contacts.php:454 ../../mod/contacts.php:715
+msgid "Archive"
+msgstr "Arquivar"
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Suas fotos pessoais"
+#: ../../mod/contacts.php:457
+msgid "Toggle Archive status"
+msgstr "Alternar o status de arquivamento"
 
-#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
-#: ../../mod/community.php:32
-msgid "Community"
-msgstr "Comunidade"
+#: ../../mod/contacts.php:460
+msgid "Repair"
+msgstr "Reparar"
 
-#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
-#: ../../include/conversation.php:246 ../../include/text.php:1964
-msgid "event"
-msgstr "evento"
+#: ../../mod/contacts.php:463
+msgid "Advanced Contact Settings"
+msgstr "Configurações avançadas do contato"
 
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:1919
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62
-msgid "status"
-msgstr "status"
+#: ../../mod/contacts.php:469
+msgid "Communications lost with this contact!"
+msgstr "As comunicações com esse contato foram perdidas!"
 
-#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:1919
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1966 ../../mod/like.php:149
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62
-msgid "photo"
-msgstr "foto"
+#: ../../mod/contacts.php:472
+msgid "Contact Editor"
+msgstr "Editor de contatos"
 
-#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:1935
-#: ../../include/conversation.php:137 ../../mod/like.php:166
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s gosta de %3$s de %2$s"
+#: ../../mod/contacts.php:474 ../../mod/manage.php:110
+#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
+#: ../../mod/message.php:564 ../../mod/crepair.php:186
+#: ../../mod/events.php:478 ../../mod/content.php:710
+#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
+#: ../../mod/profiles.php:652 ../../mod/localtime.php:45
+#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
+#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
+#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
+#: ../../mod/photos.php:1697 ../../object/Item.php:678
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/diabook/config.php:148
+#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
+#: ../../view/theme/duepuntozero/config.php:59
+msgid "Submit"
+msgstr "Enviar"
 
-#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
-#: ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1189 ../../mod/photos.php:1212
-#: ../../mod/photos.php:1758 ../../mod/photos.php:1770
-msgid "Contact Photos"
-msgstr "Fotos dos contatos"
+#: ../../mod/contacts.php:475
+msgid "Profile Visibility"
+msgstr "Visibilidade do perfil"
 
-#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1189
-#: ../../mod/photos.php:1212 ../../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
-msgid "Profile Photos"
-msgstr "Fotos do perfil"
+#: ../../mod/contacts.php:476
+#, 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."
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Diretório Local"
+#: ../../mod/contacts.php:477
+msgid "Contact Information / Notes"
+msgstr "Informações sobre o contato / Anotações"
 
-#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
-msgid "Global Directory"
-msgstr "Diretório global"
+#: ../../mod/contacts.php:478
+msgid "Edit contact notes"
+msgstr "Editar as anotações do contato"
 
-#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
-msgid "Similar Interests"
-msgstr "Interesses Parecidos"
-
-#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
-#: ../../mod/suggest.php:66
-msgid "Friend Suggestions"
-msgstr "Sugestões de amigos"
+#: ../../mod/contacts.php:483 ../../mod/contacts.php:678
+#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visitar o perfil de %s [%s]"
 
-#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
-msgid "Invite Friends"
-msgstr "Convidar amigos"
+#: ../../mod/contacts.php:484
+msgid "Block/Unblock contact"
+msgstr "Bloquear/desbloquear o contato"
 
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:170
-#: ../../mod/settings.php:85 ../../mod/admin.php:1065 ../../mod/admin.php:1286
-#: ../../mod/newmember.php:22
-msgid "Settings"
-msgstr "Configurações"
+#: ../../mod/contacts.php:485
+msgid "Ignore contact"
+msgstr "Ignorar o contato"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Configure o zoom para Camadas da Terra"
+#: ../../mod/contacts.php:486
+msgid "Repair URL settings"
+msgstr "Reparar as definições de URL"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Mostre/esconda caixas na coluna à direita:"
+#: ../../mod/contacts.php:487
+msgid "View conversations"
+msgstr "Ver as conversas"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alinhamento"
+#: ../../mod/contacts.php:489
+msgid "Delete contact"
+msgstr "Excluir o contato"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Esquerda"
+#: ../../mod/contacts.php:493
+msgid "Last update:"
+msgstr "Última atualização:"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centro"
+#: ../../mod/contacts.php:495
+msgid "Update public posts"
+msgstr "Atualizar publicações públicas"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Tamanho da fonte para publicações"
+#: ../../mod/contacts.php:497 ../../mod/admin.php:1475
+msgid "Update now"
+msgstr "Atualizar agora"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Tamanho da fonte para campos texto"
+#: ../../mod/contacts.php:504
+msgid "Currently blocked"
+msgstr "Atualmente bloqueado"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Configure o esquema de cores"
+#: ../../mod/contacts.php:505
+msgid "Currently ignored"
+msgstr "Atualmente ignorado"
 
-#: ../../index.php:203 ../../mod/apps.php:7
-msgid "You must be logged in to use addons. "
-msgstr "Você precisa estar logado para usar os addons."
+#: ../../mod/contacts.php:506
+msgid "Currently archived"
+msgstr "Atualmente arquivado"
 
-#: ../../index.php:247 ../../mod/help.php:90
-msgid "Not Found"
-msgstr "Não encontrada"
+#: ../../mod/contacts.php:507 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Ocultar este contato dos outros"
 
-#: ../../index.php:250 ../../mod/help.php:93
-msgid "Page not found."
-msgstr "Página não encontrada."
+#: ../../mod/contacts.php:507
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
 
-#: ../../index.php:359 ../../mod/group.php:72 ../../mod/profperm.php:19
-msgid "Permission denied"
-msgstr "Permissão negada"
+#: ../../mod/contacts.php:508
+msgid "Notification for new posts"
+msgstr "Notificações para novas publicações"
 
-#: ../../index.php:360 ../../include/items.php:4550 ../../mod/attach.php:33
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/group.php:19 ../../mod/delegate.php:6
-#: ../../mod/notifications.php:66 ../../mod/settings.php:102
-#: ../../mod/settings.php:593 ../../mod/settings.php:598
-#: ../../mod/contacts.php:249 ../../mod/wall_attach.php:55
-#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10
-#: ../../mod/regmod.php:109 ../../mod/api.php:26 ../../mod/api.php:31
-#: ../../mod/suggest.php:56 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78
-#: ../../mod/viewcontacts.php:22 ../../mod/wall_upload.php:66
-#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140
-#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/profiles.php:148 ../../mod/profiles.php:577
-#: ../../mod/install.php:151 ../../mod/crepair.php:117 ../../mod/poke.php:135
-#: ../../mod/display.php:455 ../../mod/dfrn_confirm.php:55
-#: ../../mod/item.php:148 ../../mod/item.php:164
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/allfriends.php:9
-msgid "Permission denied."
-msgstr "Permissão negada."
+#: ../../mod/contacts.php:508
+msgid "Send a notification of every new post of this contact"
+msgstr "Envie uma notificação para todos as novas publicações deste contato"
 
-#: ../../index.php:419
-msgid "toggle mobile"
-msgstr "habilita mobile"
+#: ../../mod/contacts.php:509
+msgid "Fetch further information for feeds"
+msgstr "Pega mais informações para feeds"
 
-#: ../../boot.php:719
-msgid "Delete this item?"
-msgstr "Excluir este item?"
+#: ../../mod/contacts.php:510
+msgid "Disabled"
+msgstr "Desabilitado"
 
-#: ../../boot.php:720 ../../object/Item.php:361 ../../object/Item.php:677
-#: ../../mod/photos.php:1562 ../../mod/photos.php:1606
-#: ../../mod/photos.php:1694 ../../mod/content.php:709
-msgid "Comment"
-msgstr "Comentar"
+#: ../../mod/contacts.php:510
+msgid "Fetch information"
+msgstr "Buscar informações"
 
-#: ../../boot.php:721 ../../include/contact_widgets.php:205
-#: ../../object/Item.php:390 ../../mod/content.php:606
-msgid "show more"
-msgstr "exibir mais"
+#: ../../mod/contacts.php:510
+msgid "Fetch information and keywords"
+msgstr "Buscar informação e palavras-chave"
 
-#: ../../boot.php:722
-msgid "show fewer"
-msgstr "exibir menos"
+#: ../../mod/contacts.php:512
+msgid "Blacklisted keywords"
+msgstr "Palavras-chave na Lista Negra"
 
-#: ../../boot.php:1042 ../../boot.php:1073
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Atualização %s falhou. Vide registro de erros (log)."
+#: ../../mod/contacts.php:512
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado."
 
-#: ../../boot.php:1194
-msgid "Create a New Account"
-msgstr "Criar uma nova conta"
+#: ../../mod/contacts.php:563
+msgid "Suggestions"
+msgstr "Sugestões"
 
-#: ../../boot.php:1195 ../../include/nav.php:109 ../../mod/register.php:266
-msgid "Register"
-msgstr "Registrar"
+#: ../../mod/contacts.php:566
+msgid "Suggest potential friends"
+msgstr "Sugerir amigos em potencial"
 
-#: ../../boot.php:1219 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Sair"
+#: ../../mod/contacts.php:569 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Todos os contatos"
 
-#: ../../boot.php:1220 ../../include/nav.php:92
-msgid "Login"
-msgstr "Entrar"
+#: ../../mod/contacts.php:572
+msgid "Show all contacts"
+msgstr "Exibe todos os contatos"
 
-#: ../../boot.php:1222
-msgid "Nickname or Email address: "
-msgstr "Identificação ou endereço de e-mail: "
+#: ../../mod/contacts.php:575
+msgid "Unblocked"
+msgstr "Desbloquear"
 
-#: ../../boot.php:1223
-msgid "Password: "
-msgstr "Senha: "
+#: ../../mod/contacts.php:578
+msgid "Only show unblocked contacts"
+msgstr "Exibe somente contatos desbloqueados"
 
-#: ../../boot.php:1224
-msgid "Remember me"
-msgstr "Lembre-se de mim"
+#: ../../mod/contacts.php:582
+msgid "Blocked"
+msgstr "Bloqueado"
 
-#: ../../boot.php:1227
-msgid "Or login using OpenID: "
-msgstr "Ou login usando OpendID:"
+#: ../../mod/contacts.php:585
+msgid "Only show blocked contacts"
+msgstr "Exibe somente contatos bloqueados"
 
-#: ../../boot.php:1233
-msgid "Forgot your password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../mod/contacts.php:589
+msgid "Ignored"
+msgstr "Ignorados"
 
-#: ../../boot.php:1234 ../../mod/lostpass.php:109
-msgid "Password Reset"
-msgstr "Reiniciar a senha"
+#: ../../mod/contacts.php:592
+msgid "Only show ignored contacts"
+msgstr "Exibe somente contatos ignorados"
 
-#: ../../boot.php:1236
-msgid "Website Terms of Service"
-msgstr "Termos de Serviço do Website"
+#: ../../mod/contacts.php:596
+msgid "Archived"
+msgstr "Arquivados"
 
-#: ../../boot.php:1237
-msgid "terms of service"
-msgstr "termos de serviço"
+#: ../../mod/contacts.php:599
+msgid "Only show archived contacts"
+msgstr "Exibe somente contatos arquivados"
 
-#: ../../boot.php:1239
-msgid "Website Privacy Policy"
-msgstr "Política de Privacidade do Website"
+#: ../../mod/contacts.php:603
+msgid "Hidden"
+msgstr "Ocultos"
 
-#: ../../boot.php:1240
-msgid "privacy policy"
-msgstr "política de privacidade"
+#: ../../mod/contacts.php:606
+msgid "Only show hidden contacts"
+msgstr "Exibe somente contatos ocultos"
 
-#: ../../boot.php:1373
-msgid "Requested account is not available."
-msgstr "Conta solicitada não disponível"
+#: ../../mod/contacts.php:654
+msgid "Mutual Friendship"
+msgstr "Amizade mútua"
 
-#: ../../boot.php:1412 ../../mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Perfil solicitado não está disponível."
+#: ../../mod/contacts.php:658
+msgid "is a fan of yours"
+msgstr "é um fã seu"
 
-#: ../../boot.php:1455 ../../boot.php:1589
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Editar perfil"
+#: ../../mod/contacts.php:662
+msgid "you are a fan of"
+msgstr "você é um fã de"
 
-#: ../../boot.php:1522 ../../include/contact_widgets.php:10
-#: ../../mod/suggest.php:88 ../../mod/match.php:58
-msgid "Connect"
-msgstr "Conectar"
+#: ../../mod/contacts.php:679 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Editar o contato"
 
-#: ../../boot.php:1554
-msgid "Message"
-msgstr "Mensagem"
+#: ../../mod/contacts.php:701 ../../include/nav.php:175
+#: ../../view/theme/diabook/theme.php:125
+msgid "Contacts"
+msgstr "Contatos"
 
-#: ../../boot.php:1560 ../../include/nav.php:173
-msgid "Profiles"
-msgstr "Perfis"
+#: ../../mod/contacts.php:705
+msgid "Search your contacts"
+msgstr "Pesquisar seus contatos"
 
-#: ../../boot.php:1560
-msgid "Manage/edit profiles"
-msgstr "Gerenciar/editar perfis"
+#: ../../mod/contacts.php:706 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Pesquisando: "
 
-#: ../../boot.php:1565 ../../boot.php:1591 ../../mod/profiles.php:763
-msgid "Change profile photo"
-msgstr "Mudar a foto do perfil"
+#: ../../mod/contacts.php:707 ../../mod/directory.php:63
+#: ../../include/contact_widgets.php:34
+msgid "Find"
+msgstr "Pesquisar"
 
-#: ../../boot.php:1566 ../../mod/profiles.php:764
-msgid "Create New Profile"
-msgstr "Criar um novo perfil"
+#: ../../mod/contacts.php:712 ../../mod/settings.php:132
+#: ../../mod/settings.php:640
+msgid "Update"
+msgstr "Atualizar"
 
-#: ../../boot.php:1576 ../../mod/profiles.php:775
-msgid "Profile Image"
-msgstr "Imagem do perfil"
+#: ../../mod/contacts.php:716 ../../mod/group.php:171 ../../mod/admin.php:979
+#: ../../mod/content.php:438 ../../mod/content.php:741
+#: ../../mod/settings.php:677 ../../mod/photos.php:1654
+#: ../../object/Item.php:130 ../../include/conversation.php:614
+msgid "Delete"
+msgstr "Excluir"
 
-#: ../../boot.php:1579 ../../mod/profiles.php:777
-msgid "visible to everybody"
-msgstr "visível para todos"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nenhum perfil"
 
-#: ../../boot.php:1580 ../../mod/profiles.php:778
-msgid "Edit visibility"
-msgstr "Editar a visibilidade"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gerenciar identidades e/ou páginas"
 
-#: ../../boot.php:1602 ../../include/event.php:40
-#: ../../include/bb2diaspora.php:156 ../../mod/events.php:471
-#: ../../mod/directory.php:136
-msgid "Location:"
-msgstr "Localização:"
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
 
-#: ../../boot.php:1604 ../../include/profile_advanced.php:17
-#: ../../mod/directory.php:138
-msgid "Gender:"
-msgstr "Gênero:"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Selecione uma identidade para gerenciar: "
 
-#: ../../boot.php:1607 ../../include/profile_advanced.php:37
-#: ../../mod/directory.php:140
-msgid "Status:"
-msgstr "Situação:"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publicado com sucesso."
 
-#: ../../boot.php:1609 ../../include/profile_advanced.php:48
-#: ../../mod/directory.php:142
-msgid "Homepage:"
-msgstr "Página web:"
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
+msgid "Permission denied"
+msgstr "Permissão negada"
 
-#: ../../boot.php:1657
-msgid "Network:"
-msgstr "Rede:"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identificador de perfil inválido."
 
-#: ../../boot.php:1687 ../../boot.php:1773
-msgid "g A l F d"
-msgstr "G l d F"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor de visibilidade do perfil"
 
-#: ../../boot.php:1688 ../../boot.php:1774
-msgid "F d"
-msgstr "F d"
+#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2114
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Profile"
+msgstr "Perfil "
 
-#: ../../boot.php:1733 ../../boot.php:1814
-msgid "[today]"
-msgstr "[hoje]"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Clique em um contato para adicionar ou remover."
 
-#: ../../boot.php:1745
-msgid "Birthday Reminders"
-msgstr "Lembretes de aniversário"
-
-#: ../../boot.php:1746
-msgid "Birthdays this week:"
-msgstr "Aniversários nesta semana:"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visível para"
 
-#: ../../boot.php:1807
-msgid "[No description]"
-msgstr "[Sem descrição]"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Todos os contatos (com acesso a perfil seguro)"
 
-#: ../../boot.php:1825
-msgid "Event Reminders"
-msgstr "Lembretes de eventos"
+#: ../../mod/display.php:70 ../../mod/display.php:260
+#: ../../mod/display.php:479 ../../mod/viewsrc.php:15 ../../mod/admin.php:166
+#: ../../mod/admin.php:1024 ../../mod/admin.php:1237 ../../mod/notice.php:15
+#: ../../include/items.php:4487
+msgid "Item not found."
+msgstr "O item não foi encontrado."
 
-#: ../../boot.php:1826
-msgid "Events this week:"
-msgstr "Eventos esta semana:"
+#: ../../mod/display.php:200 ../../mod/videos.php:115
+#: ../../mod/viewcontacts.php:17 ../../mod/community.php:18
+#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
+#: ../../mod/directory.php:33 ../../mod/photos.php:920
+msgid "Public access denied."
+msgstr "Acesso público negado."
 
-#: ../../boot.php:2063 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/display.php:308 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "O acesso a este perfil está restrito."
 
-#: ../../boot.php:2066
-msgid "Status Messages and Posts"
-msgstr "Mensagem de Estado (status) e Publicações"
+#: ../../mod/display.php:472
+msgid "Item has been removed."
+msgstr "O item foi removido."
 
-#: ../../boot.php:2073
-msgid "Profile Details"
-msgstr "Detalhe do Perfil"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bemvindo ao Friendica"
 
-#: ../../boot.php:2080 ../../mod/photos.php:52
-msgid "Photo Albums"
-msgstr "Álbuns de fotos"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Dicas para os novos membros"
 
-#: ../../boot.php:2084 ../../boot.php:2087 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Vídeos"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
 
-#: ../../boot.php:2097
-msgid "Events and Calendar"
-msgstr "Eventos e Agenda"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Do Início"
 
-#: ../../boot.php:2101 ../../mod/notes.php:44
-msgid "Personal Notes"
-msgstr "Notas pessoais"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Passo-a-passo da friendica"
 
-#: ../../boot.php:2104
-msgid "Only You Can See This"
-msgstr "Somente Você Pode Ver Isso"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Funcionalidades Gerais"
+#: ../../mod/newmember.php:22 ../../mod/admin.php:1076
+#: ../../mod/admin.php:1297 ../../mod/settings.php:85
+#: ../../include/nav.php:170 ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648
+msgid "Settings"
+msgstr "Configurações"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Perfís Múltiplos"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Ir para as suas configurações"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Capacidade de criar perfis múltiplos"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Funcionalidades de Composição de Publicações"
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Editor Richtext"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+#: ../../mod/profiles.php:665
+msgid "Upload Profile Photo"
+msgstr "Enviar foto do perfil"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Habilite editor richtext"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Pré-visualização da Publicação"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editar seu perfil"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Auto-menção Fóruns"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Palavras-chave do perfil"
 
-#: ../../include/features.php:33
+#: ../../mod/newmember.php:40
 msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets da Barra Lateral da Rede"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Conexões"
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Buscar por Data"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Capacidade de selecionar publicações por intervalos de data"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Filtrar Grupo"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importação de e-mails"
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Filtrar Rede"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Ir para a sua página de contatos"
 
-#: ../../include/features.php:42 ../../mod/network.php:188
-#: ../../mod/search.php:30
-msgid "Saved Searches"
-msgstr "Pesquisas salvas"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Guarde as palavras-chaves para reuso"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Ir para o diretório do seu site"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Abas da Rede"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Aba Pessoal da Rede"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Pesquisar por novas pessoas"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
+#: ../../mod/newmember.php:62
+msgid ""
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Aba Nova da Rede"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Grupos"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Agrupe seus contatos"
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Aba de Links Compartilhados da Rede"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "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."
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Por que as minhas publicações não são públicas?"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Ferramentas de Publicação/Comentário"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "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."
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Deleção Multipla"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtendo ajuda"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Ir para a seção de ajuda"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Editar Publicações Enviadas"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editar e corrigir publicações e comentários após envio"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Etiquetagem"
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "A conta não foi encontrada e não são permitidos registros via OpenID nesse site."
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Capacidade de colocar etiquetas em publicações existentes"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Não foi possível autenticar."
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Categorias de Publicações"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "A imagem foi enviada, mas não foi possível cortá-la."
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Adicione Categorias ás Publicações"
+#: ../../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
+#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+#: ../../view/theme/diabook/theme.php:500
+msgid "Profile Photos"
+msgstr "Fotos do perfil"
 
-#: ../../include/features.php:60 ../../include/contact_widgets.php:104
-msgid "Saved Folders"
-msgstr "Pastas salvas"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Capacidade de arquivar publicações em pastas"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Desgostar de publicações"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Não foi possível processar a imagem"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Capacidade de desgostar de publicações/comentários"
+#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "A imagem excede o limite de tamanho de %d"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Destacar publicações"
+#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
+#: ../../mod/photos.php:807
+msgid "Unable to process image."
+msgstr "Não foi possível processar a imagem."
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Enviar arquivo:"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Silenciar Notificações de Postagem"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Selecione um perfil:"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Habilitar notificação silenciosa para a tarefa"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Enviar"
 
-#: ../../include/items.php:2090 ../../include/datetime.php:472
-#, php-format
-msgid "%s's birthday"
-msgstr "aniversários de %s's"
+#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
+msgid "or"
+msgstr "ou"
 
-#: ../../include/items.php:2091 ../../include/datetime.php:473
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Feliz Aniversário %s"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "pule esta etapa"
 
-#: ../../include/items.php:3856 ../../mod/dfrn_request.php:721
-#: ../../mod/dfrn_confirm.php:752
-msgid "[Name Withheld]"
-msgstr "[Nome não revelado]"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "selecione uma foto de um álbum de fotos"
 
-#: ../../include/items.php:4354 ../../mod/admin.php:166
-#: ../../mod/admin.php:1013 ../../mod/admin.php:1226 ../../mod/viewsrc.php:15
-#: ../../mod/notice.php:15 ../../mod/display.php:70 ../../mod/display.php:240
-#: ../../mod/display.php:459
-msgid "Item not found."
-msgstr "O item não foi encontrado."
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Cortar a imagem"
 
-#: ../../include/items.php:4393
-msgid "Do you really want to delete this item?"
-msgstr "Você realmente deseja deletar esse item?"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
 
-#: ../../include/items.php:4395 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1013 ../../mod/settings.php:1021
-#: ../../mod/settings.php:1025 ../../mod/settings.php:1030
-#: ../../mod/settings.php:1036 ../../mod/settings.php:1042
-#: ../../mod/settings.php:1048 ../../mod/settings.php:1078
-#: ../../mod/settings.php:1079 ../../mod/settings.php:1080
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/contacts.php:332 ../../mod/register.php:230
-#: ../../mod/dfrn_request.php:834 ../../mod/api.php:105
-#: ../../mod/suggest.php:29 ../../mod/message.php:209
-#: ../../mod/profiles.php:620 ../../mod/profiles.php:623
-msgid "Yes"
-msgstr "Sim"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Encerrar a edição"
 
-#: ../../include/items.php:4398 ../../include/conversation.php:1129
-#: ../../mod/settings.php:612 ../../mod/settings.php:638
-#: ../../mod/contacts.php:335 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32
-#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11
-#: ../../mod/tagrm.php:94 ../../mod/message.php:212
-msgid "Cancel"
-msgstr "Cancelar"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "A imagem foi enviada com sucesso."
 
-#: ../../include/items.php:4616
-msgid "Archives"
-msgstr "Arquivos"
+#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
+#: ../../mod/photos.php:834
+msgid "Image upload failed."
+msgstr "Não foi possível enviar a imagem."
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../include/conversation.php:126 ../../include/conversation.php:254
+#: ../../include/text.php:1965 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:471
+msgid "photo"
+msgstr "foto"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Grupo de privacidade padrão para novos contatos"
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
+#: ../../mod/like.php:319 ../../include/conversation.php:121
+#: ../../include/conversation.php:130 ../../include/conversation.php:249
+#: ../../include/conversation.php:258 ../../include/diaspora.php:1919
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475
+msgid "status"
+msgstr "status"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Todos"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s está seguindo %2$s's %3$s"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "editar"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "A etiqueta foi removida"
 
-#: ../../include/group.php:270 ../../mod/newmember.php:66
-msgid "Groups"
-msgstr "Grupos"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Remover a etiqueta do item"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editar grupo"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Selecione uma etiqueta para remover: "
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Criar um novo grupo"
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
+msgid "Remove"
+msgstr "Remover"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contatos não estão dentro de nenhum grupo"
+#: ../../mod/filer.php:30 ../../include/conversation.php:1006
+#: ../../include/conversation.php:1024
+msgid "Save to Folder:"
+msgstr "Salvar na pasta:"
 
-#: ../../include/group.php:275 ../../mod/network.php:189
-msgid "add"
-msgstr "adicionar"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "-selecione-"
+
+#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
+#: ../../include/text.php:955
+msgid "Save"
+msgstr "Salvar"
+
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "O contato foi adicionado"
+
+#: ../../mod/item.php:113
+msgid "Unable to locate original post."
+msgstr "Não foi possível localizar a publicação original."
+
+#: ../../mod/item.php:345
+msgid "Empty post discarded."
+msgstr "A publicação em branco foi descartada."
 
-#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926
-#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955
-#: ../../include/Photo.php:911 ../../include/Photo.php:926
-#: ../../include/Photo.php:933 ../../include/Photo.php:955
-#: ../../include/message.php:144 ../../mod/wall_upload.php:169
+#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
 #: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../mod/item.php:463
+#: ../../include/Photo.php:916 ../../include/Photo.php:931
+#: ../../include/Photo.php:938 ../../include/Photo.php:960
+#: ../../include/message.php:144
 msgid "Wall Photos"
 msgstr "Fotos do mural"
 
-#: ../../include/dba.php:51 ../../include/dba_pdo.php:72
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Não foi possível localizar a informação de DNS para o servidor de banco de dados '%s'"
+#: ../../mod/item.php:938
+msgid "System error. Post not saved."
+msgstr "Erro no sistema. A publicação não foi salva."
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Adicionar Contato Novo"
+#: ../../mod/item.php:964
+#, 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."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Forneça endereço ou localização web"
+#: ../../mod/item.php:966
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Você pode visitá-lo em %s"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
+#: ../../mod/item.php:967
+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."
 
-#: ../../include/contact_widgets.php:24
+#: ../../mod/item.php:971
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d convite disponível"
-msgstr[1] "%d convites disponíveis"
+msgid "%s posted an update."
+msgstr "%s publicou uma atualização."
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Pesquisar por pessoas"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "O grupo foi criado."
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Fornecer nome ou interesse"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Não foi possível criar o grupo."
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Conectar-se/acompanhar"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "O grupo não foi encontrado."
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Examplos: Robert Morgenstein, Fishing"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "O nome do grupo foi alterado."
 
-#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:700
-#: ../../mod/directory.php:63
-msgid "Find"
-msgstr "Pesquisar"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Salvar o grupo"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Perfil Randômico"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Criar um grupo de contatos/amigos."
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Redes"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nome do grupo: "
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Todas as redes"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "O grupo foi removido."
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Tudo"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Não foi possível remover o grupo."
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Categorias"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Editor de grupo"
 
-#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:427
-#, 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/group.php:192
+msgid "Members"
+msgstr "Membros"
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Notificação Friendica"
+#: ../../mod/apps.php:7 ../../index.php:212
+msgid "You must be logged in to use addons. "
+msgstr "Você precisa estar logado para usar os addons."
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Obrigado,"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplicativos"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrador"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Nenhum aplicativo instalado"
 
-#: ../../include/enotify.php:30 ../../include/delivery.php:467
-#: ../../include/notifier.php:784
-msgid "noreply"
-msgstr "naoresponda"
+#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:162
+#: ../../mod/profiles.php:596
+msgid "Profile not found."
+msgstr "O perfil não foi encontrado."
 
-#: ../../include/enotify.php:55
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
+#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
+msgid "Contact not found."
+msgstr "O contato não foi encontrado."
 
-#: ../../include/enotify.php:59
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
 
-#: ../../include/enotify.php:61
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "A resposta do site remoto não foi compreendida."
 
-#: ../../include/enotify.php:62
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s lhe enviou %2$s."
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Resposta inesperada do site remoto: "
 
-#: ../../include/enotify.php:62
-msgid "a private message"
-msgstr "uma mensagem privada"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "A confirmação foi completada com sucesso."
 
-#: ../../include/enotify.php:63
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "O site remoto relatou: "
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Falha temporária. Por favor, aguarde e tente novamente."
 
-#: ../../include/enotify.php:122
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Não foi possível definir a foto do contato."
 
-#: ../../include/enotify.php:140
+#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
+#: ../../include/diaspora.php:620
 #, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s agora é amigo de %2$s"
 
-#: ../../include/enotify.php:141
+#: ../../mod/dfrn_confirm.php:571
 #, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s comentou um item/conversa que você está seguindo."
+msgid "No user record found for '%s' "
+msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
 
-#: ../../include/enotify.php:144 ../../include/enotify.php:159
-#: ../../include/enotify.php:172 ../../include/enotify.php:185
-#: ../../include/enotify.php:203 ../../include/enotify.php:216
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Favor visitar %s para ver e/ou responder à conversa."
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
 
-#: ../../include/enotify.php:151
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
+#: ../../mod/dfrn_confirm.php:592
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
 
-#: ../../include/enotify.php:153
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s publicou no mural do seu perfil em %2$s"
+#: ../../mod/dfrn_confirm.php:613
+msgid "Contact record was not found for you on our site."
+msgstr "O registro do contato não foi encontrado para você em seu site."
 
-#: ../../include/enotify.php:155
+#: ../../mod/dfrn_confirm.php:627
 #, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
+msgid "Site public key not available in contact record for URL %s."
+msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
 
-#: ../../include/enotify.php:166
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s etiquetou você"
+#: ../../mod/dfrn_confirm.php:647
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
 
-#: ../../include/enotify.php:167
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s etiquetou você em %2$s"
+#: ../../mod/dfrn_confirm.php:658
+msgid "Unable to set your contact credentials on our system."
+msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
 
-#: ../../include/enotify.php:168
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]etiquetou você[/url]."
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
+msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
 
-#: ../../include/enotify.php:179
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
+#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
+#: ../../include/items.php:3979
+msgid "[Name Withheld]"
+msgstr "[Nome não revelado]"
 
-#: ../../include/enotify.php:180
+#: ../../mod/dfrn_confirm.php:797
 #, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s compartilhou uma nova publicação em %2$s"
+msgid "%1$s has joined %2$s"
+msgstr "%1$s se associou a %2$s"
 
-#: ../../include/enotify.php:181
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
+#: ../../mod/profile.php:21 ../../boot.php:1453
+msgid "Requested profile is not available."
+msgstr "Perfil solicitado não está disponível."
 
-#: ../../include/enotify.php:193
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s cutucou você"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Dicas para novos membros"
 
-#: ../../include/enotify.php:194
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s cutucou você em %2$s"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Nenhum vídeo selecionado"
 
-#: ../../include/enotify.php:195
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]cutucou você[/url]."
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "O acesso a este item é restrito."
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s etiquetou sua publicação"
+#: ../../mod/videos.php:301 ../../include/text.php:1402
+msgid "View Video"
+msgstr "Ver Vídeo"
 
-#: ../../include/enotify.php:211
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s etiquetou sua publicação em %2$s"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Ver álbum"
 
-#: ../../include/enotify.php:212
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Vídeos Recentes"
 
-#: ../../include/enotify.php:223
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] Você recebeu uma apresentação"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Envie Novos Vídeos"
 
-#: ../../include/enotify.php:224
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
 
-#: ../../include/enotify.php:225
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "A sugestão de amigo foi enviada"
 
-#: ../../include/enotify.php:228 ../../include/enotify.php:270
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Você pode visitar o perfil deles em %s"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Sugerir amigos"
 
-#: ../../include/enotify.php:230
+#: ../../mod/fsuggest.php:99
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
-
-#: ../../include/enotify.php:238
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"
+msgid "Suggest a friend for %s"
+msgstr "Sugerir um amigo para %s"
 
-#: ../../include/enotify.php:239 ../../include/enotify.php:240
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s está compartilhando com você via %2$s"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Não foi encontrada nenhuma conta válida."
 
-#: ../../include/enotify.php:246
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Notificação] Você tem um novo seguidor"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
 
-#: ../../include/enotify.php:247 ../../include/enotify.php:248
+#: ../../mod/lostpass.php:42
 #, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Você tem um novo seguidor em %2$s : %1$s"
-
-#: ../../include/enotify.php:261
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\tPrezado %1$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação."
 
-#: ../../include/enotify.php:262
+#: ../../mod/lostpass.php:53
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2$s\n\t\tNome de Login:\t%3$s"
 
-#: ../../include/enotify.php:263
+#: ../../mod/lostpass.php:72
 #, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
+msgid "Password reset requested at %s"
+msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
 
-#: ../../include/enotify.php:268
-msgid "Name:"
-msgstr "Nome:"
+#: ../../mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
 
-#: ../../include/enotify.php:269
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../mod/lostpass.php:109 ../../boot.php:1275
+msgid "Password Reset"
+msgstr "Redifinir a senha"
 
-#: ../../include/enotify.php:272
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Sua senha foi reiniciada, conforme solicitado."
 
-#: ../../include/enotify.php:280 ../../include/enotify.php:293
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Notificação] Conexão aceita"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Sua nova senha é"
 
-#: ../../include/enotify.php:281 ../../include/enotify.php:294
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' sua solicitação de conexão foi aceita em %2$s"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Grave ou copie a sua nova senha e, então"
 
-#: ../../include/enotify.php:282 ../../include/enotify.php:295
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s Foi aceita [url=%1$s] a conexão solicitada[/url]."
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "clique aqui para entrar"
 
-#: ../../include/enotify.php:285
+#: ../../mod/lostpass.php:114
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
 
-#: ../../include/enotify.php:288 ../../include/enotify.php:302
+#: ../../mod/lostpass.php:125
 #, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr ""
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tCaro %1$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t"
 
-#: ../../include/enotify.php:298
+#: ../../mod/lostpass.php:131
 #, php-format
 msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1$s\n\t\t\t\tNome de Login:\t%2$s\n\t\t\t\tSenha:\t%3$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t"
 
-#: ../../include/enotify.php:300
+#: ../../mod/lostpass.php:147
 #, php-format
+msgid "Your password has been changed at %s"
+msgstr "Sua senha foi modifica às %s"
+
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Esqueceu a sua senha?"
+
+#: ../../mod/lostpass.php:160
 msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
 
-#: ../../include/enotify.php:313
-msgid "[Friendica System:Notify] registration request"
-msgstr ""
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Identificação ou e-mail: "
 
-#: ../../include/enotify.php:314
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Reiniciar"
 
-#: ../../include/enotify.php:315
+#: ../../mod/like.php:166 ../../include/conversation.php:137
+#: ../../include/diaspora.php:1935 ../../view/theme/diabook/theme.php:480
 #, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr ""
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s gosta de %3$s de %2$s"
 
-#: ../../include/enotify.php:318
+#: ../../mod/like.php:168 ../../include/conversation.php:140
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr ""
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s não gosta de %3$s de %2$s"
 
-#: ../../include/enotify.php:321
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr ""
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} deseja ser seu amigo"
 
-#: ../../include/api.php:262 ../../include/api.php:273
-#: ../../include/api.php:374 ../../include/api.php:958
-#: ../../include/api.php:960
-msgid "User not found."
-msgstr "Usuário não encontrado."
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} lhe enviou uma mensagem"
 
-#: ../../include/api.php:1167
-msgid "There is no status with this id."
-msgstr "Não existe status com esse id."
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} solicitou registro"
 
-#: ../../include/api.php:1237
-msgid "There is no conversation with this id."
-msgstr "Não existe conversas com esse id."
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} comentou a publicação de %s"
 
-#: ../../include/network.php:892
-msgid "view full size"
-msgstr "ver na tela inteira"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} gostou da publicação de %s"
 
-#: ../../include/Scrape.php:584
-msgid " on Last.fm"
-msgstr "na Last.fm"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} desgostou da publicação de %s"
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1125
-msgid "Full Name:"
-msgstr "Nome completo:"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} agora é amigo de %s"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j de F, Y"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} publicou"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j de F"
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} etiquetou a publicação de %s com #%s"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Aniversário:"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} mencionou você em uma publicação"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Idade:"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Nenhum contato."
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "para %1$d %2$s"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:875
+msgid "View Contacts"
+msgstr "Ver contatos"
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:673
-msgid "Sexual Preference:"
-msgstr "Preferência sexual:"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identificador de solicitação inválido"
 
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:675
-msgid "Hometown:"
-msgstr "Cidade:"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Descartar"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Etiquetas:"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Sistema"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:676
-msgid "Political Views:"
-msgstr "Posição política:"
+#: ../../mod/notifications.php:83 ../../include/nav.php:143
+msgid "Network"
+msgstr "Rede"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religião:"
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Pessoal"
 
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:144
-msgid "About:"
-msgstr "Sobre:"
+#: ../../mod/notifications.php:93 ../../include/nav.php:105
+#: ../../include/nav.php:146 ../../view/theme/diabook/theme.php:123
+msgid "Home"
+msgstr "Pessoal"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passatempos/Interesses:"
+#: ../../mod/notifications.php:98 ../../include/nav.php:152
+msgid "Introductions"
+msgstr "Apresentações"
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:680
-msgid "Likes:"
-msgstr "Gosta de:"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Exibir solicitações ignoradas"
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:681
-msgid "Dislikes:"
-msgstr "Não gosta de:"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Ocultar solicitações ignoradas"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informações de contato e redes sociais:"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Tipo de notificação:"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Preferências musicais:"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Sugestão de amigo"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Livros, literatura:"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerido por %s"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisão:"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Publicar a adição de amigo"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filmes/dança/cultura/entretenimento:"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "se aplicável"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amor/romance:"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:977
+msgid "Approve"
+msgstr "Aprovar"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Trabalho/emprego:"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Alega ser conhecido por você: "
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Escola/educação:"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "sim"
 
-#: ../../include/nav.php:34 ../../mod/navigation.php:20
-msgid "Nothing new here"
-msgstr "Nada de novo aqui"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "não"
 
-#: ../../include/nav.php:38 ../../mod/navigation.php:24
-msgid "Clear notifications"
-msgstr "Descartar notificações"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Aprovar como:"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Terminar esta sessão"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Amigo"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Seus vídeos"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Compartilhador"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr ""
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fã/Admirador"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Entrar"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Página pessoal"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Novo acompanhante"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Criar uma conta"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Sem apresentações."
 
-#: ../../include/nav.php:114 ../../mod/help.php:84
-msgid "Help"
-msgstr "Ajuda"
+#: ../../mod/notifications.php:220 ../../include/nav.php:153
+msgid "Notifications"
+msgstr "Notificações"
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Ajuda e documentação"
+#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s gostou da publicação de %s"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Aplicativos"
+#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
+#: ../../mod/notifications.php:488
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s desgostou da publicação de %s"
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Complementos, utilitários, jogos"
+#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
+#: ../../mod/notifications.php:503
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s agora é amigo de %s"
 
-#: ../../include/nav.php:119 ../../include/text.php:952
-#: ../../include/text.php:953 ../../mod/search.php:99
-msgid "Search"
-msgstr "Pesquisar"
+#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
+#, php-format
+msgid "%s created a new post"
+msgstr "%s criou uma nova publicação"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Pesquisar conteúdo no site"
+#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
+#: ../../mod/notifications.php:513
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s comentou uma publicação de %s"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Conversas neste site"
+#: ../../mod/notifications.php:306
+msgid "No more network notifications."
+msgstr "Nenhuma notificação de rede."
 
-#: ../../include/nav.php:131
-msgid "Directory"
-msgstr "Diretório"
+#: ../../mod/notifications.php:310
+msgid "Network Notifications"
+msgstr "Notificações de rede"
 
-#: ../../include/nav.php:131
-msgid "People directory"
-msgstr "Diretório de pessoas"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Não fazer notificações de sistema."
 
-#: ../../include/nav.php:133
-msgid "Information"
-msgstr "Informação"
+#: ../../mod/notifications.php:340 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Notificações de sistema"
 
-#: ../../include/nav.php:133
-msgid "Information about this friendica instance"
-msgstr "Informação sobre esta instância do friendica"
+#: ../../mod/notifications.php:435
+msgid "No more personal notifications."
+msgstr "Nenhuma notificação pessoal."
 
-#: ../../include/nav.php:143 ../../mod/notifications.php:83
-msgid "Network"
-msgstr "Rede"
+#: ../../mod/notifications.php:439
+msgid "Personal Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../include/nav.php:143
-msgid "Conversations from your friends"
-msgstr "Conversas dos seus amigos"
+#: ../../mod/notifications.php:520
+msgid "No more home notifications."
+msgstr "Não existe mais nenhuma notificação pessoal."
 
-#: ../../include/nav.php:144
-msgid "Network Reset"
-msgstr "Reiniciar Rede"
+#: ../../mod/notifications.php:524
+msgid "Home Notifications"
+msgstr "Notificações pessoais"
 
-#: ../../include/nav.php:144
-msgid "Load Network page with no filters"
-msgstr "Carregar página Rede sem filtros"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texto fonte (bbcode):"
 
-#: ../../include/nav.php:152 ../../mod/notifications.php:98
-msgid "Introductions"
-msgstr "Apresentações"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texto fonte (Diaspora) a converter para BBcode:"
 
-#: ../../include/nav.php:152
-msgid "Friend Requests"
-msgstr "Requisições de Amizade"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Entrada fonte:"
 
-#: ../../include/nav.php:153 ../../mod/notifications.php:220
-msgid "Notifications"
-msgstr "Notificações"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML puro):"
 
-#: ../../include/nav.php:154
-msgid "See all notifications"
-msgstr "Ver todas notificações"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../include/nav.php:155
-msgid "Mark all system notifications seen"
-msgstr "Marcar todas as notificações de sistema como vistas"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../include/nav.php:159 ../../mod/notifications.php:103
-#: ../../mod/message.php:182
-msgid "Messages"
-msgstr "Mensagens"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../include/nav.php:159
-msgid "Private mail"
-msgstr "Mensagem privada"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../include/nav.php:160
-msgid "Inbox"
-msgstr "Recebidas"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/nav.php:161
-msgid "Outbox"
-msgstr "Enviadas"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
+
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Fonte de entrada (formato Diaspora):"
+
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
+
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Nada de novo aqui"
+
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Descartar notificações"
 
-#: ../../include/nav.php:162 ../../mod/message.php:9
+#: ../../mod/message.php:9 ../../include/nav.php:162
 msgid "New Message"
 msgstr "Nova mensagem"
 
-#: ../../include/nav.php:165
-msgid "Manage"
-msgstr "Gerenciar"
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Não foi selecionado nenhum destinatário."
 
-#: ../../include/nav.php:165
-msgid "Manage other pages"
-msgstr "Gerenciar outras páginas"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Não foi possível localizar informação do contato."
 
-#: ../../include/nav.php:168 ../../mod/settings.php:62
-msgid "Delegations"
-msgstr "Delegações"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Não foi possível enviar a mensagem."
 
-#: ../../include/nav.php:168 ../../mod/delegate.php:124
-msgid "Delegate Page Management"
-msgstr "Delegar Administração de Página"
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Falha na coleta de mensagens."
 
-#: ../../include/nav.php:170
-msgid "Account settings"
-msgstr "Configurações da conta"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "A mensagem foi enviada."
 
-#: ../../include/nav.php:173
-msgid "Manage/Edit Profiles"
-msgstr "Administrar/Editar Perfis"
+#: ../../mod/message.php:182 ../../include/nav.php:159
+msgid "Messages"
+msgstr "Mensagens"
 
-#: ../../include/nav.php:175
-msgid "Manage/edit friends and contacts"
-msgstr "Gerenciar/editar amigos e contatos"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Você realmente deseja deletar essa mensagem?"
 
-#: ../../include/nav.php:182 ../../mod/admin.php:128
-msgid "Admin"
-msgstr "Admin"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "A mensagem foi excluída."
 
-#: ../../include/nav.php:182
-msgid "Site setup and configuration"
-msgstr "Configurações do site"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "A conversa foi removida."
 
-#: ../../include/nav.php:186
-msgid "Navigation"
-msgstr "Navegação"
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a link URL:"
+msgstr "Por favor, digite uma URL:"
 
-#: ../../include/nav.php:186
-msgid "Site map"
-msgstr "Mapa do Site"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Enviar mensagem privada"
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Clique aqui para atualização (upgrade)."
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "Para:"
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Assunto:"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Essa ação não está disponível em seu plano de assinatura."
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Sua mensagem:"
 
-#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
-msgid "Disallowed profile URL."
-msgstr "URL de perfil não permitida."
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
+#: ../../include/conversation.php:1091
+msgid "Upload photo"
+msgstr "Enviar foto"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de conexão faltando."
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
+#: ../../include/conversation.php:1095
+msgid "Insert web link"
+msgstr "Inserir link web"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Este site não está configurado para permitir comunicações com outras redes."
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/content.php:499 ../../mod/content.php:883
+#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
+#: ../../mod/photos.php:1545 ../../object/Item.php:364
+#: ../../include/conversation.php:692 ../../include/conversation.php:1109
+msgid "Please wait"
+msgstr "Por favor, espere"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nenhuma mensagem."
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "O endereço de perfil especificado não fornece informação adequada."
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Remetente desconhecido - %s"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Não foi encontrado nenhum autor ou nome."
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Você e %s"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s e você"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Excluir conversa"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Use mailto: antes do endereço para forçar a checagem de email."
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d mensagem"
+msgstr[1] "%d mensagens"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "A mensagem não está disponível."
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Não foi possível recuperar a informação do contato."
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Excluir a mensagem"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "acompanhando"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Erro ao decodificar arquivo de conta"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Enviar resposta"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
+#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
+#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
+#: ../../mod/update_network.php:25
+msgid "[Embedded content - reload page to view]"
+msgstr "[Conteúdo incorporado - recarregue a página para ver]"
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erro! Não consigo conferir o apelido (nickname)"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "As configurações do contato foram aplicadas."
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "User '%s' já existe nesse servidor!"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Não foi possível atualizar o contato."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erro na criação do usuário"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Corrigir configurações do contato"
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erro na criação do perfil do Usuário"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
 
-#: ../../include/uimport.php:220
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contato não foi importado"
-msgstr[1] "%d contatos não foram importados"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
 
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Voltar ao editor de contatos"
 
-#: ../../include/event.php:11 ../../include/bb2diaspora.php:134
-#: ../../mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ H:i"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Nenhum espelhamento"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:140
-msgid "Starts:"
-msgstr "Início:"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Espelhar como postagem encaminhada"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:148
-msgid "Finishes:"
-msgstr "Término:"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Espelhar como minha própria postagem"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "parou de acompanhar"
+#: ../../mod/crepair.php:165 ../../mod/admin.php:975 ../../mod/admin.php:987
+#: ../../mod/admin.php:988 ../../mod/admin.php:1001 ../../mod/settings.php:616
+#: ../../mod/settings.php:642
+msgid "Name"
+msgstr "Nome"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Cutucar"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Identificação da conta"
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Ver Status"
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - sobrescreve Nome/Identificação"
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Ver Perfil"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL da conta"
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Ver Fotos"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "URL da requisição de amizade"
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Publicações da Rede"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL da confirmação de amizade"
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Editar Contato"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "URL do ponto final da notificação"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Excluir o contato"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "URL do captador/fonte de notícias"
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Enviar MP"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nova imagem desta URL"
 
-#: ../../include/dbstructure.php:23
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr ""
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr "Auto remoto"
 
-#: ../../include/dbstructure.php:28
-#, php-format
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr "Espelhar publicações deste contato"
+
+#: ../../mod/crepair.php:176
 msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário."
 
-#: ../../include/dbstructure.php:181
-msgid "Errors encountered creating database tables."
-msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Acesso negado."
 
-#: ../../include/dbstructure.php:239
-msgid "Errors encountered performing database changes."
-msgstr ""
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Pesquisar pessoas"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Miscelânea"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Nenhuma correspondência"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "ano"
+#: ../../mod/fbrowser.php:25 ../../boot.php:2121 ../../include/nav.php:78
+#: ../../view/theme/diabook/theme.php:126
+msgid "Photos"
+msgstr "Fotos"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "s"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Arquivos"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dia"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contatos que não são membros de um grupo"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nunca"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "As configurações do tema foram atualizadas."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "menos de um segundo atrás"
+#: ../../mod/admin.php:104 ../../mod/admin.php:596
+msgid "Site"
+msgstr "Site"
 
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "anos"
+#: ../../mod/admin.php:105 ../../mod/admin.php:970 ../../mod/admin.php:985
+msgid "Users"
+msgstr "Usuários"
 
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "meses"
+#: ../../mod/admin.php:106 ../../mod/admin.php:1074 ../../mod/admin.php:1127
+#: ../../mod/settings.php:57
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "semana"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1295 ../../mod/admin.php:1329
+msgid "Themes"
+msgstr "Temas"
 
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "semanas"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "Atualizações do BD"
 
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "dias"
+#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1416
+msgid "Logs"
+msgstr "Relatórios"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "hora"
+#: ../../mod/admin.php:128 ../../include/nav.php:182
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "horas"
+#: ../../mod/admin.php:129
+msgid "Plugin Features"
+msgstr "Recursos do plugin"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuto"
+#: ../../mod/admin.php:131
+msgid "User registrations waiting for confirmation"
+msgstr "Cadastros de novos usuários aguardando confirmação"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minutos"
+#: ../../mod/admin.php:190 ../../mod/admin.php:924
+msgid "Normal Account"
+msgstr "Conta normal"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "segundo"
+#: ../../mod/admin.php:191 ../../mod/admin.php:925
+msgid "Soapbox Account"
+msgstr "Conta de vitrine"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "segundos"
+#: ../../mod/admin.php:192 ../../mod/admin.php:926
+msgid "Community/Celebrity Account"
+msgstr "Conta de comunidade/celebridade"
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s atrás"
+#: ../../mod/admin.php:193 ../../mod/admin.php:927
+msgid "Automatic Friend Account"
+msgstr "Conta de amigo automático"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[sem assunto]"
+#: ../../mod/admin.php:194
+msgid "Blog Account"
+msgstr "Conta de blog"
 
-#: ../../include/delivery.php:456 ../../include/notifier.php:774
-msgid "(no subject)"
-msgstr "(sem assunto)"
+#: ../../mod/admin.php:195
+msgid "Private Forum"
+msgstr "Fórum privado"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Desconhecido | Não categorizado"
+#: ../../mod/admin.php:214
+msgid "Message queues"
+msgstr "Fila de mensagens"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquear imediatamente"
+#: ../../mod/admin.php:219 ../../mod/admin.php:595 ../../mod/admin.php:969
+#: ../../mod/admin.php:1073 ../../mod/admin.php:1126 ../../mod/admin.php:1294
+#: ../../mod/admin.php:1328 ../../mod/admin.php:1415
+msgid "Administration"
+msgstr "Administração"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Dissimulado, spammer, propagandista"
+#: ../../mod/admin.php:220
+msgid "Summary"
+msgstr "Resumo"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Eu conheço, mas não possuo nenhuma opinião acerca"
+#: ../../mod/admin.php:222
+msgid "Registered users"
+msgstr "Usuários registrados"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "Ok, provavelmente inofensivo"
+#: ../../mod/admin.php:224
+msgid "Pending registrations"
+msgstr "Registros pendentes"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Boa reputação, tem minha confiança"
+#: ../../mod/admin.php:225
+msgid "Version"
+msgstr "Versão"
+
+#: ../../mod/admin.php:229
+msgid "Active plugins"
+msgstr "Plugins ativos"
+
+#: ../../mod/admin.php:252
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
+
+#: ../../mod/admin.php:500
+msgid "Site settings updated."
+msgstr "As configurações do site foram atualizadas."
+
+#: ../../mod/admin.php:529 ../../mod/settings.php:828
+msgid "No special theme for mobile devices"
+msgstr "Nenhum tema especial para dispositivos móveis"
 
-#: ../../include/contact_selectors.php:56 ../../mod/admin.php:542
+#: ../../mod/admin.php:547
+msgid "At post arrival"
+msgstr "Na chegada da publicação"
+
+#: ../../mod/admin.php:548 ../../include/contact_selectors.php:56
 msgid "Frequently"
 msgstr "Frequentemente"
 
-#: ../../include/contact_selectors.php:57 ../../mod/admin.php:543
+#: ../../mod/admin.php:549 ../../include/contact_selectors.php:57
 msgid "Hourly"
 msgstr "De hora em hora"
 
-#: ../../include/contact_selectors.php:58 ../../mod/admin.php:544
+#: ../../mod/admin.php:550 ../../include/contact_selectors.php:58
 msgid "Twice daily"
 msgstr "Duas vezes ao dia"
 
-#: ../../include/contact_selectors.php:59 ../../mod/admin.php:545
+#: ../../mod/admin.php:551 ../../include/contact_selectors.php:59
 msgid "Daily"
 msgstr "Diariamente"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Semanalmente"
+#: ../../mod/admin.php:556
+msgid "Multi user instance"
+msgstr "Instância multi usuário"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Mensalmente"
+#: ../../mod/admin.php:579
+msgid "Closed"
+msgstr "Fechado"
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/admin.php:580
+msgid "Requires approval"
+msgstr "Requer aprovação"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/admin.php:581
+msgid "Open"
+msgstr "Aberto"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/admin.php:585
+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"
 
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:964
-#: ../../mod/admin.php:976 ../../mod/admin.php:977 ../../mod/admin.php:992
-msgid "Email"
-msgstr "E-mail"
+#: ../../mod/admin.php:586
+msgid "Force all links to use SSL"
+msgstr "Forçar todos os links a utilizar SSL"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:733
-#: ../../mod/dfrn_request.php:842
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/admin.php:587
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)"
 
-#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
-#: ../../mod/newmember.php:51
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/admin.php:597 ../../mod/admin.php:1128 ../../mod/admin.php:1330
+#: ../../mod/admin.php:1417 ../../mod/settings.php:614
+#: ../../mod/settings.php:724 ../../mod/settings.php:798
+#: ../../mod/settings.php:880 ../../mod/settings.php:1113
+msgid "Save Settings"
+msgstr "Salvar configurações"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/admin.php:598 ../../mod/register.php:255
+msgid "Registration"
+msgstr "Registro"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/admin.php:599
+msgid "File upload"
+msgstr "Envio de arquivo"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/admin.php:600
+msgid "Policies"
+msgstr "Políticas"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/admin.php:601
+msgid "Advanced"
+msgstr "Avançado"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/admin.php:602
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/admin.php:603
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/admin.php:606
+msgid "Site name"
+msgstr "Nome do site"
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Conector do Diáspora"
+#: ../../mod/admin.php:607
+msgid "Host name"
+msgstr "Nome do host"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../mod/admin.php:608
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr ""
+#: ../../mod/admin.php:609
+msgid "Additional Info"
+msgstr "Informação adicional"
 
-#: ../../include/diaspora.php:620 ../../include/conversation.php:172
-#: ../../mod/dfrn_confirm.php:486
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s agora é amigo de %2$s"
+#: ../../mod/admin.php:609
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Notificação de compartilhamento da rede Diaspora"
+#: ../../mod/admin.php:610
+msgid "System language"
+msgstr "Idioma do sistema"
 
-#: ../../include/diaspora.php:2312
-msgid "Attachments:"
-msgstr "Anexos:"
+#: ../../mod/admin.php:611
+msgid "System theme"
+msgstr "Tema do sistema"
 
-#: ../../include/conversation.php:140 ../../mod/like.php:168
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s não gosta de %3$s de %2$s"
+#: ../../mod/admin.php:611
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s cutucou %2$s"
+#: ../../mod/admin.php:612
+msgid "Mobile system theme"
+msgstr "Tema do sistema para dispositivos móveis"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1004
-msgid "poked"
-msgstr "cutucado"
+#: ../../mod/admin.php:612
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móveis"
 
-#: ../../include/conversation.php:227 ../../mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s atualmente está %2$s"
+#: ../../mod/admin.php:613
+msgid "SSL link policy"
+msgstr "Política de link SSL"
 
-#: ../../include/conversation.php:266 ../../mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s etiquetou %3$s de %2$s com %4$s"
+#: ../../mod/admin.php:613
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se os links gerados devem ser forçados a utilizar SSL"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "postagem/item"
+#: ../../mod/admin.php:614
+msgid "Force SSL"
+msgstr "Forçar SSL"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s marcou %3$s de %2$s como favorito"
+#: ../../mod/admin.php:614
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos."
 
-#: ../../include/conversation.php:613 ../../object/Item.php:129
-#: ../../mod/photos.php:1651 ../../mod/content.php:437
-#: ../../mod/content.php:740
-msgid "Select"
-msgstr "Selecionar"
+#: ../../mod/admin.php:615
+msgid "Old style 'Share'"
+msgstr "Estilo antigo do 'Compartilhar' "
 
-#: ../../include/conversation.php:614 ../../object/Item.php:130
-#: ../../mod/group.php:171 ../../mod/settings.php:674
-#: ../../mod/contacts.php:709 ../../mod/admin.php:968
-#: ../../mod/photos.php:1652 ../../mod/content.php:438
-#: ../../mod/content.php:741
-msgid "Delete"
-msgstr "Excluir"
+#: ../../mod/admin.php:615
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
 
-#: ../../include/conversation.php:654 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../mod/content.php:471
-#: ../../mod/content.php:852 ../../mod/content.php:853
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Ver o perfil de %s @ %s"
+#: ../../mod/admin.php:616
+msgid "Hide help entry from navigation menu"
+msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
 
-#: ../../include/conversation.php:666 ../../object/Item.php:316
-msgid "Categories:"
-msgstr "Categorias:"
+#: ../../mod/admin.php:616
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
 
-#: ../../include/conversation.php:667 ../../object/Item.php:317
-msgid "Filed under:"
-msgstr "Arquivado sob:"
+#: ../../mod/admin.php:617
+msgid "Single user instance"
+msgstr "Instância de usuário único"
 
-#: ../../include/conversation.php:674 ../../object/Item.php:340
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+#: ../../mod/admin.php:617
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
 
-#: ../../include/conversation.php:690 ../../mod/content.php:497
-msgid "View in context"
-msgstr "Ver no contexto"
+#: ../../mod/admin.php:618
+msgid "Maximum image size"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
-#: ../../mod/editpost.php:124 ../../mod/photos.php:1543
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-msgid "Please wait"
-msgstr "Por favor, espere"
+#: ../../mod/admin.php:618
+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"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "remover"
+#: ../../mod/admin.php:619
+msgid "Maximum image length"
+msgstr "Tamanho máximo da imagem"
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Excluir os itens selecionados"
+#: ../../mod/admin.php:619
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Seguir o Thread"
+#: ../../mod/admin.php:620
+msgid "JPEG image quality"
+msgstr "Qualidade da imagem JPEG"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "%s gostou disso."
+#: ../../mod/admin.php:620
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s não gostou disso."
+#: ../../mod/admin.php:622
+msgid "Register policy"
+msgstr "Política de registro"
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
+#: ../../mod/admin.php:623
+msgid "Maximum Daily Registrations"
+msgstr "Registros Diários Máximos"
 
-#: ../../include/conversation.php:952
-#, 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"
+#: ../../mod/admin.php:623
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "e"
+#: ../../mod/admin.php:624
+msgid "Register text"
+msgstr "Texto de registro"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr ", e mais %d outras pessoas"
+#: ../../mod/admin.php:624
+msgid "Will be displayed prominently on the registration page."
+msgstr "Será exibido com destaque na página de registro."
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s gostaram disso."
+#: ../../mod/admin.php:625
+msgid "Accounts abandoned after x days"
+msgstr "Contas abandonadas após x dias"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s não gostaram disso."
-
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visível para <strong>todos</strong>"
+#: ../../mod/admin.php:625
+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."
 
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-msgid "Please enter a link URL:"
-msgstr "Por favor, digite uma URL:"
+#: ../../mod/admin.php:626
+msgid "Allowed friend domains"
+msgstr "Domínios de amigos permitidos"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Favor fornecer um link/URL de vídeo"
+#: ../../mod/admin.php:626
+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."
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Favor fornecer um link/URL de áudio"
+#: ../../mod/admin.php:627
+msgid "Allowed email domains"
+msgstr "Domínios de e-mail permitidos"
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Etiqueta:"
+#: ../../mod/admin.php:627
+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"
 
-#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
-#: ../../mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Salvar na pasta:"
+#: ../../mod/admin.php:628
+msgid "Block public"
+msgstr "Bloquear acesso público"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Onde você está agora?"
+#: ../../mod/admin.php:628
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Deletar item(s)?"
+#: ../../mod/admin.php:629
+msgid "Force publish"
+msgstr "Forçar a listagem"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "Enviar por e-mail"
+#: ../../mod/admin.php:629
+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."
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
+#: ../../mod/admin.php:630
+msgid "Global directory update URL"
+msgstr "URL de atualização do diretório global"
 
-#: ../../include/conversation.php:1057 ../../mod/settings.php:1025
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
+#: ../../mod/admin.php:630
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
 
-#: ../../include/conversation.php:1090 ../../mod/photos.php:1542
-msgid "Share"
-msgstr "Compartilhar"
+#: ../../mod/admin.php:631
+msgid "Allow threaded items"
+msgstr "Habilita itens aninhados"
 
-#: ../../include/conversation.php:1091 ../../mod/wallmessage.php:154
-#: ../../mod/editpost.php:110 ../../mod/message.php:332
-#: ../../mod/message.php:562
-msgid "Upload photo"
-msgstr "Enviar foto"
+#: ../../mod/admin.php:631
+msgid "Allow infinite level threading for items on this site."
+msgstr "Habilita nível infinito de aninhamento (threading) para itens."
 
-#: ../../include/conversation.php:1092 ../../mod/editpost.php:111
-msgid "upload photo"
-msgstr "upload de foto"
+#: ../../mod/admin.php:632
+msgid "Private posts by default for new users"
+msgstr "Publicações privadas por padrão para novos usuários"
 
-#: ../../include/conversation.php:1093 ../../mod/editpost.php:112
-msgid "Attach file"
-msgstr "Anexar arquivo"
+#: ../../mod/admin.php:632
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
 
-#: ../../include/conversation.php:1094 ../../mod/editpost.php:113
-msgid "attach file"
-msgstr "anexar arquivo"
+#: ../../mod/admin.php:633
+msgid "Don't include post content in email notifications"
+msgstr "Não incluir o conteúdo da postagem nas notificações de email"
 
-#: ../../include/conversation.php:1095 ../../mod/wallmessage.php:155
-#: ../../mod/editpost.php:114 ../../mod/message.php:333
-#: ../../mod/message.php:563
-msgid "Insert web link"
-msgstr "Inserir link web"
+#: ../../mod/admin.php:633
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
 
-#: ../../include/conversation.php:1096 ../../mod/editpost.php:115
-msgid "web link"
-msgstr "link web"
+#: ../../mod/admin.php:634
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
 
-#: ../../include/conversation.php:1097 ../../mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Inserir link de vídeo"
+#: ../../mod/admin.php:634
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
 
-#: ../../include/conversation.php:1098 ../../mod/editpost.php:117
-msgid "video link"
-msgstr "link de vídeo"
+#: ../../mod/admin.php:635
+msgid "Don't embed private images in posts"
+msgstr "Não inclua imagens privadas em publicações"
 
-#: ../../include/conversation.php:1099 ../../mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Inserir link de áudio"
+#: ../../mod/admin.php:635
+msgid ""
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
 
-#: ../../include/conversation.php:1100 ../../mod/editpost.php:119
-msgid "audio link"
-msgstr "link de áudio"
+#: ../../mod/admin.php:636
+msgid "Allow Users to set remote_self"
+msgstr "Permite usuários configurarem remote_self"
 
-#: ../../include/conversation.php:1101 ../../mod/editpost.php:120
-msgid "Set your location"
-msgstr "Definir sua localização"
+#: ../../mod/admin.php:636
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
 
-#: ../../include/conversation.php:1102 ../../mod/editpost.php:121
-msgid "set location"
-msgstr "configure localização"
+#: ../../mod/admin.php:637
+msgid "Block multiple registrations"
+msgstr "Bloquear registros repetidos"
 
-#: ../../include/conversation.php:1103 ../../mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Limpar a localização do navegador"
+#: ../../mod/admin.php:637
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Desabilitar o registro de contas adicionais para serem usadas como páginas."
 
-#: ../../include/conversation.php:1104 ../../mod/editpost.php:123
-msgid "clear location"
-msgstr "apague localização"
+#: ../../mod/admin.php:638
+msgid "OpenID support"
+msgstr "Suporte ao OpenID"
 
-#: ../../include/conversation.php:1106 ../../mod/editpost.php:137
-msgid "Set title"
-msgstr "Definir o título"
+#: ../../mod/admin.php:638
+msgid "OpenID support for registration and logins."
+msgstr "Suporte ao OpenID para registros e autenticações."
 
-#: ../../include/conversation.php:1108 ../../mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Categorias (lista separada por vírgulas)"
+#: ../../mod/admin.php:639
+msgid "Fullname check"
+msgstr "Verificar nome completo"
 
-#: ../../include/conversation.php:1110 ../../mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Configurações de permissão"
+#: ../../mod/admin.php:639
+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"
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "permissões"
+#: ../../mod/admin.php:640
+msgid "UTF-8 Regular expressions"
+msgstr "Expressões regulares UTF-8"
 
-#: ../../include/conversation.php:1119 ../../mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "CC: endereço de e-mail"
+#: ../../mod/admin.php:640
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Use expressões regulares do PHP em UTF8"
 
-#: ../../include/conversation.php:1120 ../../mod/editpost.php:134
-msgid "Public post"
-msgstr "Publicação pública"
+#: ../../mod/admin.php:641
+msgid "Show Community Page"
+msgstr "Exibir a página da comunidade"
 
-#: ../../include/conversation.php:1122 ../../mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
+#: ../../mod/admin.php:641
+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."
 
-#: ../../include/conversation.php:1126 ../../object/Item.php:687
-#: ../../mod/editpost.php:145 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696
-#: ../../mod/content.php:719
-msgid "Preview"
-msgstr "Pré-visualização"
+#: ../../mod/admin.php:642
+msgid "Enable OStatus support"
+msgstr "Habilitar suporte ao OStatus"
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Postar em Grupos"
+#: ../../mod/admin.php:642
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Publique para Contatos"
+#: ../../mod/admin.php:643
+msgid "OStatus conversation completion interval"
+msgstr "Intervalo de finalização da conversação OStatus "
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Publicação privada"
+#: ../../mod/admin.php:643
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
 
-#: ../../include/text.php:296
-msgid "newer"
-msgstr "mais recente"
+#: ../../mod/admin.php:644
+msgid "Enable Diaspora support"
+msgstr "Habilitar suporte ao Diaspora"
 
-#: ../../include/text.php:298
-msgid "older"
-msgstr "antigo"
+#: ../../mod/admin.php:644
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornece compatibilidade nativa com a rede Diaspora."
 
-#: ../../include/text.php:303
-msgid "prev"
-msgstr "anterior"
+#: ../../mod/admin.php:645
+msgid "Only allow Friendica contacts"
+msgstr "Permitir somente contatos Friendica"
 
-#: ../../include/text.php:305
-msgid "first"
-msgstr "primeiro"
-
-#: ../../include/text.php:337
-msgid "last"
-msgstr "último"
-
-#: ../../include/text.php:340
-msgid "next"
-msgstr "próximo"
+#: ../../mod/admin.php:645
+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"
 
-#: ../../include/text.php:854
-msgid "No contacts"
-msgstr "Nenhum contato"
+#: ../../mod/admin.php:646
+msgid "Verify SSL"
+msgstr "Verificar SSL"
 
-#: ../../include/text.php:863
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contato"
-msgstr[1] "%d contatos"
+#: ../../mod/admin.php:646
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
 
-#: ../../include/text.php:875 ../../mod/viewcontacts.php:76
-msgid "View Contacts"
-msgstr "Ver contatos"
+#: ../../mod/admin.php:647
+msgid "Proxy user"
+msgstr "Usuário do proxy"
 
-#: ../../include/text.php:955 ../../mod/editpost.php:109
-#: ../../mod/notes.php:63 ../../mod/filer.php:31
-msgid "Save"
-msgstr "Salvar"
+#: ../../mod/admin.php:648
+msgid "Proxy URL"
+msgstr "URL do proxy"
 
-#: ../../include/text.php:1004
-msgid "poke"
-msgstr "cutucar"
+#: ../../mod/admin.php:649
+msgid "Network timeout"
+msgstr "Limite de tempo da rede"
 
-#: ../../include/text.php:1005
-msgid "ping"
-msgstr "ping"
+#: ../../mod/admin.php:649
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
 
-#: ../../include/text.php:1005
-msgid "pinged"
-msgstr "pingado"
+#: ../../mod/admin.php:650
+msgid "Delivery interval"
+msgstr "Intervalo de envio"
 
-#: ../../include/text.php:1006
-msgid "prod"
-msgstr "incentivar"
+#: ../../mod/admin.php:650
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
 
-#: ../../include/text.php:1006
-msgid "prodded"
-msgstr "incentivado"
+#: ../../mod/admin.php:651
+msgid "Poll interval"
+msgstr "Intervalo da busca (polling)"
 
-#: ../../include/text.php:1007
-msgid "slap"
-msgstr "bater"
+#: ../../mod/admin.php:651
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
 
-#: ../../include/text.php:1007
-msgid "slapped"
-msgstr "batido"
+#: ../../mod/admin.php:652
+msgid "Maximum Load Average"
+msgstr "Média de Carga Máxima"
 
-#: ../../include/text.php:1008
-msgid "finger"
-msgstr "apontar"
+#: ../../mod/admin.php:652
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
 
-#: ../../include/text.php:1008
-msgid "fingered"
-msgstr "apontado"
+#: ../../mod/admin.php:654
+msgid "Use MySQL full text engine"
+msgstr "Use o engine de texto completo (full text) do MySQL"
 
-#: ../../include/text.php:1009
-msgid "rebuff"
-msgstr "rejeite"
+#: ../../mod/admin.php:654
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
 
-#: ../../include/text.php:1009
-msgid "rebuffed"
-msgstr "rejeitado"
+#: ../../mod/admin.php:655
+msgid "Suppress Language"
+msgstr "Retira idioma"
 
-#: ../../include/text.php:1023
-msgid "happy"
-msgstr "feliz"
+#: ../../mod/admin.php:655
+msgid "Suppress language information in meta information about a posting."
+msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
 
-#: ../../include/text.php:1024
-msgid "sad"
-msgstr "triste"
+#: ../../mod/admin.php:656
+msgid "Path to item cache"
+msgstr "Diretório do cache de item"
 
-#: ../../include/text.php:1025
-msgid "mellow"
-msgstr "desencanado"
+#: ../../mod/admin.php:657
+msgid "Cache duration in seconds"
+msgstr "Duração do cache em segundos"
 
-#: ../../include/text.php:1026
-msgid "tired"
-msgstr "cansado"
+#: ../../mod/admin.php:657
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1."
 
-#: ../../include/text.php:1027
-msgid "perky"
-msgstr "audacioso"
+#: ../../mod/admin.php:658
+msgid "Maximum numbers of comments per post"
+msgstr "O número máximo de comentários por post"
 
-#: ../../include/text.php:1028
-msgid "angry"
-msgstr "chateado"
+#: ../../mod/admin.php:658
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100."
 
-#: ../../include/text.php:1029
-msgid "stupified"
-msgstr "estupefato"
+#: ../../mod/admin.php:659
+msgid "Path for lock file"
+msgstr "Diretório do arquivo de trava"
 
-#: ../../include/text.php:1030
-msgid "puzzled"
-msgstr "confuso"
+#: ../../mod/admin.php:660
+msgid "Temp path"
+msgstr "Diretório Temp"
 
-#: ../../include/text.php:1031
-msgid "interested"
-msgstr "interessado"
+#: ../../mod/admin.php:661
+msgid "Base path to installation"
+msgstr "Diretório base para instalação"
 
-#: ../../include/text.php:1032
-msgid "bitter"
-msgstr "rancoroso"
+#: ../../mod/admin.php:662
+msgid "Disable picture proxy"
+msgstr "Disabilitar proxy de imagem"
 
-#: ../../include/text.php:1033
-msgid "cheerful"
-msgstr "jovial"
+#: ../../mod/admin.php:662
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa."
 
-#: ../../include/text.php:1034
-msgid "alive"
-msgstr "vivo"
+#: ../../mod/admin.php:664
+msgid "New base url"
+msgstr "Nova URL base"
 
-#: ../../include/text.php:1035
-msgid "annoyed"
-msgstr "incomodado"
+#: ../../mod/admin.php:666
+msgid "Disable noscrape"
+msgstr "Desabilitar noscrape"
 
-#: ../../include/text.php:1036
-msgid "anxious"
-msgstr "ansioso"
+#: ../../mod/admin.php:666
+msgid ""
+"The noscrape feature speeds up directory submissions by using JSON data "
+"instead of HTML scraping. Disabling it will cause higher load on your server"
+" and the directory server."
+msgstr "O recurso noscrape acelera submissões do diretório usando dados JSON em vez de raspagem HTML. Desativá-lo irá causar maior carga sobre o seu servidor e o servidor do diretório."
 
-#: ../../include/text.php:1037
-msgid "cranky"
-msgstr "excêntrico"
+#: ../../mod/admin.php:683
+msgid "Update has been marked successful"
+msgstr "A atualização foi marcada como bem sucedida"
 
-#: ../../include/text.php:1038
-msgid "disturbed"
-msgstr "perturbado"
+#: ../../mod/admin.php:691
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "A atualização da estrutura do banco de dados %s foi aplicada com sucesso."
 
-#: ../../include/text.php:1039
-msgid "frustrated"
-msgstr "frustrado"
+#: ../../mod/admin.php:694
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s"
 
-#: ../../include/text.php:1040
-msgid "motivated"
-msgstr "motivado"
+#: ../../mod/admin.php:706
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "A execução de %s falhou com erro: %s"
 
-#: ../../include/text.php:1041
-msgid "relaxed"
-msgstr "relaxado"
+#: ../../mod/admin.php:709
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "A atualização %s foi aplicada com sucesso."
 
-#: ../../include/text.php:1042
-msgid "surprised"
-msgstr "surpreso"
+#: ../../mod/admin.php:713
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
 
-#: ../../include/text.php:1210
-msgid "Monday"
-msgstr "Segunda"
+#: ../../mod/admin.php:715
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Não havia nenhuma função de atualização %s adicional que precisava ser chamada."
 
-#: ../../include/text.php:1210
-msgid "Tuesday"
-msgstr "Terça"
+#: ../../mod/admin.php:734
+msgid "No failed updates."
+msgstr "Nenhuma atualização com falha."
 
-#: ../../include/text.php:1210
-msgid "Wednesday"
-msgstr "Quarta"
+#: ../../mod/admin.php:735
+msgid "Check database structure"
+msgstr "Verifique a estrutura do banco de dados"
 
-#: ../../include/text.php:1210
-msgid "Thursday"
-msgstr "Quinta"
+#: ../../mod/admin.php:740
+msgid "Failed Updates"
+msgstr "Atualizações com falha"
 
-#: ../../include/text.php:1210
-msgid "Friday"
-msgstr "Sexta"
+#: ../../mod/admin.php:741
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
 
-#: ../../include/text.php:1210
-msgid "Saturday"
-msgstr "Sábado"
+#: ../../mod/admin.php:742
+msgid "Mark success (if update was manually applied)"
+msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
 
-#: ../../include/text.php:1210
-msgid "Sunday"
-msgstr "Domingo"
+#: ../../mod/admin.php:743
+msgid "Attempt to execute this update step automatically"
+msgstr "Tentar executar esse passo da atualização automaticamente"
 
-#: ../../include/text.php:1214
-msgid "January"
-msgstr "Janeiro"
+#: ../../mod/admin.php:775
+#, php-format
+msgid ""
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
+msgstr "\n\t\t\tCaro %1$s,\n\t\t\t\to administrador de %2$s criou uma conta para você."
 
-#: ../../include/text.php:1214
-msgid "February"
-msgstr "Fevereiro"
+#: ../../mod/admin.php:778
+#, php-format
+msgid ""
+"\n"
+"\t\t\tThe login details are as follows:\n"
+"\n"
+"\t\t\tSite Location:\t%1$s\n"
+"\t\t\tLogin Name:\t\t%2$s\n"
+"\t\t\tPassword:\t\t%3$s\n"
+"\n"
+"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\t\tin.\n"
+"\n"
+"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\t\tthan that.\n"
+"\n"
+"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\t\t\tThank you and welcome to %4$s."
+msgstr "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1$s\n\t\t\tNome de Login:\t\t%2$s\n\t\t\tSenha:\t\t%3$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4$s."
 
-#: ../../include/text.php:1214
-msgid "March"
-msgstr "Março"
+#: ../../mod/admin.php:810 ../../include/user.php:413
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detalhes do registro de %s"
 
-#: ../../include/text.php:1214
-msgid "April"
-msgstr "Abril"
+#: ../../mod/admin.php:822
+#, 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"
 
-#: ../../include/text.php:1214
-msgid "May"
-msgstr "Maio"
+#: ../../mod/admin.php:829
+#, 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"
 
-#: ../../include/text.php:1214
-msgid "June"
-msgstr "Junho"
+#: ../../mod/admin.php:868
+#, php-format
+msgid "User '%s' deleted"
+msgstr "O usuário '%s' foi excluído"
 
-#: ../../include/text.php:1214
-msgid "July"
-msgstr "Julho"
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "O usuário '%s' foi desbloqueado"
 
-#: ../../include/text.php:1214
-msgid "August"
-msgstr "Agosto"
+#: ../../mod/admin.php:876
+#, php-format
+msgid "User '%s' blocked"
+msgstr "O usuário '%s' foi bloqueado"
 
-#: ../../include/text.php:1214
-msgid "September"
-msgstr "Setembro"
+#: ../../mod/admin.php:971
+msgid "Add User"
+msgstr "Adicionar usuário"
 
-#: ../../include/text.php:1214
-msgid "October"
-msgstr "Outubro"
+#: ../../mod/admin.php:972
+msgid "select all"
+msgstr "selecionar todos"
 
-#: ../../include/text.php:1214
-msgid "November"
-msgstr "Novembro"
+#: ../../mod/admin.php:973
+msgid "User registrations waiting for confirm"
+msgstr "Registros de usuário aguardando confirmação"
 
-#: ../../include/text.php:1214
-msgid "December"
-msgstr "Dezembro"
+#: ../../mod/admin.php:974
+msgid "User waiting for permanent deletion"
+msgstr "Usuário aguardando por fim permanente da conta."
 
-#: ../../include/text.php:1403 ../../mod/videos.php:301
-msgid "View Video"
-msgstr "Ver Vídeo"
+#: ../../mod/admin.php:975
+msgid "Request date"
+msgstr "Solicitar data"
 
-#: ../../include/text.php:1435
-msgid "bytes"
-msgstr "bytes"
+#: ../../mod/admin.php:975 ../../mod/admin.php:987 ../../mod/admin.php:988
+#: ../../mod/admin.php:1003 ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../include/text.php:1459 ../../include/text.php:1471
-msgid "Click to open/close"
-msgstr "Clique para abrir/fechar"
+#: ../../mod/admin.php:976
+msgid "No registrations."
+msgstr "Nenhum registro."
 
-#: ../../include/text.php:1645 ../../include/text.php:1655
-#: ../../mod/events.php:335
-msgid "link to source"
-msgstr "exibir a origem"
+#: ../../mod/admin.php:978
+msgid "Deny"
+msgstr "Negar"
 
-#: ../../include/text.php:1700 ../../include/user.php:247
-msgid "default"
-msgstr "padrão"
+#: ../../mod/admin.php:982
+msgid "Site admin"
+msgstr "Administração do site"
 
-#: ../../include/text.php:1712
-msgid "Select an alternate language"
-msgstr "Selecione um idioma alternativo"
+#: ../../mod/admin.php:983
+msgid "Account expired"
+msgstr "Conta expirou"
 
-#: ../../include/text.php:1968
-msgid "activity"
-msgstr "atividade"
+#: ../../mod/admin.php:986
+msgid "New User"
+msgstr "Novo usuário"
 
-#: ../../include/text.php:1970 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../mod/content.php:605
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "comentário"
-msgstr[1] "comentários"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Register date"
+msgstr "Data de registro"
 
-#: ../../include/text.php:1971
-msgid "post"
-msgstr "publicação"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last login"
+msgstr "Última entrada"
 
-#: ../../include/text.php:2139
-msgid "Item filed"
-msgstr "O item foi arquivado"
+#: ../../mod/admin.php:987 ../../mod/admin.php:988
+msgid "Last item"
+msgstr "Último item"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Saiu."
+#: ../../mod/admin.php:987
+msgid "Deleted since"
+msgstr "Apagado desde"
 
-#: ../../include/auth.php:112 ../../include/auth.php:175
-#: ../../mod/openid.php:93
-msgid "Login failed."
-msgstr "Não foi possível autenticar."
+#: ../../mod/admin.php:988 ../../mod/settings.php:36
+msgid "Account"
+msgstr "Conta"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: ../../mod/admin.php:990
 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."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "A mensagem de erro foi:"
+#: ../../mod/admin.php:991
+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?"
 
-#: ../../include/bbcode.php:449 ../../include/bbcode.php:1050
-#: ../../include/bbcode.php:1051
-msgid "Image/photo"
-msgstr "Imagem/foto"
+#: ../../mod/admin.php:1001
+msgid "Name of the new user."
+msgstr "Nome do novo usuários."
+
+#: ../../mod/admin.php:1002
+msgid "Nickname"
+msgstr "Apelido"
 
-#: ../../include/bbcode.php:545
+#: ../../mod/admin.php:1002
+msgid "Nickname of the new user."
+msgstr "Apelido para o novo usuário."
+
+#: ../../mod/admin.php:1003
+msgid "Email address of the new user."
+msgstr "Endereço de e-mail do novo usuário."
+
+#: ../../mod/admin.php:1036
 #, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgid "Plugin %s disabled."
+msgstr "O plugin %s foi desabilitado."
 
-#: ../../include/bbcode.php:579
+#: ../../mod/admin.php:1040
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>"
+msgid "Plugin %s enabled."
+msgstr "O plugin %s foi habilitado."
 
-#: ../../include/bbcode.php:1014 ../../include/bbcode.php:1034
-msgid "$1 wrote:"
-msgstr "$1 escreveu:"
+#: ../../mod/admin.php:1050 ../../mod/admin.php:1266
+msgid "Disable"
+msgstr "Desabilitar"
 
-#: ../../include/bbcode.php:1059 ../../include/bbcode.php:1060
-msgid "Encrypted content"
-msgstr "Conteúdo criptografado"
+#: ../../mod/admin.php:1052 ../../mod/admin.php:1268
+msgid "Enable"
+msgstr "Habilitar"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Bem-vindo(a) "
+#: ../../mod/admin.php:1075 ../../mod/admin.php:1296
+msgid "Toggle"
+msgstr "Alternar"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Por favor, envie uma foto para o perfil."
+#: ../../mod/admin.php:1083 ../../mod/admin.php:1306
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bem-vindo(a) de volta "
+#: ../../mod/admin.php:1084 ../../mod/admin.php:1307
+msgid "Maintainer: "
+msgstr "Mantenedor: "
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
+#: ../../mod/admin.php:1226
+msgid "No themes found."
+msgstr "Nenhum tema encontrado"
 
-#: ../../include/oembed.php:205
-msgid "Embedded content"
-msgstr "Conteúdo incorporado"
+#: ../../mod/admin.php:1288
+msgid "Screenshot"
+msgstr "Captura de tela"
 
-#: ../../include/oembed.php:214
-msgid "Embedding disabled"
-msgstr "A incorporação está desabilitada"
+#: ../../mod/admin.php:1334
+msgid "[Experimental]"
+msgstr "[Esperimental]"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculino"
+#: ../../mod/admin.php:1335
+msgid "[Unsupported]"
+msgstr "[Não suportado]"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Feminino"
+#: ../../mod/admin.php:1362
+msgid "Log settings updated."
+msgstr "As configurações de relatórios foram atualizadas."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Atualmente masculino"
+#: ../../mod/admin.php:1418
+msgid "Clear"
+msgstr "Limpar"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Atualmente feminino"
+#: ../../mod/admin.php:1424
+msgid "Enable Debugging"
+msgstr "Habilitar Debugging"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Masculino a maior parte do tempo"
+#: ../../mod/admin.php:1425
+msgid "Log file"
+msgstr "Arquivo do relatório"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Feminino a maior parte do tempo"
+#: ../../mod/admin.php:1425
+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."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgênero"
+#: ../../mod/admin.php:1426
+msgid "Log level"
+msgstr "Nível do relatório"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersexual"
+#: ../../mod/admin.php:1476
+msgid "Close"
+msgstr "Fechar"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexual"
+#: ../../mod/admin.php:1482
+msgid "FTP Host"
+msgstr "Endereço do FTP"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodita"
+#: ../../mod/admin.php:1483
+msgid "FTP Path"
+msgstr "Caminho do FTP"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutro"
+#: ../../mod/admin.php:1484
+msgid "FTP User"
+msgstr "Usuário do FTP"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Não específico"
+#: ../../mod/admin.php:1485
+msgid "FTP Password"
+msgstr "Senha do FTP"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Outro"
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Resultados de Busca Por:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indeciso"
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Remover o termo"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Homens"
+#: ../../mod/network.php:194 ../../mod/search.php:30
+#: ../../include/features.php:42
+msgid "Saved Searches"
+msgstr "Pesquisas salvas"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Mulheres"
+#: ../../mod/network.php:195 ../../include/group.php:275
+msgid "add"
+msgstr "adicionar"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gays"
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Ordem dos comentários"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lésbicas"
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Ordenar pela data do comentário"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sem preferência"
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Ordem das publicações"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bissexuais"
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Ordenar pela data de publicação"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autossexuais"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Publicações que mencionem ou envolvam você"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstêmios"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nova"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Virgens"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Fluxo de atividades - por data"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Desviantes"
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Links compartilhados"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetiches"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Links interessantes"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Insaciável"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Destacada"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Não sexual"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Publicações favoritas"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Solteiro(a)"
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Aviso: Este grupo contém %s membro de uma rede insegura."
+msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Solitário(a)"
+#: ../../mod/network.php:466
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponível"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Este grupo não existe"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Não disponível"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "O grupo está vazio"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Tem uma paixão"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Grupo: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Apaixonado"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Contato: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Saindo com alguém"
+#: ../../mod/network.php:556
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infiel"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Contato inválido."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Viciado(a) em sexo"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amigos de %s"
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:289
-#: ../../include/user.php:293
-msgid "Friends"
-msgstr "Amigos"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nenhum amigo para exibir."
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amigos/Benefícios"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "O título do evento e a hora de início são obrigatórios."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Envolvido(a)"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editar o evento"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Casado(a)"
+#: ../../mod/events.php:335 ../../include/text.php:1644
+#: ../../include/text.php:1654
+msgid "link to source"
+msgstr "exibir a origem"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Casado imaginariamente"
+#: ../../mod/events.php:370 ../../boot.php:2138 ../../include/nav.php:80
+#: ../../view/theme/diabook/theme.php:127
+msgid "Events"
+msgstr "Eventos"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Parceiros"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Criar um novo evento"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Coabitando"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Anterior"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Direito comum"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Próximo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Feliz"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hora:minuto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Não estou procurando"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detalhes do evento"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Traído(a)"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Início do evento:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separado(a)"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Obrigatório"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instável"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "A data/hora de término não é conhecida ou não é relevante"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorciado(a)"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Término do evento:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Divorciado imaginariamente"
-
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Viúvo(a)"
-
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incerto(a)"
-
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "É complicado"
-
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Não importa"
-
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Pergunte-me"
-
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "É necessário um convite."
-
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Não foi possível verificar o convite."
-
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "A URL do OpenID é inválida"
-
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Por favor, forneça a informação solicitada."
-
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Por favor, use um nome mais curto."
-
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "O nome é muito curto."
-
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
-
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
-
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Não é um endereço de e-mail válido."
-
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Não é possível usar esse e-mail."
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajustar para o fuso horário do visualizador"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Descrição:"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
+#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1643
+#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
+msgid "Location:"
+msgstr "Localização:"
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Título:"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Compartilhar este evento"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
+#: ../../mod/content.php:437 ../../mod/content.php:740
+#: ../../mod/photos.php:1653 ../../object/Item.php:129
+#: ../../include/conversation.php:613
+msgid "Select"
+msgstr "Selecionar"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
+#: ../../mod/content.php:471 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../include/conversation.php:654
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Ver o perfil de %s @ %s"
 
-#: ../../include/user.php:377
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#: ../../object/Item.php:340 ../../include/conversation.php:674
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr ""
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: ../../include/user.php:381
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr ""
+#: ../../mod/content.php:497 ../../include/conversation.php:690
+msgid "View in context"
+msgstr "Ver no contexto"
 
-#: ../../include/user.php:413 ../../mod/admin.php:799
+#: ../../mod/content.php:603 ../../object/Item.php:387
 #, php-format
-msgid "Registration details for %s"
-msgstr "Detalhes do registro de %s"
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d comentário"
+msgstr[1] "%d comentários"
 
-#: ../../include/acl_selectors.php:326
-msgid "Visible to everybody"
-msgstr "Visível para todos"
+#: ../../mod/content.php:605 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../include/text.php:1969
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "comentário"
+msgstr[1] "comentários"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Essa entrada foi editada"
+#: ../../mod/content.php:606 ../../boot.php:746 ../../object/Item.php:390
+#: ../../include/contact_widgets.php:205
+msgid "show more"
+msgstr "exibir mais"
 
-#: ../../object/Item.php:116 ../../mod/photos.php:1357
-#: ../../mod/content.php:620
+#: ../../mod/content.php:620 ../../mod/photos.php:1359
+#: ../../object/Item.php:116
 msgid "Private Message"
 msgstr "Mensagem privada"
 
-#: ../../object/Item.php:120 ../../mod/settings.php:673
-#: ../../mod/content.php:728
-msgid "Edit"
-msgstr "Editar"
-
-#: ../../object/Item.php:133 ../../mod/content.php:763
-msgid "save to folder"
-msgstr "salvar na pasta"
-
-#: ../../object/Item.php:195 ../../mod/content.php:753
-msgid "add star"
-msgstr "destacar"
-
-#: ../../object/Item.php:196 ../../mod/content.php:754
-msgid "remove star"
-msgstr "remover o destaque"
-
-#: ../../object/Item.php:197 ../../mod/content.php:755
-msgid "toggle star status"
-msgstr "ativa/desativa o destaque"
-
-#: ../../object/Item.php:200 ../../mod/content.php:758
-msgid "starred"
-msgstr "marcado com estrela"
-
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr ""
-
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr ""
-
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr ""
-
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr ""
-
-#: ../../object/Item.php:220 ../../mod/content.php:759
-msgid "add tag"
-msgstr "adicionar etiqueta"
-
-#: ../../object/Item.php:231 ../../mod/photos.php:1540
-#: ../../mod/content.php:684
+#: ../../mod/content.php:684 ../../mod/photos.php:1542
+#: ../../object/Item.php:231
 msgid "I like this (toggle)"
 msgstr "Eu gostei disso (alternar)"
 
-#: ../../object/Item.php:231 ../../mod/content.php:684
+#: ../../mod/content.php:684 ../../object/Item.php:231
 msgid "like"
 msgstr "gostei"
 
-#: ../../object/Item.php:232 ../../mod/photos.php:1541
-#: ../../mod/content.php:685
+#: ../../mod/content.php:685 ../../mod/photos.php:1543
+#: ../../object/Item.php:232
 msgid "I don't like this (toggle)"
 msgstr "Eu não gostei disso (alternar)"
 
-#: ../../object/Item.php:232 ../../mod/content.php:685
+#: ../../mod/content.php:685 ../../object/Item.php:232
 msgid "dislike"
 msgstr "desgostar"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../mod/content.php:687 ../../object/Item.php:234
 msgid "Share this"
 msgstr "Compartilhar isso"
 
-#: ../../object/Item.php:234 ../../mod/content.php:687
+#: ../../mod/content.php:687 ../../object/Item.php:234
 msgid "share"
 msgstr "compartilhar"
 
-#: ../../object/Item.php:328 ../../mod/content.php:854
-msgid "to"
-msgstr "para"
-
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
-
-#: ../../object/Item.php:330 ../../mod/content.php:855
-msgid "Wall-to-Wall"
-msgstr "Mural-para-mural"
-
-#: ../../object/Item.php:331 ../../mod/content.php:856
-msgid "via Wall-To-Wall:"
-msgstr "via Mural-para-mural"
-
-#: ../../object/Item.php:387 ../../mod/content.php:603
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d comentário"
-msgstr[1] "%d comentários"
-
-#: ../../object/Item.php:675 ../../mod/photos.php:1560
-#: ../../mod/photos.php:1604 ../../mod/photos.php:1692
-#: ../../mod/content.php:707
+#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../mod/photos.php:1606 ../../mod/photos.php:1694
+#: ../../object/Item.php:675
 msgid "This is you"
 msgstr "Este(a) é você"
 
-#: ../../object/Item.php:679 ../../mod/content.php:711
+#: ../../mod/content.php:709 ../../mod/photos.php:1564
+#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:745
+#: ../../object/Item.php:361 ../../object/Item.php:677
+msgid "Comment"
+msgstr "Comentar"
+
+#: ../../mod/content.php:711 ../../object/Item.php:679
 msgid "Bold"
 msgstr "Negrito"
 
-#: ../../object/Item.php:680 ../../mod/content.php:712
+#: ../../mod/content.php:712 ../../object/Item.php:680
 msgid "Italic"
 msgstr "Itálico"
 
-#: ../../object/Item.php:681 ../../mod/content.php:713
+#: ../../mod/content.php:713 ../../object/Item.php:681
 msgid "Underline"
 msgstr "Sublinhado"
 
-#: ../../object/Item.php:682 ../../mod/content.php:714
+#: ../../mod/content.php:714 ../../object/Item.php:682
 msgid "Quote"
 msgstr "Citação"
 
-#: ../../object/Item.php:683 ../../mod/content.php:715
+#: ../../mod/content.php:715 ../../object/Item.php:683
 msgid "Code"
 msgstr "Código"
 
-#: ../../object/Item.php:684 ../../mod/content.php:716
+#: ../../mod/content.php:716 ../../object/Item.php:684
 msgid "Image"
 msgstr "Imagem"
 
-#: ../../object/Item.php:685 ../../mod/content.php:717
+#: ../../mod/content.php:717 ../../object/Item.php:685
 msgid "Link"
 msgstr "Link"
 
-#: ../../object/Item.php:686 ../../mod/content.php:718
+#: ../../mod/content.php:718 ../../object/Item.php:686
 msgid "Video"
 msgstr "Vídeo"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "O item não está disponível."
+#: ../../mod/content.php:719 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
+#: ../../mod/photos.php:1698 ../../object/Item.php:687
+#: ../../include/conversation.php:1126
+msgid "Preview"
+msgstr "Pré-visualização"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "O item não foi encontrado."
+#: ../../mod/content.php:728 ../../mod/settings.php:676
+#: ../../object/Item.php:120
+msgid "Edit"
+msgstr "Editar"
 
-#: ../../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/content.php:753 ../../object/Item.php:195
+msgid "add star"
+msgstr "destacar"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Não foi selecionado nenhum destinatário."
+#: ../../mod/content.php:754 ../../object/Item.php:196
+msgid "remove star"
+msgstr "remover o destaque"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Não foi possível verificar a sua localização."
+#: ../../mod/content.php:755 ../../object/Item.php:197
+msgid "toggle star status"
+msgstr "ativa/desativa o destaque"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Não foi possível enviar a mensagem."
+#: ../../mod/content.php:758 ../../object/Item.php:200
+msgid "starred"
+msgstr "marcado com estrela"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Falha na coleta de mensagens."
+#: ../../mod/content.php:759 ../../object/Item.php:220
+msgid "add tag"
+msgstr "adicionar etiqueta"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "A mensagem foi enviada."
+#: ../../mod/content.php:763 ../../object/Item.php:133
+msgid "save to folder"
+msgstr "salvar na pasta"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Nenhum destinatário."
+#: ../../mod/content.php:854 ../../object/Item.php:328
+msgid "to"
+msgstr "para"
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Enviar mensagem privada"
+#: ../../mod/content.php:855 ../../object/Item.php:330
+msgid "Wall-to-Wall"
+msgstr "Mural-para-mural"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../mod/content.php:856 ../../object/Item.php:331
+msgid "via Wall-To-Wall:"
+msgstr "via Mural-para-mural"
+
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Remover minha conta"
+
+#: ../../mod/removeme.php:47
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos."
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Para:"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Por favor, digite a sua senha para verificação:"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Assunto:"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Servidor de Comunicações Friendica - Configuração"
 
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-#: ../../mod/message.php:329 ../../mod/message.php:558
-msgid "Your message:"
-msgstr "Sua mensagem:"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Não foi possível conectar ao banco de dados."
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "O grupo foi criado."
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Não foi possível criar tabela."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Não foi possível criar o grupo."
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "O banco de dados do seu site Friendica foi instalado."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "O grupo não foi encontrado."
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "O nome do grupo foi alterado."
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Salvar o grupo"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Checagem do sistema"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Criar um grupo de contatos/amigos."
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Checar novamente"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nome do grupo: "
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Conexão de banco de dados"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "O grupo foi removido."
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Não foi possível remover o grupo."
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Editor de grupo"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membros"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nome do servidor de banco de dados"
 
-#: ../../mod/group.php:194 ../../mod/contacts.php:562
-msgid "All Contacts"
-msgstr "Todos os contatos"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nome do usuário do banco de dados"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Clique em um contato para adicionar ou remover."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Senha do usuário do banco de dados"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Nenhuma página delegada potencial localizada."
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nome do banco de dados"
+
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Endereço de email do administrador do site"
 
-#: ../../mod/delegate.php:126
+#: ../../mod/install.php:238 ../../mod/install.php:277
 msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
 
-#: ../../mod/delegate.php:127
-msgid "Existing Page Managers"
-msgstr "Administradores de Páginas Existentes"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecione o fuso horário padrão para o seu site"
 
-#: ../../mod/delegate.php:129
-msgid "Existing Page Delegates"
-msgstr "Delegados de Páginas Existentes"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Configurações do site"
 
-#: ../../mod/delegate.php:131
-msgid "Potential Delegates"
-msgstr "Delegados Potenciais"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
 
-#: ../../mod/delegate.php:133 ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Remover"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/delegate.php:134
-msgid "Add"
-msgstr "Adicionar"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Caminho para o executável do PhP"
 
-#: ../../mod/delegate.php:135
-msgid "No entries."
-msgstr "Sem entradas."
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identificador de solicitação inválido"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "PHP em linha de comando"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Descartar"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210 ../../mod/contacts.php:443
-#: ../../mod/contacts.php:497 ../../mod/contacts.php:707
-msgid "Ignore"
-msgstr "Ignorar"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Encontrado PHP versão:"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Sistema"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "Binário cli do PHP"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:365
-msgid "Personal"
-msgstr "Pessoal"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Exibir solicitações ignoradas"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Isto é necessário para o funcionamento do envio de mensagens."
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Ocultar solicitações ignoradas"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Tipo de notificação:"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Sugestão de amigo"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerido por %s"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Gerar chaves de encriptação"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/contacts.php:503
-msgid "Hide this contact from others"
-msgstr "Ocultar este contato dos outros"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Publicar a adição de amigo"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP GD graphics"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "se aplicável"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:966
-msgid "Approve"
-msgstr "Aprovar"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Módulo PHP mysqli"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Alega ser conhecido por você: "
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string "
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "sim"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite do Apache"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "não"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Aprovar como:"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Amigo"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Compartilhador"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fã/Admirador"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Novo acompanhante"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Sem apresentações."
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s gostou da publicação de %s"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s desgostou da publicação de %s"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s agora é amigo de %s"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tem permissão de escrita"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s criou uma nova publicação"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s comentou uma publicação de %s"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Nenhuma notificação de rede."
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Notificações de rede"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Não fazer notificações de sistema."
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 tem escrita permitida"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Notificações de sistema"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Nenhuma notificação pessoal."
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "A reescrita de URLs está funcionando"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Notificações pessoais"
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Não existe mais nenhuma notificação pessoal."
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>A seguir</h1>"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Notificações pessoais"
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Nenhum perfil"
+#: ../../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/settings.php:29 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "todos"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Não foi possível verificar a sua localização."
 
-#: ../../mod/settings.php:36 ../../mod/admin.php:977
-msgid "Account"
-msgstr "Conta"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nenhum destinatário."
 
-#: ../../mod/settings.php:41
-msgid "Additional features"
-msgstr "Funcionalidades adicionais"
+#: ../../mod/wallmessage.php:143
+#, php-format
+msgid ""
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "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/settings.php:46
-msgid "Display"
-msgstr "Tela"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Ajuda:"
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:777
-msgid "Social Networks"
-msgstr "Redes Sociais"
+#: ../../mod/help.php:84 ../../include/nav.php:114
+msgid "Help"
+msgstr "Ajuda"
 
-#: ../../mod/settings.php:57 ../../mod/admin.php:106 ../../mod/admin.php:1063
-#: ../../mod/admin.php:1116
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/help.php:90 ../../index.php:256
+msgid "Not Found"
+msgstr "Não encontrada"
 
-#: ../../mod/settings.php:67
-msgid "Connected apps"
-msgstr "Aplicações conectadas"
+#: ../../mod/help.php:93 ../../index.php:259
+msgid "Page not found."
+msgstr "Página não encontrada."
 
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Exportar dados pessoais"
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s dá as boas vinda à %2$s"
 
-#: ../../mod/settings.php:77
-msgid "Remove account"
-msgstr "Remover a conta"
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bem-vindo(a) a %s"
 
-#: ../../mod/settings.php:129
-msgid "Missing some important data!"
-msgstr "Está faltando algum dado importante!"
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
 
-#: ../../mod/settings.php:132 ../../mod/settings.php:637
-#: ../../mod/contacts.php:705
-msgid "Update"
-msgstr "Atualizar"
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou - você tentou enviar um arquivo vazio?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "O arquivo excedeu o tamanho limite de %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Não foi possível enviar o arquivo."
+
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Correspondência de perfil"
+
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
+
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "se interessa por:"
+
+#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1563
+#: ../../include/contact_widgets.php:10
+msgid "Connect"
+msgstr "Conectar"
+
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "ligação"
+
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Não disponível."
+
+#: ../../mod/community.php:32 ../../include/nav.php:129
+#: ../../view/theme/diabook/theme.php:129
+msgid "Community"
+msgstr "Comunidade"
+
+#: ../../mod/community.php:62 ../../mod/community.php:71
+#: ../../mod/search.php:170 ../../mod/search.php:196
+msgid "No results."
+msgstr "Nenhum resultado."
+
+#: ../../mod/settings.php:29 ../../mod/photos.php:80
+msgid "everybody"
+msgstr "todos"
+
+#: ../../mod/settings.php:41
+msgid "Additional features"
+msgstr "Funcionalidades adicionais"
+
+#: ../../mod/settings.php:46
+msgid "Display"
+msgstr "Tela"
+
+#: ../../mod/settings.php:52 ../../mod/settings.php:780
+msgid "Social Networks"
+msgstr "Redes Sociais"
+
+#: ../../mod/settings.php:62 ../../include/nav.php:168
+msgid "Delegations"
+msgstr "Delegações"
+
+#: ../../mod/settings.php:67
+msgid "Connected apps"
+msgstr "Aplicações conectadas"
+
+#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Exportar dados pessoais"
+
+#: ../../mod/settings.php:77
+msgid "Remove account"
+msgstr "Remover a conta"
+
+#: ../../mod/settings.php:129
+msgid "Missing some important data!"
+msgstr "Está faltando algum dado importante!"
 
 #: ../../mod/settings.php:238
 msgid "Failed to connect with email account using the settings provided."
@@ -3461,918 +3638,926 @@ msgstr "A senha foi modificada."
 msgid "Password update failed. Please try again."
 msgstr "Não foi possível atualizar a senha. Por favor, tente novamente."
 
-#: ../../mod/settings.php:426
+#: ../../mod/settings.php:428
 msgid " Please use a shorter name."
 msgstr " Por favor, use um nome mais curto."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:430
 msgid " Name too short."
 msgstr " O nome é muito curto."
 
-#: ../../mod/settings.php:437
+#: ../../mod/settings.php:439
 msgid "Wrong Password"
 msgstr "Senha Errada"
 
-#: ../../mod/settings.php:442
+#: ../../mod/settings.php:444
 msgid " Not valid email."
 msgstr " Não é um e-mail válido."
 
-#: ../../mod/settings.php:448
+#: ../../mod/settings.php:450
 msgid " Cannot change to that email."
 msgstr " Não foi possível alterar para esse e-mail."
 
-#: ../../mod/settings.php:503
+#: ../../mod/settings.php:506
 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:507
+#: ../../mod/settings.php:510
 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:537
+#: ../../mod/settings.php:540
 msgid "Settings updated."
 msgstr "As configurações foram atualizadas."
 
-#: ../../mod/settings.php:610 ../../mod/settings.php:636
-#: ../../mod/settings.php:672
+#: ../../mod/settings.php:613 ../../mod/settings.php:639
+#: ../../mod/settings.php:675
 msgid "Add application"
 msgstr "Adicionar aplicação"
 
-#: ../../mod/settings.php:611 ../../mod/settings.php:721
-#: ../../mod/settings.php:795 ../../mod/settings.php:877
-#: ../../mod/settings.php:1110 ../../mod/admin.php:588
-#: ../../mod/admin.php:1117 ../../mod/admin.php:1319 ../../mod/admin.php:1406
-msgid "Save Settings"
-msgstr "Salvar configurações"
-
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/admin.php:964 ../../mod/admin.php:976 ../../mod/admin.php:977
-#: ../../mod/admin.php:990 ../../mod/crepair.php:158
-msgid "Name"
-msgstr "Nome"
-
-#: ../../mod/settings.php:614 ../../mod/settings.php:640
+#: ../../mod/settings.php:617 ../../mod/settings.php:643
 msgid "Consumer Key"
 msgstr "Chave do consumidor"
 
-#: ../../mod/settings.php:615 ../../mod/settings.php:641
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
 msgid "Consumer Secret"
 msgstr "Segredo do consumidor"
 
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
+#: ../../mod/settings.php:619 ../../mod/settings.php:645
 msgid "Redirect"
 msgstr "Redirecionar"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
 msgid "Icon url"
 msgstr "URL do ícone"
 
-#: ../../mod/settings.php:628
+#: ../../mod/settings.php:631
 msgid "You can't edit this application."
 msgstr "Você não pode editar esta aplicação."
 
-#: ../../mod/settings.php:671
+#: ../../mod/settings.php:674
 msgid "Connected Apps"
 msgstr "Aplicações conectadas"
 
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:678
 msgid "Client key starts with"
 msgstr "A chave do cliente inicia com"
 
-#: ../../mod/settings.php:676
+#: ../../mod/settings.php:679
 msgid "No name"
 msgstr "Sem nome"
 
-#: ../../mod/settings.php:677
+#: ../../mod/settings.php:680
 msgid "Remove authorization"
 msgstr "Remover autorização"
 
-#: ../../mod/settings.php:689
+#: ../../mod/settings.php:692
 msgid "No Plugin settings configured"
 msgstr "Não foi definida nenhuma configuração de plugin"
 
-#: ../../mod/settings.php:697
+#: ../../mod/settings.php:700
 msgid "Plugin Settings"
 msgstr "Configurações do plugin"
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "Off"
 msgstr "Off"
 
-#: ../../mod/settings.php:711
+#: ../../mod/settings.php:714
 msgid "On"
 msgstr "On"
 
-#: ../../mod/settings.php:719
+#: ../../mod/settings.php:722
 msgid "Additional Features"
 msgstr "Funcionalidades Adicionais"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "O suporte interno para conectividade de %s está %s"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "enabled"
 msgstr "habilitado"
 
-#: ../../mod/settings.php:733 ../../mod/settings.php:734
+#: ../../mod/settings.php:736 ../../mod/settings.php:737
 msgid "disabled"
 msgstr "desabilitado"
 
-#: ../../mod/settings.php:734
+#: ../../mod/settings.php:737
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:770
+#: ../../mod/settings.php:773
 msgid "Email access is disabled on this site."
 msgstr "O acesso ao e-mail está desabilitado neste site."
 
-#: ../../mod/settings.php:782
+#: ../../mod/settings.php:785
 msgid "Email/Mailbox Setup"
 msgstr "Configurações do e-mail/caixa postal"
 
-#: ../../mod/settings.php:783
+#: ../../mod/settings.php:786
 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:784
+#: ../../mod/settings.php:787
 msgid "Last successful email check:"
 msgstr "Última checagem bem sucedida de e-mail:"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:789
 msgid "IMAP server name:"
 msgstr "Nome do servidor IMAP:"
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:790
 msgid "IMAP port:"
 msgstr "Porta do IMAP:"
 
-#: ../../mod/settings.php:788
+#: ../../mod/settings.php:791
 msgid "Security:"
 msgstr "Segurança:"
 
-#: ../../mod/settings.php:788 ../../mod/settings.php:793
+#: ../../mod/settings.php:791 ../../mod/settings.php:796
 msgid "None"
 msgstr "Nenhuma"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:792
 msgid "Email login name:"
 msgstr "Nome de usuário do e-mail:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:793
 msgid "Email password:"
 msgstr "Senha do e-mail:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:794
 msgid "Reply-to address:"
 msgstr "Endereço de resposta (Reply-to):"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:795
 msgid "Send public posts to all email contacts:"
 msgstr "Enviar publicações públicas para todos os contatos de e-mail:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Action after import:"
 msgstr "Ação após a importação:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Mark as seen"
 msgstr "Marcar como visto"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:796
 msgid "Move to folder"
 msgstr "Mover para pasta"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:797
 msgid "Move to folder:"
 msgstr "Mover para pasta:"
 
-#: ../../mod/settings.php:825 ../../mod/admin.php:523
-msgid "No special theme for mobile devices"
-msgstr "Nenhum tema especial para dispositivos móveis"
-
-#: ../../mod/settings.php:875
+#: ../../mod/settings.php:878
 msgid "Display Settings"
 msgstr "Configurações de exibição"
 
-#: ../../mod/settings.php:881 ../../mod/settings.php:896
+#: ../../mod/settings.php:884 ../../mod/settings.php:899
 msgid "Display Theme:"
 msgstr "Tema do perfil:"
 
-#: ../../mod/settings.php:882
+#: ../../mod/settings.php:885
 msgid "Mobile Theme:"
 msgstr "Tema para dispositivos móveis:"
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Update browser every xx seconds"
 msgstr "Atualizar o navegador a cada xx segundos"
 
-#: ../../mod/settings.php:883
+#: ../../mod/settings.php:886
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Mínimo de 10 segundos, não possui máximo"
 
-#: ../../mod/settings.php:884
+#: ../../mod/settings.php:887
 msgid "Number of items to display per page:"
 msgstr "Número de itens a serem exibidos por página:"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:885
+#: ../../mod/settings.php:887 ../../mod/settings.php:888
 msgid "Maximum of 100 items"
 msgstr "Máximo de 100 itens"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:888
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:889
 msgid "Don't show emoticons"
 msgstr "Não exibir emoticons"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:890
 msgid "Don't show notices"
 msgstr "Não mostra avisos"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:891
 msgid "Infinite scroll"
 msgstr "rolamento infinito"
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:892
 msgid "Automatic updates only at the top of the network page"
-msgstr ""
+msgstr "Atualizações automáticas só na parte superior da página da rede"
 
-#: ../../mod/settings.php:966
+#: ../../mod/settings.php:969
 msgid "User Types"
 msgstr "Tipos de Usuários"
 
-#: ../../mod/settings.php:967
+#: ../../mod/settings.php:970
 msgid "Community Types"
 msgstr "Tipos de Comunidades"
 
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:971
 msgid "Normal Account Page"
 msgstr "Página de conta normal"
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:972
 msgid "This account is a normal personal profile"
 msgstr "Essa conta é um perfil pessoal normal"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:975
 msgid "Soapbox Page"
 msgstr "Página de vitrine"
 
-#: ../../mod/settings.php:973
+#: ../../mod/settings.php:976
 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:976
+#: ../../mod/settings.php:979
 msgid "Community Forum/Celebrity Account"
 msgstr "Conta de fórum de comunidade/celebridade"
 
-#: ../../mod/settings.php:977
+#: ../../mod/settings.php:980
 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:980
+#: ../../mod/settings.php:983
 msgid "Automatic Friend Page"
 msgstr "Página de amigo automático"
 
-#: ../../mod/settings.php:981
+#: ../../mod/settings.php:984
 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:984
+#: ../../mod/settings.php:987
 msgid "Private Forum [Experimental]"
 msgstr "Fórum privado [Experimental]"
 
-#: ../../mod/settings.php:985
+#: ../../mod/settings.php:988
 msgid "Private forum - approved members only"
 msgstr "Fórum privado - somente membros aprovados"
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:997
+#: ../../mod/settings.php:1000
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Opcional) Permitir o uso deste OpenID para entrar nesta conta"
 
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1010
 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:1007 ../../mod/settings.php:1013
-#: ../../mod/settings.php:1021 ../../mod/settings.php:1025
-#: ../../mod/settings.php:1030 ../../mod/settings.php:1036
-#: ../../mod/settings.php:1042 ../../mod/settings.php:1048
-#: ../../mod/settings.php:1078 ../../mod/settings.php:1079
-#: ../../mod/settings.php:1080 ../../mod/settings.php:1081
-#: ../../mod/settings.php:1082 ../../mod/register.php:231
-#: ../../mod/dfrn_request.php:834 ../../mod/api.php:106
-#: ../../mod/profiles.php:620 ../../mod/profiles.php:624
+#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
+#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
+#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
+#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
+#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
+#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
+#: ../../mod/register.php:234 ../../mod/profiles.php:627
+#: ../../mod/profiles.php:631 ../../mod/api.php:106
 msgid "No"
 msgstr "Não"
 
-#: ../../mod/settings.php:1013
+#: ../../mod/settings.php:1016
 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:1021
+#: ../../mod/settings.php:1024
 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:1030
+#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ocultar os detalhes do seu perfil para pessoas desconhecidas?"
+
+#: ../../mod/settings.php:1028
+msgid ""
+"If enabled, posting public messages to Diaspora and other networks isn't "
+"possible."
+msgstr "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível."
+
+#: ../../mod/settings.php:1033
 msgid "Allow friends to post to your profile page?"
 msgstr "Permitir aos amigos publicarem na sua página de perfil?"
 
-#: ../../mod/settings.php:1036
+#: ../../mod/settings.php:1039
 msgid "Allow friends to tag your posts?"
 msgstr "Permitir aos amigos etiquetarem suas publicações?"
 
-#: ../../mod/settings.php:1042
+#: ../../mod/settings.php:1045
 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:1048
+#: ../../mod/settings.php:1051
 msgid "Permit unknown people to send you private mail?"
 msgstr "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?"
 
-#: ../../mod/settings.php:1056
+#: ../../mod/settings.php:1059
 msgid "Profile is <strong>not published</strong>."
 msgstr "O perfil <strong>não está publicado</strong>."
 
-#: ../../mod/settings.php:1059 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "ou"
-
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1067
 msgid "Your Identity Address is"
 msgstr "O endereço da sua identidade é"
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 msgid "Automatically expire posts after this many days:"
 msgstr "Expirar automaticamente publicações após tantos dias:"
 
-#: ../../mod/settings.php:1075
+#: ../../mod/settings.php:1078
 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:1076
+#: ../../mod/settings.php:1079
 msgid "Advanced expiration settings"
 msgstr "Configurações avançadas de expiração"
 
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1080
 msgid "Advanced Expiration"
 msgstr "Expiração avançada"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1081
 msgid "Expire posts:"
 msgstr "Expirar publicações:"
 
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1082
 msgid "Expire personal notes:"
 msgstr "Expirar notas pessoais:"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1083
 msgid "Expire starred posts:"
 msgstr "Expirar publicações destacadas:"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1084
 msgid "Expire photos:"
 msgstr "Expirar fotos:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1085
 msgid "Only expire posts by others:"
 msgstr "Expirar somente as publicações de outras pessoas:"
 
-#: ../../mod/settings.php:1108
+#: ../../mod/settings.php:1111
 msgid "Account Settings"
 msgstr "Configurações da conta"
 
-#: ../../mod/settings.php:1116
+#: ../../mod/settings.php:1119
 msgid "Password Settings"
 msgstr "Configurações da senha"
 
-#: ../../mod/settings.php:1117
+#: ../../mod/settings.php:1120
 msgid "New Password:"
 msgstr "Nova senha:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 msgid "Confirm:"
 msgstr "Confirme:"
 
-#: ../../mod/settings.php:1118
+#: ../../mod/settings.php:1121
 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:1119
+#: ../../mod/settings.php:1122
 msgid "Current Password:"
 msgstr "Senha Atual:"
 
-#: ../../mod/settings.php:1119 ../../mod/settings.php:1120
+#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
 msgid "Your current password to confirm the changes"
 msgstr "Sua senha atual para confirmar as mudanças"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1123
 msgid "Password:"
 msgstr "Senha:"
 
-#: ../../mod/settings.php:1124
+#: ../../mod/settings.php:1127
 msgid "Basic Settings"
 msgstr "Configurações básicas"
 
-#: ../../mod/settings.php:1126
+#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Nome completo:"
+
+#: ../../mod/settings.php:1129
 msgid "Email Address:"
 msgstr "Endereço de e-mail:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1130
 msgid "Your Timezone:"
 msgstr "Seu fuso horário:"
 
-#: ../../mod/settings.php:1128
+#: ../../mod/settings.php:1131
 msgid "Default Post Location:"
 msgstr "Localização padrão de suas publicações:"
 
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1132
 msgid "Use Browser Location:"
 msgstr "Usar localizador do navegador:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1135
 msgid "Security and Privacy Settings"
 msgstr "Configurações de segurança e privacidade"
 
-#: ../../mod/settings.php:1134
+#: ../../mod/settings.php:1137
 msgid "Maximum Friend Requests/Day:"
 msgstr "Número máximo de requisições de amizade por dia:"
 
-#: ../../mod/settings.php:1134 ../../mod/settings.php:1164
+#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
 msgid "(to prevent spam abuse)"
 msgstr "(para prevenir abuso de spammers)"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1138
 msgid "Default Post Permissions"
 msgstr "Permissões padrão de publicação"
 
-#: ../../mod/settings.php:1136
+#: ../../mod/settings.php:1139
 msgid "(click to open/close)"
 msgstr "(clique para abrir/fechar)"
 
-#: ../../mod/settings.php:1145 ../../mod/photos.php:1146
-#: ../../mod/photos.php:1517
+#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Mostre para Grupos"
 
-#: ../../mod/settings.php:1146 ../../mod/photos.php:1147
-#: ../../mod/photos.php:1518
+#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Mostre para Contatos"
 
-#: ../../mod/settings.php:1147
+#: ../../mod/settings.php:1150
 msgid "Default Private Post"
 msgstr "Publicação Privada Padrão"
 
-#: ../../mod/settings.php:1148
+#: ../../mod/settings.php:1151
 msgid "Default Public Post"
 msgstr "Publicação Pública Padrão"
 
-#: ../../mod/settings.php:1152
+#: ../../mod/settings.php:1155
 msgid "Default Permissions for New Posts"
 msgstr "Permissões Padrão para Publicações Novas"
 
-#: ../../mod/settings.php:1164
+#: ../../mod/settings.php:1167
 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:1167
+#: ../../mod/settings.php:1170
 msgid "Notification Settings"
 msgstr "Configurações de notificação"
 
-#: ../../mod/settings.php:1168
+#: ../../mod/settings.php:1171
 msgid "By default post a status message when:"
 msgstr "Por padrão, publicar uma mensagem de status quando:"
 
-#: ../../mod/settings.php:1169
+#: ../../mod/settings.php:1172
 msgid "accepting a friend request"
 msgstr "aceitar uma requisição de amizade"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1173
 msgid "joining a forum/community"
 msgstr "associar-se a um fórum/comunidade"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1174
 msgid "making an <em>interesting</em> profile change"
 msgstr "fazer uma modificação <em>interessante</em> em seu perfil"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1175
 msgid "Send a notification email when:"
 msgstr "Enviar um e-mail de notificação sempre que:"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1176
 msgid "You receive an introduction"
 msgstr "Você recebeu uma apresentação"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1177
 msgid "Your introductions are confirmed"
 msgstr "Suas apresentações forem confirmadas"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1178
 msgid "Someone writes on your profile wall"
 msgstr "Alguém escrever no mural do seu perfil"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1179
 msgid "Someone writes a followup comment"
 msgstr "Alguém comentar a sua mensagem"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1180
 msgid "You receive a private message"
 msgstr "Você recebeu uma mensagem privada"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1181
 msgid "You receive a friend suggestion"
 msgstr "Você recebe uma suggestão de amigo"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1182
 msgid "You are tagged in a post"
 msgstr "Você foi etiquetado em uma publicação"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1183
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Você está cutucado/incitado/etc. em uma publicação"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1185
+msgid "Text-only notification emails"
+msgstr "Emails de notificação apenas de texto"
+
+#: ../../mod/settings.php:1187
+msgid "Send text only notification emails, without the html part"
+msgstr "Enviar e-mails de notificação apenas de texto, sem a parte html"
+
+#: ../../mod/settings.php:1189
 msgid "Advanced Account/Page Type Settings"
 msgstr "Conta avançada/Configurações do tipo de página"
 
-#: ../../mod/settings.php:1184
+#: ../../mod/settings.php:1190
 msgid "Change the behaviour of this account for special situations"
 msgstr "Modificar o comportamento desta conta em situações especiais"
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1193
 msgid "Relocate"
 msgstr "Relocação"
 
-#: ../../mod/settings.php:1188
+#: ../../mod/settings.php:1194
 msgid ""
 "If you have moved this profile from another server, and some of your "
 "contacts don't receive your updates, try pushing this button."
 msgstr "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão."
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1195
 msgid "Resend relocate message to contacts"
 msgstr "Reenviar mensagem de relocação para os contatos"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amigos em Comum"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Esta apresentação já foi aceita."
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Nenhum contato em comum."
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
 
-#: ../../mod/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/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visível para:"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
 
-#: ../../mod/contacts.php:107
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
 #, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d contato editado"
-msgstr[1] "%d contatos editados"
-
-#: ../../mod/contacts.php:138 ../../mod/contacts.php:267
-msgid "Could not access contact record."
-msgstr "Não foi possível acessar o registro do contato."
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida"
+msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
 
-#: ../../mod/contacts.php:152
-msgid "Could not locate selected profile."
-msgstr "Não foi possível localizar o perfil selecionado."
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "A apresentação foi finalizada."
 
-#: ../../mod/contacts.php:181
-msgid "Contact updated."
-msgstr "O contato foi atualizado."
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Ocorreu um erro irrecuperável de protocolo."
 
-#: ../../mod/contacts.php:183 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Não foi possível atualizar o registro do contato."
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "O perfil não está disponível."
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been blocked"
-msgstr "O contato foi bloqueado"
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s recebeu solicitações de conexão em excesso hoje."
 
-#: ../../mod/contacts.php:282
-msgid "Contact has been unblocked"
-msgstr "O contato foi desbloqueado"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "As medidas de proteção contra spam foram ativadas."
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been ignored"
-msgstr "O contato foi ignorado"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
 
-#: ../../mod/contacts.php:293
-msgid "Contact has been unignored"
-msgstr "O contato deixou de ser ignorado"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Localizador inválido"
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been archived"
-msgstr "O contato foi arquivado"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Endereço de e-mail inválido."
 
-#: ../../mod/contacts.php:305
-msgid "Contact has been unarchived"
-msgstr "O contato foi desarquivado"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
 
-#: ../../mod/contacts.php:330 ../../mod/contacts.php:703
-msgid "Do you really want to delete this contact?"
-msgstr "Você realmente deseja deletar esse contato?"
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
 
-#: ../../mod/contacts.php:347
-msgid "Contact has been removed."
-msgstr "O contato foi removido."
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Você já fez a sua apresentação aqui."
 
-#: ../../mod/contacts.php:385
+#: ../../mod/dfrn_request.php:480
 #, php-format
-msgid "You are mutual friends with %s"
-msgstr "Você possui uma amizade mútua com %s"
+msgid "Apparently you are already friends with %s."
+msgstr "Aparentemente você já é amigo de %s."
 
-#: ../../mod/contacts.php:389
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Você está compartilhando com %s"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "URL de perfil inválida."
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s está compartilhando com você"
+#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "URL de perfil não permitida."
 
-#: ../../mod/contacts.php:411
-msgid "Private communications are not available for this contact."
-msgstr "As comunicações privadas não estão disponíveis para este contato."
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "A sua apresentação foi enviada."
 
-#: ../../mod/contacts.php:414 ../../mod/admin.php:540
-msgid "Never"
-msgstr "Nunca"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Por favor, autentique-se para confirmar a apresentação."
 
-#: ../../mod/contacts.php:418
-msgid "(Update was successful)"
-msgstr "(A atualização foi bem sucedida)"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
 
-#: ../../mod/contacts.php:418
-msgid "(Update was not successful)"
-msgstr "(A atualização não foi bem sucedida)"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Ocultar este contato"
 
-#: ../../mod/contacts.php:420
-msgid "Suggest friends"
-msgstr "Sugerir amigos"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bem-vindo(a) à sua página pessoal %s."
 
-#: ../../mod/contacts.php:424
+#: ../../mod/dfrn_request.php:675
 #, php-format
-msgid "Network type: %s"
-msgstr "Tipo de rede: %s"
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
 
-#: ../../mod/contacts.php:432
-msgid "View all contacts"
-msgstr "Ver todos os contatos"
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Confirmar"
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:496
-#: ../../mod/contacts.php:706 ../../mod/admin.php:970
-msgid "Unblock"
-msgstr "Desbloquear"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
 
-#: ../../mod/contacts.php:437 ../../mod/contacts.php:496
-#: ../../mod/contacts.php:706 ../../mod/admin.php:969
-msgid "Block"
-msgstr "Bloquear"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
 
-#: ../../mod/contacts.php:440
-msgid "Toggle Blocked status"
-msgstr "Alternar o status de bloqueio"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Solicitação de amizade/conexão"
 
-#: ../../mod/contacts.php:443 ../../mod/contacts.php:497
-#: ../../mod/contacts.php:707
-msgid "Unignore"
-msgstr "Deixar de ignorar"
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/contacts.php:446
-msgid "Toggle Ignored status"
-msgstr "Alternar o status de ignorado"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Por favor, entre com as informações solicitadas:"
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Unarchive"
-msgstr "Desarquivar"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s conhece você?"
 
-#: ../../mod/contacts.php:450 ../../mod/contacts.php:708
-msgid "Archive"
-msgstr "Arquivar"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Adicione uma anotação pessoal:"
 
-#: ../../mod/contacts.php:453
-msgid "Toggle Archive status"
-msgstr "Alternar o status de arquivamento"
+#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/contacts.php:456
-msgid "Repair"
-msgstr "Reparar"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/contacts.php:459
-msgid "Advanced Contact Settings"
-msgstr "Configurações avançadas do contato"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
 
-#: ../../mod/contacts.php:465
-msgid "Communications lost with this contact!"
-msgstr "As comunicações com esse contato foram perdidas!"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Seu endereço de identificação:"
 
-#: ../../mod/contacts.php:468
-msgid "Contact Editor"
-msgstr "Editor de contatos"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Enviar solicitação"
 
-#: ../../mod/contacts.php:471
-msgid "Profile Visibility"
-msgstr "Visibilidade do perfil"
+#: ../../mod/register.php:90
+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/contacts.php:472
+#: ../../mod/register.php:96
 #, 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."
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login."
 
-#: ../../mod/contacts.php:473
-msgid "Contact Information / Notes"
-msgstr "Informações sobre o contato / Anotações"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Não foi possível processar o seu registro."
 
-#: ../../mod/contacts.php:474
-msgid "Edit contact notes"
-msgstr "Editar as anotações do contato"
+#: ../../mod/register.php:148
+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/contacts.php:479 ../../mod/contacts.php:671
-#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:62
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visitar o perfil de %s [%s]"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
 
-#: ../../mod/contacts.php:480
-msgid "Block/Unblock contact"
-msgstr "Bloquear/desbloquear o contato"
+#: ../../mod/register.php:214
+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/contacts.php:481
-msgid "Ignore contact"
-msgstr "Ignorar o contato"
+#: ../../mod/register.php:215
+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/contacts.php:482
-msgid "Repair URL settings"
-msgstr "Reparar as definições de URL"
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Seu OpenID (opcional): "
 
-#: ../../mod/contacts.php:483
-msgid "View conversations"
-msgstr "Ver as conversas"
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Incluir o seu perfil no diretório de membros?"
 
-#: ../../mod/contacts.php:485
-msgid "Delete contact"
-msgstr "Excluir o contato"
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "A associação a este site só pode ser feita mediante convite."
 
-#: ../../mod/contacts.php:489
-msgid "Last update:"
-msgstr "Última atualização:"
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "A ID do seu convite: "
 
-#: ../../mod/contacts.php:491
-msgid "Update public posts"
-msgstr "Atualizar publicações públicas"
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Seu nome completo (ex: José da Silva): "
 
-#: ../../mod/contacts.php:493 ../../mod/admin.php:1464
-msgid "Update now"
-msgstr "Atualizar agora"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Seu endereço de e-mail: "
 
-#: ../../mod/contacts.php:500
-msgid "Currently blocked"
-msgstr "Atualmente bloqueado"
+#: ../../mod/register.php:265
+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/contacts.php:501
-msgid "Currently ignored"
-msgstr "Atualmente ignorado"
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Escolha uma identificação: "
 
-#: ../../mod/contacts.php:502
-msgid "Currently archived"
-msgstr "Atualmente arquivado"
+#: ../../mod/register.php:269 ../../boot.php:1236 ../../include/nav.php:109
+msgid "Register"
+msgstr "Registrar"
 
-#: ../../mod/contacts.php:503
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importar"
 
-#: ../../mod/contacts.php:504
-msgid "Notification for new posts"
-msgstr "Notificações para novas publicações"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importa seu perfil  desta instância do friendica"
 
-#: ../../mod/contacts.php:504
-msgid "Send a notification of every new post of this contact"
-msgstr "Envie uma notificação para todos as novas publicações deste contato"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Sistema em manutenção"
 
-#: ../../mod/contacts.php:505
-msgid "Fetch further information for feeds"
-msgstr "Pega mais informações para feeds"
+#: ../../mod/search.php:99 ../../include/text.php:952
+#: ../../include/text.php:953 ../../include/nav.php:119
+msgid "Search"
+msgstr "Pesquisar"
 
-#: ../../mod/contacts.php:556
-msgid "Suggestions"
-msgstr "Sugestões"
-
-#: ../../mod/contacts.php:559
-msgid "Suggest potential friends"
-msgstr "Sugerir amigos em potencial"
-
-#: ../../mod/contacts.php:565
-msgid "Show all contacts"
-msgstr "Exibe todos os contatos"
-
-#: ../../mod/contacts.php:568
-msgid "Unblocked"
-msgstr "Desbloquear"
-
-#: ../../mod/contacts.php:571
-msgid "Only show unblocked contacts"
-msgstr "Exibe somente contatos desbloqueados"
+#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
+msgid "Global Directory"
+msgstr "Diretório global"
 
-#: ../../mod/contacts.php:575
-msgid "Blocked"
-msgstr "Bloqueado"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Pesquisar neste site"
 
-#: ../../mod/contacts.php:578
-msgid "Only show blocked contacts"
-msgstr "Exibe somente contatos bloqueados"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Diretório do site"
 
-#: ../../mod/contacts.php:582
-msgid "Ignored"
-msgstr "Ignorados"
+#: ../../mod/directory.php:113 ../../mod/profiles.php:716
+msgid "Age: "
+msgstr "Idade: "
 
-#: ../../mod/contacts.php:585
-msgid "Only show ignored contacts"
-msgstr "Exibe somente contatos ignorados"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Gênero: "
 
-#: ../../mod/contacts.php:589
-msgid "Archived"
-msgstr "Arquivados"
+#: ../../mod/directory.php:138 ../../boot.php:1645
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Gênero:"
 
-#: ../../mod/contacts.php:592
-msgid "Only show archived contacts"
-msgstr "Exibe somente contatos arquivados"
+#: ../../mod/directory.php:140 ../../boot.php:1648
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Situação:"
 
-#: ../../mod/contacts.php:596
-msgid "Hidden"
-msgstr "Ocultos"
+#: ../../mod/directory.php:142 ../../boot.php:1650
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Página web:"
 
-#: ../../mod/contacts.php:599
-msgid "Only show hidden contacts"
-msgstr "Exibe somente contatos ocultos"
+#: ../../mod/directory.php:144 ../../boot.php:1652
+#: ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Sobre:"
 
-#: ../../mod/contacts.php:647
-msgid "Mutual Friendship"
-msgstr "Amizade mútua"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
 
-#: ../../mod/contacts.php:651
-msgid "is a fan of yours"
-msgstr "é um fã seu"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Nenhuma página delegada potencial localizada."
 
-#: ../../mod/contacts.php:655
-msgid "you are a fan of"
-msgstr "você é um fã de"
+#: ../../mod/delegate.php:130 ../../include/nav.php:168
+msgid "Delegate Page Management"
+msgstr "Delegar Administração de Página"
 
-#: ../../mod/contacts.php:672 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editar o contato"
+#: ../../mod/delegate.php:132
+msgid ""
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente."
 
-#: ../../mod/contacts.php:698
-msgid "Search your contacts"
-msgstr "Pesquisar seus contatos"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Administradores de Páginas Existentes"
 
-#: ../../mod/contacts.php:699 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Pesquisando: "
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Delegados de Páginas Existentes"
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Delegados Potenciais"
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Ou - você tentou enviar um arquivo vazio?"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Adicionar"
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "O arquivo excedeu o tamanho limite de %d"
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Sem entradas."
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Não foi possível enviar o arquivo."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amigos em Comum"
 
-#: ../../mod/update_community.php:18 ../../mod/update_network.php:25
-#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22
-#: ../../mod/update_profile.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[Conteúdo incorporado - recarregue a página para ver]"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nenhum contato em comum."
 
 #: ../../mod/uexport.php:77
 msgid "Export account"
@@ -4395,3318 +4580,3236 @@ msgid ""
 "of your account (photos are not exported)"
 msgstr "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)"
 
-#: ../../mod/register.php:93
-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:97
-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/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s atualmente está %2$s"
 
-#: ../../mod/register.php:102
-msgid "Your registration can not be processed."
-msgstr "Não foi possível processar o seu registro."
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humor"
 
-#: ../../mod/register.php:145
-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/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Defina o seu humor e conte aos seus amigos"
 
-#: ../../mod/register.php:183 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã."
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Você realmente deseja deletar essa sugestão?"
 
-#: ../../mod/register.php:211
-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/suggest.php:68 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:527
+msgid "Friend Suggestions"
+msgstr "Sugestões de amigos"
 
-#: ../../mod/register.php:212
+#: ../../mod/suggest.php:74
 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."
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
 
-#: ../../mod/register.php:213
-msgid "Your OpenID (optional): "
-msgstr "Seu OpenID (opcional): "
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorar/Ocultar"
 
-#: ../../mod/register.php:227
-msgid "Include your profile in member directory?"
-msgstr "Incluir o seu perfil no diretório de membros?"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "O perfil foi excluído."
 
-#: ../../mod/register.php:248
-msgid "Membership on this site is by invitation only."
-msgstr "A associação a este site só pode ser feita mediante convite."
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Perfil-"
 
-#: ../../mod/register.php:249
-msgid "Your invitation ID: "
-msgstr "A ID do seu convite: "
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "O novo perfil foi criado."
 
-#: ../../mod/register.php:252 ../../mod/admin.php:589
-msgid "Registration"
-msgstr "Registro"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "O perfil não está disponível para clonagem."
 
-#: ../../mod/register.php:260
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Seu nome completo (ex: José da Silva): "
+#: ../../mod/profiles.php:172
+msgid "Profile Name is required."
+msgstr "É necessário informar o nome do perfil."
 
-#: ../../mod/register.php:261
-msgid "Your Email Address: "
-msgstr "Seu endereço de e-mail: "
+#: ../../mod/profiles.php:323
+msgid "Marital Status"
+msgstr "Situação amorosa"
 
-#: ../../mod/register.php:262
-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/profiles.php:327
+msgid "Romantic Partner"
+msgstr "Parceiro romântico"
 
-#: ../../mod/register.php:263
-msgid "Choose a nickname: "
-msgstr "Escolha uma identificação: "
+#: ../../mod/profiles.php:331
+msgid "Likes"
+msgstr "Gosta de"
 
-#: ../../mod/register.php:272 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importar"
+#: ../../mod/profiles.php:335
+msgid "Dislikes"
+msgstr "Não gosta de"
 
-#: ../../mod/register.php:273
-msgid "Import your profile to this friendica instance"
-msgstr "Importa seu perfil  desta instância do friendica"
+#: ../../mod/profiles.php:339
+msgid "Work/Employment"
+msgstr "Trabalho/emprego"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publicado com sucesso."
+#: ../../mod/profiles.php:342
+msgid "Religion"
+msgstr "Religião"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Sistema em manutenção"
+#: ../../mod/profiles.php:346
+msgid "Political Views"
+msgstr "Posicionamento político"
 
-#: ../../mod/profile.php:155 ../../mod/display.php:288
-msgid "Access to this profile has been restricted."
-msgstr "O acesso a este perfil está restrito."
+#: ../../mod/profiles.php:350
+msgid "Gender"
+msgstr "Gênero"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Dicas para novos membros"
+#: ../../mod/profiles.php:354
+msgid "Sexual Preference"
+msgstr "Preferência sexual"
 
-#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:766
-#: ../../mod/viewcontacts.php:17 ../../mod/photos.php:920
-#: ../../mod/search.php:89 ../../mod/community.php:18
-#: ../../mod/display.php:180 ../../mod/directory.php:33
-msgid "Public access denied."
-msgstr "Acesso público negado."
+#: ../../mod/profiles.php:358
+msgid "Homepage"
+msgstr "Página Principal"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Nenhum vídeo selecionado"
+#: ../../mod/profiles.php:362 ../../mod/profiles.php:664
+msgid "Interests"
+msgstr "Interesses"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "O acesso a este item é restrito."
+#: ../../mod/profiles.php:366
+msgid "Address"
+msgstr "Endereço"
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1806
-msgid "View Album"
-msgstr "Ver álbum"
+#: ../../mod/profiles.php:373 ../../mod/profiles.php:660
+msgid "Location"
+msgstr "Localização"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vídeos Recentes"
+#: ../../mod/profiles.php:456
+msgid "Profile updated."
+msgstr "O perfil foi atualizado."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Envie Novos Vídeos"
-
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gerenciar identidades e/ou páginas"
-
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\""
-
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Selecione uma identidade para gerenciar: "
-
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "O item não foi encontrado"
-
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Editar a publicação"
+#: ../../mod/profiles.php:534
+msgid " and "
+msgstr " e "
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Pesquisar pessoas"
+#: ../../mod/profiles.php:542
+msgid "public profile"
+msgstr "perfil público"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Nenhuma correspondência"
+#: ../../mod/profiles.php:545
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
 
-#: ../../mod/regmod.php:54
-msgid "Account approved."
-msgstr "A conta foi aprovada."
+#: ../../mod/profiles.php:546
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Visite %2$s de %1$s"
 
-#: ../../mod/regmod.php:91
+#: ../../mod/profiles.php:549
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "O registro de %s foi revogado"
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s foi atualizado %2$s, mudando %3$s."
 
-#: ../../mod/regmod.php:103
-msgid "Please login."
-msgstr "Por favor, autentique-se."
+#: ../../mod/profiles.php:624
+msgid "Hide contacts and friends:"
+msgstr "Esconder contatos e amigos:"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Esta apresentação já foi aceita."
+#: ../../mod/profiles.php:629
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "A localização do perfil não é válida ou não contém uma informação de perfil."
+#: ../../mod/profiles.php:651
+msgid "Edit Profile Details"
+msgstr "Editar os detalhes do perfil"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono."
+#: ../../mod/profiles.php:653
+msgid "Change Profile Photo"
+msgstr "Mudar Foto do Perfil"
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Aviso: a localização do perfil não possui nenhuma foto do perfil."
+#: ../../mod/profiles.php:654
+msgid "View this profile"
+msgstr "Ver este perfil"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
-#, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "O parâmetro requerido %d não foi encontrado na localização fornecida"
-msgstr[1] "Os parâmetros requeridos %d não foram encontrados na localização fornecida"
+#: ../../mod/profiles.php:655
+msgid "Create a new profile using these settings"
+msgstr "Criar um novo perfil usando estas configurações"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "A apresentação foi finalizada."
+#: ../../mod/profiles.php:656
+msgid "Clone this profile"
+msgstr "Clonar este perfil"
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Ocorreu um erro irrecuperável de protocolo."
+#: ../../mod/profiles.php:657
+msgid "Delete this profile"
+msgstr "Excluir este perfil"
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "O perfil não está disponível."
+#: ../../mod/profiles.php:658
+msgid "Basic information"
+msgstr "Informação básica"
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s recebeu solicitações de conexão em excesso hoje."
+#: ../../mod/profiles.php:659
+msgid "Profile picture"
+msgstr "Foto do perfil"
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "As medidas de proteção contra spam foram ativadas."
+#: ../../mod/profiles.php:661
+msgid "Preferences"
+msgstr "Preferências"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Os amigos foram notificados para tentar novamente em 24 horas."
+#: ../../mod/profiles.php:662
+msgid "Status information"
+msgstr "Informação de Status"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Localizador inválido"
+#: ../../mod/profiles.php:663
+msgid "Additional information"
+msgstr "Informações adicionais"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Endereço de e-mail inválido."
+#: ../../mod/profiles.php:666
+msgid "Profile Name:"
+msgstr "Nome do perfil:"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação."
+#: ../../mod/profiles.php:667
+msgid "Your Full Name:"
+msgstr "Seu nome completo:"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Não foi possível encontrar a sua identificação no endereço indicado."
+#: ../../mod/profiles.php:668
+msgid "Title/Description:"
+msgstr "Título/Descrição:"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Você já fez a sua apresentação aqui."
+#: ../../mod/profiles.php:669
+msgid "Your Gender:"
+msgstr "Seu gênero:"
 
-#: ../../mod/dfrn_request.php:480
+#: ../../mod/profiles.php:670
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Aparentemente você já é amigo de %s."
+msgid "Birthday (%s):"
+msgstr "Aniversário (%s):"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "URL de perfil inválida."
+#: ../../mod/profiles.php:671
+msgid "Street Address:"
+msgstr "Endereço:"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "A sua apresentação foi enviada."
+#: ../../mod/profiles.php:672
+msgid "Locality/City:"
+msgstr "Localidade/Cidade:"
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Por favor, autentique-se para confirmar a apresentação."
+#: ../../mod/profiles.php:673
+msgid "Postal/Zip Code:"
+msgstr "CEP:"
 
-#: ../../mod/dfrn_request.php:664
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil."
+#: ../../mod/profiles.php:674
+msgid "Country:"
+msgstr "País:"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Hide this contact"
-msgstr "Ocultar este contato"
+#: ../../mod/profiles.php:675
+msgid "Region/State:"
+msgstr "Região/Estado:"
 
-#: ../../mod/dfrn_request.php:678
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bem-vindo(a) à sua página pessoal %s."
+#: ../../mod/profiles.php:676
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
 
-#: ../../mod/dfrn_request.php:679
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Por favor, confirme sua solicitação de apresentação/conexão para %s."
+#: ../../mod/profiles.php:677
+msgid "Who: (if applicable)"
+msgstr "Quem: (se pertinente)"
 
-#: ../../mod/dfrn_request.php:680
-msgid "Confirm"
-msgstr "Confirmar"
+#: ../../mod/profiles.php:678
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
 
-#: ../../mod/dfrn_request.php:808
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:"
+#: ../../mod/profiles.php:679
+msgid "Since [date]:"
+msgstr "Desde [data]:"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>."
+#: ../../mod/profiles.php:680 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Preferência sexual:"
 
-#: ../../mod/dfrn_request.php:831
-msgid "Friend/Connection Request"
-msgstr "Solicitação de amizade/conexão"
+#: ../../mod/profiles.php:681
+msgid "Homepage URL:"
+msgstr "Endereço do site web:"
 
-#: ../../mod/dfrn_request.php:832
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/profiles.php:682 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Cidade:"
 
-#: ../../mod/dfrn_request.php:833
-msgid "Please answer the following:"
-msgstr "Por favor, entre com as informações solicitadas:"
+#: ../../mod/profiles.php:683 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Posição política:"
 
-#: ../../mod/dfrn_request.php:834
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s conhece você?"
+#: ../../mod/profiles.php:684
+msgid "Religious Views:"
+msgstr "Orientação religiosa:"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Adicione uma anotação pessoal:"
+#: ../../mod/profiles.php:685
+msgid "Public Keywords:"
+msgstr "Palavras-chave públicas:"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/profiles.php:686
+msgid "Private Keywords:"
+msgstr "Palavras-chave privadas:"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - Por favor, não utilize esse formulário.  Ao invés disso, digite %s na sua barra de pesquisa do Diaspora."
+#: ../../mod/profiles.php:687 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Gosta de:"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Seu endereço de identificação:"
+#: ../../mod/profiles.php:688 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Não gosta de:"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Enviar solicitação"
+#: ../../mod/profiles.php:689
+msgid "Example: fishing photography software"
+msgstr "Exemplo: pesca fotografia software"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Arquivos"
-
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizar a conexão com a aplicação"
+#: ../../mod/profiles.php:690
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Volte para a sua aplicação e digite este código de segurança:"
+#: ../../mod/profiles.php:691
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Por favor, autentique-se para continuar."
+#: ../../mod/profiles.php:692
+msgid "Tell us about yourself..."
+msgstr "Fale um pouco sobre você..."
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
+#: ../../mod/profiles.php:693
+msgid "Hobbies/Interests"
+msgstr "Passatempos/Interesses"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Você realmente deseja deletar essa sugestão?"
+#: ../../mod/profiles.php:694
+msgid "Contact information and Social Networks"
+msgstr "Informações de contato e redes sociais"
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas."
+#: ../../mod/profiles.php:695
+msgid "Musical interests"
+msgstr "Preferências musicais"
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorar/Ocultar"
+#: ../../mod/profiles.php:696
+msgid "Books, literature"
+msgstr "Livros, literatura"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contatos que não são membros de um grupo"
+#: ../../mod/profiles.php:697
+msgid "Television"
+msgstr "Televisão"
 
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-#: ../../mod/crepair.php:131 ../../mod/dfrn_confirm.php:120
-msgid "Contact not found."
-msgstr "O contato não foi encontrado."
+#: ../../mod/profiles.php:698
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/dança/cultura/entretenimento"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "A sugestão de amigo foi enviada"
+#: ../../mod/profiles.php:699
+msgid "Love/romance"
+msgstr "Amor/romance"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Sugerir amigos"
+#: ../../mod/profiles.php:700
+msgid "Work/employment"
+msgstr "Trabalho/emprego"
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Sugerir um amigo para %s"
+#: ../../mod/profiles.php:701
+msgid "School/education"
+msgstr "Escola/educação"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "ligação"
+#: ../../mod/profiles.php:706
+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/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Nenhum contato."
+#: ../../mod/profiles.php:769
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Gerenciar perfis"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "As configurações do tema foram atualizadas."
+#: ../../mod/profiles.php:770 ../../boot.php:1606 ../../boot.php:1632
+msgid "Change profile photo"
+msgstr "Mudar a foto do perfil"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:587
-msgid "Site"
-msgstr "Site"
+#: ../../mod/profiles.php:771 ../../boot.php:1607
+msgid "Create New Profile"
+msgstr "Criar um novo perfil"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:959 ../../mod/admin.php:974
-msgid "Users"
-msgstr "Usuários"
+#: ../../mod/profiles.php:782 ../../boot.php:1617
+msgid "Profile Image"
+msgstr "Imagem do perfil"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1284 ../../mod/admin.php:1318
-msgid "Themes"
-msgstr "Temas"
+#: ../../mod/profiles.php:784 ../../boot.php:1620
+msgid "visible to everybody"
+msgstr "visível para todos"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "Atualizações do BD"
+#: ../../mod/profiles.php:785 ../../boot.php:1621
+msgid "Edit visibility"
+msgstr "Editar a visibilidade"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:130 ../../mod/admin.php:1405
-msgid "Logs"
-msgstr "Relatórios"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "O item não foi encontrado"
 
-#: ../../mod/admin.php:129
-msgid "Plugin Features"
-msgstr "Recursos do plugin"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Editar a publicação"
 
-#: ../../mod/admin.php:131
-msgid "User registrations waiting for confirmation"
-msgstr "Cadastros de novos usuários aguardando confirmação"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
+msgid "upload photo"
+msgstr "upload de foto"
 
-#: ../../mod/admin.php:190 ../../mod/admin.php:913
-msgid "Normal Account"
-msgstr "Conta normal"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
+msgid "Attach file"
+msgstr "Anexar arquivo"
 
-#: ../../mod/admin.php:191 ../../mod/admin.php:914
-msgid "Soapbox Account"
-msgstr "Conta de vitrine"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
+msgid "attach file"
+msgstr "anexar arquivo"
 
-#: ../../mod/admin.php:192 ../../mod/admin.php:915
-msgid "Community/Celebrity Account"
-msgstr "Conta de comunidade/celebridade"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
+msgid "web link"
+msgstr "link web"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:916
-msgid "Automatic Friend Account"
-msgstr "Conta de amigo automático"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
+msgid "Insert video link"
+msgstr "Inserir link de vídeo"
 
-#: ../../mod/admin.php:194
-msgid "Blog Account"
-msgstr "Conta de blog"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
+msgid "video link"
+msgstr "link de vídeo"
 
-#: ../../mod/admin.php:195
-msgid "Private Forum"
-msgstr "Fórum privado"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
+msgid "Insert audio link"
+msgstr "Inserir link de áudio"
 
-#: ../../mod/admin.php:214
-msgid "Message queues"
-msgstr "Fila de mensagens"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
+msgid "audio link"
+msgstr "link de áudio"
 
-#: ../../mod/admin.php:219 ../../mod/admin.php:586 ../../mod/admin.php:958
-#: ../../mod/admin.php:1062 ../../mod/admin.php:1115 ../../mod/admin.php:1283
-#: ../../mod/admin.php:1317 ../../mod/admin.php:1404
-msgid "Administration"
-msgstr "Administração"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
+msgid "Set your location"
+msgstr "Definir sua localização"
 
-#: ../../mod/admin.php:220
-msgid "Summary"
-msgstr "Resumo"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
+msgid "set location"
+msgstr "configure localização"
 
-#: ../../mod/admin.php:222
-msgid "Registered users"
-msgstr "Usuários registrados"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
+msgid "Clear browser location"
+msgstr "Limpar a localização do navegador"
 
-#: ../../mod/admin.php:224
-msgid "Pending registrations"
-msgstr "Registros pendentes"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
+msgid "clear location"
+msgstr "apague localização"
 
-#: ../../mod/admin.php:225
-msgid "Version"
-msgstr "Versão"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
+msgid "Permission settings"
+msgstr "Configurações de permissão"
 
-#: ../../mod/admin.php:227
-msgid "Active plugins"
-msgstr "Plugins ativos"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
+msgid "CC: email addresses"
+msgstr "CC: endereço de e-mail"
 
-#: ../../mod/admin.php:250
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
+msgid "Public post"
+msgstr "Publicação pública"
 
-#: ../../mod/admin.php:494
-msgid "Site settings updated."
-msgstr "As configurações do site foram atualizadas."
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
+msgid "Set title"
+msgstr "Definir o título"
 
-#: ../../mod/admin.php:541
-msgid "At post arrival"
-msgstr "Na chegada da publicação"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
+msgid "Categories (comma-separated list)"
+msgstr "Categorias (lista separada por vírgulas)"
 
-#: ../../mod/admin.php:550
-msgid "Multi user instance"
-msgstr "Instância multi usuário"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Por exemplo: joao@exemplo.com, maria@exemplo.com"
 
-#: ../../mod/admin.php:573
-msgid "Closed"
-msgstr "Fechado"
+#: ../../mod/friendica.php:62
+msgid "This is Friendica, version"
+msgstr "Este é o Friendica, versão"
 
-#: ../../mod/admin.php:574
-msgid "Requires approval"
-msgstr "Requer aprovação"
+#: ../../mod/friendica.php:63
+msgid "running at web location"
+msgstr "sendo executado no endereço web"
 
-#: ../../mod/admin.php:575
-msgid "Open"
-msgstr "Aberto"
+#: ../../mod/friendica.php:65
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
 
-#: ../../mod/admin.php:579
-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/friendica.php:67
+msgid "Bug reports and issues: please visit"
+msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
 
-#: ../../mod/admin.php:580
-msgid "Force all links to use SSL"
-msgstr "Forçar todos os links a utilizar SSL"
+#: ../../mod/friendica.php:68
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
 
-#: ../../mod/admin.php:581
-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/friendica.php:82
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugins/complementos/aplicações instaladas:"
 
-#: ../../mod/admin.php:590
-msgid "File upload"
-msgstr "Envio de arquivo"
+#: ../../mod/friendica.php:95
+msgid "No installed plugins/addons/apps"
+msgstr "Nenhum plugin/complemento/aplicativo instalado"
 
-#: ../../mod/admin.php:591
-msgid "Policies"
-msgstr "Políticas"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizar a conexão com a aplicação"
 
-#: ../../mod/admin.php:592
-msgid "Advanced"
-msgstr "Avançado"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Volte para a sua aplicação e digite este código de segurança:"
 
-#: ../../mod/admin.php:593
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Por favor, autentique-se para continuar."
 
-#: ../../mod/admin.php:594
+#: ../../mod/api.php:104
 msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível."
-
-#: ../../mod/admin.php:597
-msgid "Site name"
-msgstr "Nome do site"
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?"
 
-#: ../../mod/admin.php:598
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Não existe informação disponível sobre a privacidade remota."
 
-#: ../../mod/admin.php:599
-msgid "Additional Info"
-msgstr "Informação adicional"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visível para:"
 
-#: ../../mod/admin.php:599
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo."
+#: ../../mod/notes.php:44 ../../boot.php:2145
+msgid "Personal Notes"
+msgstr "Notas pessoais"
 
-#: ../../mod/admin.php:600
-msgid "System language"
-msgstr "Idioma do sistema"
+#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
+#: ../../include/event.php:11
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ H:i"
 
-#: ../../mod/admin.php:601
-msgid "System theme"
-msgstr "Tema do sistema"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversão de tempo"
 
-#: ../../mod/admin.php:601
+#: ../../mod/localtime.php:26
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema padrão do sistema. Pode ser substituído nos perfis de usuário -  <a href='#' id='cnftheme'>alterar configurações do tema</a>"
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
 
-#: ../../mod/admin.php:602
-msgid "Mobile system theme"
-msgstr "Tema do sistema para dispositivos móveis"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Hora UTC: %s"
 
-#: ../../mod/admin.php:602
-msgid "Theme for mobile devices"
-msgstr "Tema para dispositivos móveis"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso horário atual: %s"
 
-#: ../../mod/admin.php:603
-msgid "SSL link policy"
-msgstr "Política de link SSL"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Horário local convertido: %s"
 
-#: ../../mod/admin.php:603
-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/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Por favor, selecione seu fuso horário:"
 
-#: ../../mod/admin.php:604
-msgid "Old style 'Share'"
-msgstr "Estilo antigo do 'Compartilhar' "
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Cutucar/Incitar"
 
-#: ../../mod/admin.php:604
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Desativa o elemento bbcode 'compartilhar' para repetir ítens."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Cutuca, incita ou faz outras coisas com alguém"
 
-#: ../../mod/admin.php:605
-msgid "Hide help entry from navigation menu"
-msgstr "Oculta a entrada 'Ajuda' do menu de navegação"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatário"
 
-#: ../../mod/admin.php:605
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Oculta a entrada de menu para as páginas de Ajuda do menu de navegação. Ainda será possível acessá-las chamando /help diretamente."
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Selecione o que você deseja fazer com o destinatário"
 
-#: ../../mod/admin.php:606
-msgid "Single user instance"
-msgstr "Instância de usuário único"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Fazer com que essa publicação se torne privada"
 
-#: ../../mod/admin.php:606
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Faça essa instância multiusuário ou usuário único para o usuário em questão"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limite de convites totais excedido."
 
-#: ../../mod/admin.php:607
-msgid "Maximum image size"
-msgstr "Tamanho máximo da imagem"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Não é um endereço de e-mail válido."
 
-#: ../../mod/admin.php:607
-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/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Por favor, junte-se à nós na Friendica"
 
-#: ../../mod/admin.php:608
-msgid "Maximum image length"
-msgstr "Tamanho máximo da imagem"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
 
-#: ../../mod/admin.php:608
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Tamanho máximo em pixels do lado mais largo das imagens enviadas. O padrão é -1, que significa sem limites."
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Não foi possível enviar a mensagem."
 
-#: ../../mod/admin.php:609
-msgid "JPEG image quality"
-msgstr "Qualidade da imagem JPEG"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d mensagem enviada."
+msgstr[1] "%d mensagens enviadas."
 
-#: ../../mod/admin.php:609
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Imagens JPEG enviadas serão salvas com essa qualidade [0-100]. O padrão é 100, que significa a melhor qualidade."
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Você não possui mais convites disponíveis"
 
-#: ../../mod/admin.php:611
-msgid "Register policy"
-msgstr "Política de registro"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
 
-#: ../../mod/admin.php:612
-msgid "Maximum Daily Registrations"
-msgstr "Registros Diários Máximos"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
 
-#: ../../mod/admin.php:612
+#: ../../mod/invite.php:123
+#, php-format
 msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Se o registro é permitido acima, isso configura o número máximo de registros de novos usuários a serem aceitos por dia. Se o registro está configurado para 'fechado/closed' ,  essa configuração não tem efeito."
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
 
-#: ../../mod/admin.php:613
-msgid "Register text"
-msgstr "Texto de registro"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
 
-#: ../../mod/admin.php:613
-msgid "Will be displayed prominently on the registration page."
-msgstr "Será exibido com destaque na página de registro."
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Enviar convites."
 
-#: ../../mod/admin.php:614
-msgid "Accounts abandoned after x days"
-msgstr "Contas abandonadas após x dias"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Digite os endereços de e-mail, um por linha:"
 
-#: ../../mod/admin.php:614
+#: ../../mod/invite.php:135
 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."
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
 
-#: ../../mod/admin.php:615
-msgid "Allowed friend domains"
-msgstr "Domínios de amigos permitidos"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Você preciso informar este código de convite: $invite_code"
 
-#: ../../mod/admin.php:615
+#: ../../mod/invite.php:137
 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:616
-msgid "Allowed email domains"
-msgstr "Domínios de e-mail permitidos"
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
 
-#: ../../mod/admin.php:616
+#: ../../mod/invite.php:139
 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"
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
 
-#: ../../mod/admin.php:617
-msgid "Block public"
-msgstr "Bloquear acesso público"
+#: ../../mod/photos.php:52 ../../boot.php:2124
+msgid "Photo Albums"
+msgstr "Álbuns de fotos"
 
-#: ../../mod/admin.php:617
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Marque para bloquear o acesso público a todas as páginas desse site, com exceção das páginas pessoais públicas, a não ser que a pessoa esteja autenticada."
+#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+#: ../../view/theme/diabook/theme.php:499
+msgid "Contact Photos"
+msgstr "Fotos dos contatos"
 
-#: ../../mod/admin.php:618
-msgid "Force publish"
-msgstr "Forçar a listagem"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Enviar novas fotos"
 
-#: ../../mod/admin.php:618
-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/photos.php:144
+msgid "Contact information unavailable"
+msgstr "A informação de contato não está disponível"
 
-#: ../../mod/admin.php:619
-msgid "Global directory update URL"
-msgstr "URL de atualização do diretório global"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "O álbum não foi encontrado."
 
-#: ../../mod/admin.php:619
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL para atualizar o diretório global. Se isso não for definido, o diretório global não estará disponível neste site."
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Excluir o álbum"
 
-#: ../../mod/admin.php:620
-msgid "Allow threaded items"
-msgstr "Habilita itens aninhados"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
 
-#: ../../mod/admin.php:620
-msgid "Allow infinite level threading for items on this site."
-msgstr "Habilita nível infinito de aninhamento (threading) para itens."
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Excluir a foto"
 
-#: ../../mod/admin.php:621
-msgid "Private posts by default for new users"
-msgstr "Publicações privadas por padrão para novos usuários"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Você realmente deseja deletar essa foto?"
 
-#: ../../mod/admin.php:621
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Define as permissões padrão de publicação de todos os novos membros para o grupo de privacidade padrão, ao invés de torná-las públicas."
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s foi marcado em %2$s por %3$s"
 
-#: ../../mod/admin.php:622
-msgid "Don't include post content in email notifications"
-msgstr "Não incluir o conteúdo da postagem nas notificações de email"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "uma foto"
 
-#: ../../mod/admin.php:622
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Não incluir o conteúdo de uma postagem/comentário/mensagem privada/etc. em notificações de email que são enviadas para fora desse sítio, como medida de segurança."
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "A imagem excede o tamanho máximo de "
 
-#: ../../mod/admin.php:623
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Disabilita acesso público a addons listados no menu de aplicativos."
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "O arquivo de imagem está vazio."
 
-#: ../../mod/admin.php:623
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Marcar essa caixa ira restringir os addons listados no menu de aplicativos aos membros somente."
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Não foi selecionada nenhuma foto"
 
-#: ../../mod/admin.php:624
-msgid "Don't embed private images in posts"
-msgstr "Não inclua imagens privadas em publicações"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos."
 
-#: ../../mod/admin.php:624
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Não substitue fotos privativas guardadas localmente em publicações por uma cópia inclusa da imagem. Isso significa que os contatos que recebem publicações contendo fotos privadas terão que autenticar e carregar cada imagem, o que pode levar algum tempo."
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Enviar fotos"
 
-#: ../../mod/admin.php:625
-msgid "Allow Users to set remote_self"
-msgstr "Permite usuários configurarem remote_self"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nome do novo álbum: "
 
-#: ../../mod/admin.php:625
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "Ao marcar isto, todos os usuários poderão marcar cada contato como um remote_self na opção de reparar contato. Marcar isto para um contato produz espelhamento de toda publicação deste contato no fluxo dos usuários"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "ou o nome de um álbum já existente: "
 
-#: ../../mod/admin.php:626
-msgid "Block multiple registrations"
-msgstr "Bloquear registros repetidos"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Não exiba uma publicação de status para este envio"
 
-#: ../../mod/admin.php:626
-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/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Permissões"
 
-#: ../../mod/admin.php:627
-msgid "OpenID support"
-msgstr "Suporte ao OpenID"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Foto Privada"
 
-#: ../../mod/admin.php:627
-msgid "OpenID support for registration and logins."
-msgstr "Suporte ao OpenID para registros e autenticações."
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Foto Pública"
 
-#: ../../mod/admin.php:628
-msgid "Fullname check"
-msgstr "Verificar nome completo"
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Editar o álbum"
 
-#: ../../mod/admin.php:628
-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/photos.php:1218
+msgid "Show Newest First"
+msgstr "Exibir as mais recentes primeiro"
 
-#: ../../mod/admin.php:629
-msgid "UTF-8 Regular expressions"
-msgstr "Expressões regulares UTF-8"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Exibir as mais antigas primeiro"
 
-#: ../../mod/admin.php:629
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Use expressões regulares do PHP em UTF8"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Ver a foto"
 
-#: ../../mod/admin.php:630
-msgid "Show Community Page"
-msgstr "Exibir a página da comunidade"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permissão negada. O acesso a este item pode estar restrito."
 
-#: ../../mod/admin.php:630
-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/photos.php:1296
+msgid "Photo not available"
+msgstr "A foto não está disponível"
 
-#: ../../mod/admin.php:631
-msgid "Enable OStatus support"
-msgstr "Habilitar suporte ao OStatus"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Ver a imagem"
 
-#: ../../mod/admin.php:631
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fornece compatibilidade OStatus (StatusNet, GNU Social, etc.). Todas as comunicações no OStatus são públicas, assim avisos de privacidade serão ocasionalmente mostrados."
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Editar a foto"
 
-#: ../../mod/admin.php:632
-msgid "OStatus conversation completion interval"
-msgstr "Intervalo de finalização da conversação OStatus "
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Usar como uma foto de perfil"
 
-#: ../../mod/admin.php:632
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "De quanto em quanto tempo o \"buscador\" (poller) deve checar por novas entradas numa conversação OStatus? Essa pode ser uma tarefa bem demorada."
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Ver no tamanho real"
 
-#: ../../mod/admin.php:633
-msgid "Enable Diaspora support"
-msgstr "Habilitar suporte ao Diaspora"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Etiquetas: "
 
-#: ../../mod/admin.php:633
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornece compatibilidade nativa com a rede Diaspora."
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Remover qualquer etiqueta]"
 
-#: ../../mod/admin.php:634
-msgid "Only allow Friendica contacts"
-msgstr "Permitir somente contatos Friendica"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Rotacionar para direita"
 
-#: ../../mod/admin.php:634
-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/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Rotacionar para esquerda"
 
-#: ../../mod/admin.php:635
-msgid "Verify SSL"
-msgstr "Verificar SSL"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Novo nome para o álbum"
 
-#: ../../mod/admin.php:635
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Caso deseje, você pode habilitar a restrição de certificações. Isso significa que você não poderá conectar-se a nenhum site que use certificados auto-assinados."
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Legenda"
 
-#: ../../mod/admin.php:636
-msgid "Proxy user"
-msgstr "Usuário do proxy"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Adicionar uma etiqueta"
 
-#: ../../mod/admin.php:637
-msgid "Proxy URL"
-msgstr "URL do proxy"
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
 
-#: ../../mod/admin.php:638
-msgid "Network timeout"
-msgstr "Limite de tempo da rede"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Foto privada"
 
-#: ../../mod/admin.php:638
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valor em segundos. Defina como 0 para ilimitado (não recomendado)."
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Foto pública"
 
-#: ../../mod/admin.php:639
-msgid "Delivery interval"
-msgstr "Intervalo de envio"
+#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
+msgid "Share"
+msgstr "Compartilhar"
 
-#: ../../mod/admin.php:639
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Recomendado: 4-5 para servidores compartilhados (shared hosts), 2-3 para servidores privados virtuais (VPS). 0-1 para grandes servidores dedicados."
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Fotos recentes"
 
-#: ../../mod/admin.php:640
-msgid "Poll interval"
-msgstr "Intervalo da busca (polling)"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "A conta foi aprovada."
 
-#: ../../mod/admin.php:640
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Postergue o processo de entrega em background por essa quantidade de segundos visando reduzir a carga do sistema. Se 0, use intervalo de entrega."
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "O registro de %s foi revogado"
 
-#: ../../mod/admin.php:641
-msgid "Maximum Load Average"
-msgstr "Média de Carga Máxima"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Por favor, autentique-se."
 
-#: ../../mod/admin.php:641
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carga do sistema máxima antes que os processos de entrega e busca sejam postergados - padrão 50."
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Mover conta"
 
-#: ../../mod/admin.php:643
-msgid "Use MySQL full text engine"
-msgstr "Use o engine de texto completo (full text) do MySQL"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Você pode importar um conta de outro sevidor Friendica."
 
-#: ../../mod/admin.php:643
+#: ../../mod/uimport.php:68
 msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Ativa a engine de texto completo (full text). Acelera a busca - mas só pode buscar apenas por 4 ou mais caracteres."
-
-#: ../../mod/admin.php:644
-msgid "Suppress Language"
-msgstr "Retira idioma"
-
-#: ../../mod/admin.php:644
-msgid "Suppress language information in meta information about a posting."
-msgstr "Retira informações sobre idioma nas meta informações sobre uma publicação."
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."
 
-#: ../../mod/admin.php:645
-msgid "Path to item cache"
-msgstr "Diretório do cache de item"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora"
 
-#: ../../mod/admin.php:646
-msgid "Cache duration in seconds"
-msgstr "Duração do cache em segundos"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Arquivo de conta"
 
-#: ../../mod/admin.php:646
+#: ../../mod/uimport.php:70
 msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
 
-#: ../../mod/admin.php:647
-msgid "Maximum numbers of comments per post"
-msgstr ""
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "O item não está disponível."
 
-#: ../../mod/admin.php:647
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr ""
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "O item não foi encontrado."
 
-#: ../../mod/admin.php:648
-msgid "Path for lock file"
-msgstr "Diretório do arquivo de trava"
+#: ../../boot.php:744
+msgid "Delete this item?"
+msgstr "Excluir este item?"
 
-#: ../../mod/admin.php:649
-msgid "Temp path"
-msgstr "Diretório Temp"
+#: ../../boot.php:747
+msgid "show fewer"
+msgstr "exibir menos"
 
-#: ../../mod/admin.php:650
-msgid "Base path to installation"
-msgstr "Diretório base para instalação"
+#: ../../boot.php:1117
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Atualização %s falhou. Vide registro de erros (log)."
 
-#: ../../mod/admin.php:651
-msgid "Disable picture proxy"
-msgstr ""
+#: ../../boot.php:1235
+msgid "Create a New Account"
+msgstr "Criar uma nova conta"
 
-#: ../../mod/admin.php:651
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr ""
+#: ../../boot.php:1260 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Sair"
 
-#: ../../mod/admin.php:653
-msgid "New base url"
-msgstr "Nova URL base"
+#: ../../boot.php:1261 ../../include/nav.php:92
+msgid "Login"
+msgstr "Entrar"
 
-#: ../../mod/admin.php:655
-msgid "Enable noscrape"
-msgstr ""
+#: ../../boot.php:1263
+msgid "Nickname or Email address: "
+msgstr "Identificação ou endereço de e-mail: "
 
-#: ../../mod/admin.php:655
-msgid ""
-"The noscrape feature speeds up directory submissions by using JSON data "
-"instead of HTML scraping."
-msgstr ""
+#: ../../boot.php:1264
+msgid "Password: "
+msgstr "Senha: "
 
-#: ../../mod/admin.php:672
-msgid "Update has been marked successful"
-msgstr "A atualização foi marcada como bem sucedida"
+#: ../../boot.php:1265
+msgid "Remember me"
+msgstr "Lembre-se de mim"
 
-#: ../../mod/admin.php:680
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr ""
+#: ../../boot.php:1268
+msgid "Or login using OpenID: "
+msgstr "Ou login usando OpendID:"
 
-#: ../../mod/admin.php:683
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr ""
+#: ../../boot.php:1274
+msgid "Forgot your password?"
+msgstr "Esqueceu a sua senha?"
 
-#: ../../mod/admin.php:695
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr ""
+#: ../../boot.php:1277
+msgid "Website Terms of Service"
+msgstr "Termos de Serviço do Website"
 
-#: ../../mod/admin.php:698
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "A atualização %s foi aplicada com sucesso."
+#: ../../boot.php:1278
+msgid "terms of service"
+msgstr "termos de serviço"
 
-#: ../../mod/admin.php:702
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso."
+#: ../../boot.php:1280
+msgid "Website Privacy Policy"
+msgstr "Política de Privacidade do Website"
 
-#: ../../mod/admin.php:704
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr ""
+#: ../../boot.php:1281
+msgid "privacy policy"
+msgstr "política de privacidade"
 
-#: ../../mod/admin.php:723
-msgid "No failed updates."
-msgstr "Nenhuma atualização com falha."
+#: ../../boot.php:1414
+msgid "Requested account is not available."
+msgstr "Conta solicitada não disponível"
 
-#: ../../mod/admin.php:724
-msgid "Check database structure"
-msgstr ""
+#: ../../boot.php:1496 ../../boot.php:1630
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Editar perfil"
 
-#: ../../mod/admin.php:729
-msgid "Failed Updates"
-msgstr "Atualizações com falha"
+#: ../../boot.php:1595
+msgid "Message"
+msgstr "Mensagem"
 
-#: ../../mod/admin.php:730
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Isso não inclue atualizações antes da 1139, as quais não retornavam um status."
+#: ../../boot.php:1601 ../../include/nav.php:173
+msgid "Profiles"
+msgstr "Perfis"
 
-#: ../../mod/admin.php:731
-msgid "Mark success (if update was manually applied)"
-msgstr "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)"
+#: ../../boot.php:1601
+msgid "Manage/edit profiles"
+msgstr "Gerenciar/editar perfis"
 
-#: ../../mod/admin.php:732
-msgid "Attempt to execute this update step automatically"
-msgstr "Tentar executar esse passo da atualização automaticamente"
+#: ../../boot.php:1701
+msgid "Network:"
+msgstr "Rede:"
 
-#: ../../mod/admin.php:764
-#, php-format
-msgid ""
-"\n"
-"\t\t\tDear %1$s,\n"
-"\t\t\t\tthe administrator of %2$s has set up an account for you."
-msgstr ""
+#: ../../boot.php:1731 ../../boot.php:1817
+msgid "g A l F d"
+msgstr "G l d F"
 
-#: ../../mod/admin.php:767
-#, php-format
-msgid ""
-"\n"
-"\t\t\tThe login details are as follows:\n"
-"\n"
-"\t\t\tSite Location:\t%1$s\n"
-"\t\t\tLogin Name:\t\t%2$s\n"
-"\t\t\tPassword:\t\t%3$s\n"
-"\n"
-"\t\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\t\tin.\n"
-"\n"
-"\t\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\t\tthan that.\n"
-"\n"
-"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\t\t\tThank you and welcome to %4$s."
-msgstr ""
+#: ../../boot.php:1732 ../../boot.php:1818
+msgid "F d"
+msgstr "F d"
 
-#: ../../mod/admin.php:811
-#, 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"
+#: ../../boot.php:1777 ../../boot.php:1858
+msgid "[today]"
+msgstr "[hoje]"
 
-#: ../../mod/admin.php:818
-#, 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"
+#: ../../boot.php:1789
+msgid "Birthday Reminders"
+msgstr "Lembretes de aniversário"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "User '%s' deleted"
-msgstr "O usuário '%s' foi excluído"
+#: ../../boot.php:1790
+msgid "Birthdays this week:"
+msgstr "Aniversários nesta semana:"
 
-#: ../../mod/admin.php:865
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "O usuário '%s' foi desbloqueado"
+#: ../../boot.php:1851
+msgid "[No description]"
+msgstr "[Sem descrição]"
 
-#: ../../mod/admin.php:865
-#, php-format
-msgid "User '%s' blocked"
-msgstr "O usuário '%s' foi bloqueado"
+#: ../../boot.php:1869
+msgid "Event Reminders"
+msgstr "Lembretes de eventos"
 
-#: ../../mod/admin.php:960
-msgid "Add User"
-msgstr "Adicionar usuário"
+#: ../../boot.php:1870
+msgid "Events this week:"
+msgstr "Eventos esta semana:"
 
-#: ../../mod/admin.php:961
-msgid "select all"
-msgstr "selecionar todos"
+#: ../../boot.php:2107 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/admin.php:962
-msgid "User registrations waiting for confirm"
-msgstr "Registros de usuário aguardando confirmação"
+#: ../../boot.php:2110
+msgid "Status Messages and Posts"
+msgstr "Mensagem de Estado (status) e Publicações"
 
-#: ../../mod/admin.php:963
-msgid "User waiting for permanent deletion"
-msgstr "Usuário aguardando por fim permanente da conta."
+#: ../../boot.php:2117
+msgid "Profile Details"
+msgstr "Detalhe do Perfil"
 
-#: ../../mod/admin.php:964
-msgid "Request date"
-msgstr "Solicitar data"
+#: ../../boot.php:2128 ../../boot.php:2131 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Vídeos"
 
-#: ../../mod/admin.php:965
-msgid "No registrations."
-msgstr "Nenhum registro."
+#: ../../boot.php:2141
+msgid "Events and Calendar"
+msgstr "Eventos e Agenda"
 
-#: ../../mod/admin.php:967
-msgid "Deny"
-msgstr "Negar"
+#: ../../boot.php:2148
+msgid "Only You Can See This"
+msgstr "Somente Você Pode Ver Isso"
 
-#: ../../mod/admin.php:971
-msgid "Site admin"
-msgstr "Administração do site"
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Essa entrada foi editada"
 
-#: ../../mod/admin.php:972
-msgid "Account expired"
-msgstr "Conta expirou"
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "ignorar tópico"
 
-#: ../../mod/admin.php:975
-msgid "New User"
-msgstr "Novo usuário"
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "deixar de ignorar tópico"
 
-#: ../../mod/admin.php:976 ../../mod/admin.php:977
-msgid "Register date"
-msgstr "Data de registro"
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "alternar status ignorar"
 
-#: ../../mod/admin.php:976 ../../mod/admin.php:977
-msgid "Last login"
-msgstr "Última entrada"
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "Ignorado"
 
-#: ../../mod/admin.php:976 ../../mod/admin.php:977
-msgid "Last item"
-msgstr "Último item"
+#: ../../object/Item.php:316 ../../include/conversation.php:666
+msgid "Categories:"
+msgstr "Categorias:"
 
-#: ../../mod/admin.php:976
-msgid "Deleted since"
-msgstr "Apagado desde"
+#: ../../object/Item.php:317 ../../include/conversation.php:667
+msgid "Filed under:"
+msgstr "Arquivado sob:"
 
-#: ../../mod/admin.php:979
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?"
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
 
-#: ../../mod/admin.php:980
+#: ../../include/dbstructure.php:26
+#, php-format
 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?"
+"\n"
+"\t\t\tThe friendica developers released update %s recently,\n"
+"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
+"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
+"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
+msgstr "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido."
 
-#: ../../mod/admin.php:990
-msgid "Name of the new user."
-msgstr "Nome do novo usuários."
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "A mensagem de erro é\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:991
-msgid "Nickname"
-msgstr "Apelido"
+#: ../../include/dbstructure.php:162
+msgid "Errors encountered creating database tables."
+msgstr "Foram encontrados erros durante a criação das tabelas do banco de dados."
 
-#: ../../mod/admin.php:991
-msgid "Nickname of the new user."
-msgstr "Apelido para o novo usuário."
+#: ../../include/dbstructure.php:220
+msgid "Errors encountered performing database changes."
+msgstr "Erros encontrados realizando mudanças no banco de dados."
 
-#: ../../mod/admin.php:992
-msgid "Email address of the new user."
-msgstr "Endereço de e-mail do novo usuário."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Saiu."
 
-#: ../../mod/admin.php:1025
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "O plugin %s foi desabilitado."
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente."
 
-#: ../../mod/admin.php:1029
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "O plugin %s foi habilitado."
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "A mensagem de erro foi:"
 
-#: ../../mod/admin.php:1039 ../../mod/admin.php:1255
-msgid "Disable"
-msgstr "Desabilitar"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Adicionar Contato Novo"
 
-#: ../../mod/admin.php:1041 ../../mod/admin.php:1257
-msgid "Enable"
-msgstr "Habilitar"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Forneça endereço ou localização web"
 
-#: ../../mod/admin.php:1064 ../../mod/admin.php:1285
-msgid "Toggle"
-msgstr "Alternar"
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Por exemplo: joao@exemplo.com, http://exemplo.com/maria"
 
-#: ../../mod/admin.php:1072 ../../mod/admin.php:1295
-msgid "Author: "
-msgstr "Autor: "
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d convite disponível"
+msgstr[1] "%d convites disponíveis"
 
-#: ../../mod/admin.php:1073 ../../mod/admin.php:1296
-msgid "Maintainer: "
-msgstr "Mantenedor: "
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Pesquisar por pessoas"
 
-#: ../../mod/admin.php:1215
-msgid "No themes found."
-msgstr "Nenhum tema encontrado"
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Fornecer nome ou interesse"
 
-#: ../../mod/admin.php:1277
-msgid "Screenshot"
-msgstr "Captura de tela"
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Conectar-se/acompanhar"
 
-#: ../../mod/admin.php:1323
-msgid "[Experimental]"
-msgstr "[Esperimental]"
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Examplos: Robert Morgenstein, Fishing"
 
-#: ../../mod/admin.php:1324
-msgid "[Unsupported]"
-msgstr "[Não suportado]"
+#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
+msgid "Similar Interests"
+msgstr "Interesses Parecidos"
 
-#: ../../mod/admin.php:1351
-msgid "Log settings updated."
-msgstr "As configurações de relatórios foram atualizadas."
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Perfil Randômico"
 
-#: ../../mod/admin.php:1407
-msgid "Clear"
-msgstr "Limpar"
+#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
+msgid "Invite Friends"
+msgstr "Convidar amigos"
 
-#: ../../mod/admin.php:1413
-msgid "Enable Debugging"
-msgstr "Habilitar Debugging"
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Redes"
 
-#: ../../mod/admin.php:1414
-msgid "Log file"
-msgstr "Arquivo do relatório"
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Todas as redes"
 
-#: ../../mod/admin.php:1414
-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."
+#: ../../include/contact_widgets.php:104 ../../include/features.php:60
+msgid "Saved Folders"
+msgstr "Pastas salvas"
 
-#: ../../mod/admin.php:1415
-msgid "Log level"
-msgstr "Nível do relatório"
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Tudo"
 
-#: ../../mod/admin.php:1465
-msgid "Close"
-msgstr "Fechar"
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Categorias"
 
-#: ../../mod/admin.php:1471
-msgid "FTP Host"
-msgstr "Endereço do FTP"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Funcionalidades Gerais"
 
-#: ../../mod/admin.php:1472
-msgid "FTP Path"
-msgstr "Caminho do FTP"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Perfís Múltiplos"
 
-#: ../../mod/admin.php:1473
-msgid "FTP User"
-msgstr "Usuário do FTP"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Capacidade de criar perfis múltiplos"
 
-#: ../../mod/admin.php:1474
-msgid "FTP Password"
-msgstr "Senha do FTP"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funcionalidades de Composição de Publicações"
 
-#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "A imagem excede o limite de tamanho de %d"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor Richtext"
 
-#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Não foi possível processar a imagem."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Habilite editor richtext"
 
-#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Não foi possível enviar a imagem."
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Pré-visualização da Publicação"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Bem-vindo(a) a %s"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permite pré-visualizar publicações e comentários antes de publicá-los"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erro no protocolo OpenID. Não foi retornada nenhuma ID."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Auto-menção Fóruns"
 
-#: ../../mod/openid.php:53
+#: ../../include/features.php:33
 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/network.php:136
-msgid "Search Results For:"
-msgstr "Resultados de Busca Por:"
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL"
 
-#: ../../mod/network.php:179 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Remover o termo"
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets da Barra Lateral da Rede"
 
-#: ../../mod/network.php:350
-msgid "Commented Order"
-msgstr "Ordem dos comentários"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Buscar por Data"
 
-#: ../../mod/network.php:353
-msgid "Sort by Comment Date"
-msgstr "Ordenar pela data do comentário"
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Capacidade de selecionar publicações por intervalos de data"
 
-#: ../../mod/network.php:356
-msgid "Posted Order"
-msgstr "Ordem das publicações"
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtrar Grupo"
 
-#: ../../mod/network.php:359
-msgid "Sort by Post Date"
-msgstr "Ordenar pela data de publicação"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Habilita widget para mostrar publicações da Rede somente de grupos selecionados"
 
-#: ../../mod/network.php:368
-msgid "Posts that mention or involve you"
-msgstr "Publicações que mencionem ou envolvam você"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtrar Rede"
 
-#: ../../mod/network.php:374
-msgid "New"
-msgstr "Nova"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Habilita widget para mostrar publicações da Rede de redes selecionadas"
 
-#: ../../mod/network.php:377
-msgid "Activity Stream - by date"
-msgstr "Fluxo de atividades - por data"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Guarde as palavras-chaves para reuso"
 
-#: ../../mod/network.php:383
-msgid "Shared Links"
-msgstr "Links compartilhados"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Abas da Rede"
 
-#: ../../mod/network.php:386
-msgid "Interesting Links"
-msgstr "Links interessantes"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Aba Pessoal da Rede"
 
-#: ../../mod/network.php:392
-msgid "Starred"
-msgstr "Destacada"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido"
 
-#: ../../mod/network.php:395
-msgid "Favourite Posts"
-msgstr "Publicações favoritas"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Aba Nova da Rede"
 
-#: ../../mod/network.php:457
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Aviso: Este grupo contém %s membro de uma rede insegura."
-msgstr[1] "Aviso: Este grupo contém %s membros de uma rede insegura."
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)"
 
-#: ../../mod/network.php:460
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Mensagens privadas para este grupo correm o risco de sofrerem divulgação pública."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Aba de Links Compartilhados da Rede"
 
-#: ../../mod/network.php:514 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Este grupo não existe"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Habilite aba para mostrar somente publicações da Rede que contenham links"
 
-#: ../../mod/network.php:531 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "O grupo está vazio"
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Ferramentas de Publicação/Comentário"
 
-#: ../../mod/network.php:538 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Grupo: "
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Deleção Multipla"
 
-#: ../../mod/network.php:548
-msgid "Contact: "
-msgstr "Contato: "
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Selecione e delete múltiplas publicações/comentário imediatamente"
 
-#: ../../mod/network.php:550
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública."
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editar Publicações Enviadas"
 
-#: ../../mod/network.php:555
-msgid "Invalid contact."
-msgstr "Contato inválido."
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editar e corrigir publicações e comentários após envio"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "-selecione-"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Etiquetagem"
 
-#: ../../mod/friendica.php:62
-msgid "This is Friendica, version"
-msgstr "Este é o Friendica, versão"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Capacidade de colocar etiquetas em publicações existentes"
 
-#: ../../mod/friendica.php:63
-msgid "running at web location"
-msgstr "sendo executado no endereço web"
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Categorias de Publicações"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica."
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Adicione Categorias ás Publicações"
 
-#: ../../mod/friendica.php:67
-msgid "Bug reports and issues: please visit"
-msgstr "Relatos e acompanhamentos de erros podem ser encontrados em"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Capacidade de arquivar publicações em pastas"
 
-#: ../../mod/friendica.php:68
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Desgostar de publicações"
 
-#: ../../mod/friendica.php:82
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugins/complementos/aplicações instaladas:"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Capacidade de desgostar de publicações/comentários"
 
-#: ../../mod/friendica.php:95
-msgid "No installed plugins/addons/apps"
-msgstr "Nenhum plugin/complemento/aplicativo instalado"
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Destacar publicações"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplicativos"
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Capacidade de marcar publicações especiais com uma estrela indicadora"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Nenhum aplicativo instalado"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Silenciar Notificações de Postagem"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1228 ../../mod/photos.php:1817
-msgid "Upload New Photos"
-msgstr "Enviar novas fotos"
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Habilitar notificação silenciosa para a tarefa"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "A informação de contato não está disponível"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de conexão faltando."
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "O álbum não foi encontrado."
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Este site não está configurado para permitir comunicações com outras redes."
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1206
-msgid "Delete Album"
-msgstr "Excluir o álbum"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível."
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "O endereço de perfil especificado não fornece informação adequada."
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1513
-msgid "Delete Photo"
-msgstr "Excluir a foto"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Não foi encontrado nenhum autor ou nome."
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Você realmente deseja deletar essa foto?"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Não foi possível encontrar nenhuma URL de navegação neste endereço."
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s foi marcado em %2$s por %3$s"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email."
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "uma foto"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Use mailto: antes do endereço para forçar a checagem de email."
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "A imagem excede o tamanho máximo de "
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site."
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "O arquivo de imagem está vazio."
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você."
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Não foi selecionada nenhuma foto"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Não foi possível recuperar a informação do contato."
 
-#: ../../mod/photos.php:1094
-#, 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."
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "acompanhando"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Enviar fotos"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente."
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1201
-msgid "New album name: "
-msgstr "Nome do novo álbum: "
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Grupo de privacidade padrão para novos contatos"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "ou o nome de um álbum já existente: "
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Todos"
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Não exiba uma publicação de status para este envio"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editar"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1508
-msgid "Permissions"
-msgstr "Permissões"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editar grupo"
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Foto Privada"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Criar um novo grupo"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Foto Pública"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contatos não estão dentro de nenhum grupo"
 
-#: ../../mod/photos.php:1216
-msgid "Edit Album"
-msgstr "Editar o álbum"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Miscelânea"
 
-#: ../../mod/photos.php:1222
-msgid "Show Newest First"
-msgstr "Exibir as mais recentes primeiro"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "ano"
 
-#: ../../mod/photos.php:1224
-msgid "Show Oldest First"
-msgstr "Exibir as mais antigas primeiro"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "mês"
 
-#: ../../mod/photos.php:1257 ../../mod/photos.php:1800
-msgid "View Photo"
-msgstr "Ver a foto"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "dia"
 
-#: ../../mod/photos.php:1292
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permissão negada. O acesso a este item pode estar restrito."
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nunca"
 
-#: ../../mod/photos.php:1294
-msgid "Photo not available"
-msgstr "A foto não está disponível"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "menos de um segundo atrás"
 
-#: ../../mod/photos.php:1350
-msgid "View photo"
-msgstr "Ver a imagem"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "anos"
 
-#: ../../mod/photos.php:1350
-msgid "Edit photo"
-msgstr "Editar a foto"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "meses"
 
-#: ../../mod/photos.php:1351
-msgid "Use as profile photo"
-msgstr "Usar como uma foto de perfil"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "semana"
 
-#: ../../mod/photos.php:1376
-msgid "View Full Size"
-msgstr "Ver no tamanho real"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "semanas"
 
-#: ../../mod/photos.php:1455
-msgid "Tags: "
-msgstr "Etiquetas: "
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "dias"
 
-#: ../../mod/photos.php:1458
-msgid "[Remove any tag]"
-msgstr "[Remover qualquer etiqueta]"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "hora"
 
-#: ../../mod/photos.php:1498
-msgid "Rotate CW (right)"
-msgstr "Rotacionar para direita"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "horas"
 
-#: ../../mod/photos.php:1499
-msgid "Rotate CCW (left)"
-msgstr "Rotacionar para esquerda"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minuto"
 
-#: ../../mod/photos.php:1501
-msgid "New album name"
-msgstr "Novo nome para o álbum"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minutos"
 
-#: ../../mod/photos.php:1504
-msgid "Caption"
-msgstr "Legenda"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "segundo"
 
-#: ../../mod/photos.php:1506
-msgid "Add a Tag"
-msgstr "Adicionar uma etiqueta"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "segundos"
 
-#: ../../mod/photos.php:1510
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s atrás"
 
-#: ../../mod/photos.php:1519
-msgid "Private photo"
-msgstr "Foto privada"
+#: ../../include/datetime.php:477 ../../include/items.php:2195
+#, php-format
+msgid "%s's birthday"
+msgstr "aniversários de %s's"
 
-#: ../../mod/photos.php:1520
-msgid "Public photo"
-msgstr "Foto pública"
+#: ../../include/datetime.php:478 ../../include/items.php:2196
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Feliz Aniversário %s"
 
-#: ../../mod/photos.php:1815
-msgid "Recent Photos"
-msgstr "Fotos recentes"
+#: ../../include/acl_selectors.php:326
+msgid "Visible to everybody"
+msgstr "Visível para todos"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "O contato foi adicionado"
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "show"
+msgstr "exibir"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Mover conta"
+#: ../../include/acl_selectors.php:328 ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621
+msgid "don't show"
+msgstr "não exibir"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Você pode importar um conta de outro sevidor Friendica."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[sem assunto]"
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá."
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "parou de acompanhar"
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora"
+#: ../../include/Contact.php:228 ../../include/conversation.php:882
+msgid "Poke"
+msgstr "Cutucar"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Arquivo de conta"
+#: ../../include/Contact.php:229 ../../include/conversation.php:876
+msgid "View Status"
+msgstr "Ver Status"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\""
+#: ../../include/Contact.php:230 ../../include/conversation.php:877
+msgid "View Profile"
+msgstr "Ver Perfil"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limite de convites totais excedido."
+#: ../../include/Contact.php:231 ../../include/conversation.php:878
+msgid "View Photos"
+msgstr "Ver Fotos"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Não é um endereço de e-mail válido."
+#: ../../include/Contact.php:232 ../../include/Contact.php:255
+#: ../../include/conversation.php:879
+msgid "Network Posts"
+msgstr "Publicações da Rede"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Por favor, junte-se à nós na Friendica"
+#: ../../include/Contact.php:233 ../../include/Contact.php:255
+#: ../../include/conversation.php:880
+msgid "Edit Contact"
+msgstr "Editar Contato"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite de convites ultrapassado. Favor contactar o administrador do sítio."
+#: ../../include/Contact.php:234
+msgid "Drop Contact"
+msgstr "Excluir o contato"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Não foi possível enviar a mensagem."
+#: ../../include/Contact.php:235 ../../include/Contact.php:255
+#: ../../include/conversation.php:881
+msgid "Send PM"
+msgstr "Enviar MP"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d mensagem enviada."
-msgstr[1] "%d mensagens enviadas."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bem-vindo(a) "
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Você não possui mais convites disponíveis"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Por favor, envie uma foto para o perfil."
 
-#: ../../mod/invite.php:120
-#, php-format
-msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais."
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bem-vindo(a) de volta "
 
-#: ../../mod/invite.php:122
-#, php-format
+#: ../../include/security.php:366
 msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público."
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão."
 
-#: ../../mod/invite.php:123
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+#: ../../include/text.php:1963 ../../view/theme/diabook/theme.php:463
+msgid "event"
+msgstr "evento"
+
+#: ../../include/conversation.php:207
 #, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar."
+msgid "%1$s poked %2$s"
+msgstr "%1$s cutucou %2$s"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros."
+#: ../../include/conversation.php:211 ../../include/text.php:1004
+msgid "poked"
+msgstr "cutucado"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Enviar convites."
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "postagem/item"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Digite os endereços de e-mail, um por linha:"
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s marcou %3$s de %2$s como favorito"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web."
+#: ../../include/conversation.php:772
+msgid "remove"
+msgstr "remover"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Você preciso informar este código de convite: $invite_code"
+#: ../../include/conversation.php:776
+msgid "Delete Selected Items"
+msgstr "Excluir os itens selecionados"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:"
+#: ../../include/conversation.php:875
+msgid "Follow Thread"
+msgstr "Seguir o Thread"
 
-#: ../../mod/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com."
+#: ../../include/conversation.php:944
+#, php-format
+msgid "%s likes this."
+msgstr "%s gostou disso."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Acesso negado."
+#: ../../include/conversation.php:944
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s não gostou disso."
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Não foi encontrada nenhuma conta válida."
+#: ../../include/conversation.php:949
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d pessoas</span> gostaram disso"
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail."
+#: ../../include/conversation.php:952
+#, 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"
 
-#: ../../mod/lostpass.php:42
+#: ../../include/conversation.php:966
+msgid "and"
+msgstr "e"
+
+#: ../../include/conversation.php:972
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr ""
+msgid ", and %d other people"
+msgstr ", e mais %d outras pessoas"
 
-#: ../../mod/lostpass.php:53
+#: ../../include/conversation.php:974
 #, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr ""
+msgid "%s like this."
+msgstr "%s gostaram disso."
 
-#: ../../mod/lostpass.php:72
+#: ../../include/conversation.php:974
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Foi feita uma solicitação de reiniciação da senha em %s"
+msgid "%s don't like this."
+msgstr "%s não gostaram disso."
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada."
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visível para <strong>todos</strong>"
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Sua senha foi reiniciada, conforme solicitado."
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter a video link/URL:"
+msgstr "Favor fornecer um link/URL de vídeo"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Sua nova senha é"
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Please enter an audio link/URL:"
+msgstr "Favor fornecer um link/URL de áudio"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Grave ou copie a sua nova senha e, então"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+msgid "Tag term:"
+msgstr "Etiqueta:"
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "clique aqui para entrar"
+#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
+msgid "Where are you right now?"
+msgstr "Onde você está agora?"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil."
+#: ../../include/conversation.php:1008
+msgid "Delete item(s)?"
+msgstr "Deletar item(s)?"
 
-#: ../../mod/lostpass.php:125
+#: ../../include/conversation.php:1051
+msgid "Post to Email"
+msgstr "Enviar por e-mail"
+
+#: ../../include/conversation.php:1056
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr ""
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Conectores desabilitados, desde \"%s\" está habilitado."
+
+#: ../../include/conversation.php:1111
+msgid "permissions"
+msgstr "permissões"
+
+#: ../../include/conversation.php:1135
+msgid "Post to Groups"
+msgstr "Postar em Grupos"
+
+#: ../../include/conversation.php:1136
+msgid "Post to Contacts"
+msgstr "Publique para Contatos"
+
+#: ../../include/conversation.php:1137
+msgid "Private post"
+msgstr "Publicação privada"
+
+#: ../../include/network.php:895
+msgid "view full size"
+msgstr "ver na tela inteira"
+
+#: ../../include/text.php:296
+msgid "newer"
+msgstr "mais recente"
+
+#: ../../include/text.php:298
+msgid "older"
+msgstr "antigo"
+
+#: ../../include/text.php:303
+msgid "prev"
+msgstr "anterior"
+
+#: ../../include/text.php:305
+msgid "first"
+msgstr "primeiro"
+
+#: ../../include/text.php:337
+msgid "last"
+msgstr "último"
+
+#: ../../include/text.php:340
+msgid "next"
+msgstr "próximo"
+
+#: ../../include/text.php:854
+msgid "No contacts"
+msgstr "Nenhum contato"
+
+#: ../../include/text.php:863
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contato"
+msgstr[1] "%d contatos"
+
+#: ../../include/text.php:1004
+msgid "poke"
+msgstr "cutucar"
+
+#: ../../include/text.php:1005
+msgid "ping"
+msgstr "ping"
+
+#: ../../include/text.php:1005
+msgid "pinged"
+msgstr "pingado"
+
+#: ../../include/text.php:1006
+msgid "prod"
+msgstr "incentivar"
+
+#: ../../include/text.php:1006
+msgid "prodded"
+msgstr "incentivado"
+
+#: ../../include/text.php:1007
+msgid "slap"
+msgstr "bater"
+
+#: ../../include/text.php:1007
+msgid "slapped"
+msgstr "batido"
+
+#: ../../include/text.php:1008
+msgid "finger"
+msgstr "apontar"
+
+#: ../../include/text.php:1008
+msgid "fingered"
+msgstr "apontado"
+
+#: ../../include/text.php:1009
+msgid "rebuff"
+msgstr "rejeite"
+
+#: ../../include/text.php:1009
+msgid "rebuffed"
+msgstr "rejeitado"
+
+#: ../../include/text.php:1023
+msgid "happy"
+msgstr "feliz"
+
+#: ../../include/text.php:1024
+msgid "sad"
+msgstr "triste"
+
+#: ../../include/text.php:1025
+msgid "mellow"
+msgstr "desencanado"
+
+#: ../../include/text.php:1026
+msgid "tired"
+msgstr "cansado"
+
+#: ../../include/text.php:1027
+msgid "perky"
+msgstr "audacioso"
 
-#: ../../mod/lostpass.php:131
-#, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr ""
+#: ../../include/text.php:1028
+msgid "angry"
+msgstr "chateado"
 
-#: ../../mod/lostpass.php:147
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Sua senha foi modifica às %s"
+#: ../../include/text.php:1029
+msgid "stupified"
+msgstr "estupefato"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Esqueceu a sua senha?"
+#: ../../include/text.php:1030
+msgid "puzzled"
+msgstr "confuso"
 
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções."
+#: ../../include/text.php:1031
+msgid "interested"
+msgstr "interessado"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Identificação ou e-mail: "
+#: ../../include/text.php:1032
+msgid "bitter"
+msgstr "rancoroso"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Reiniciar"
+#: ../../include/text.php:1033
+msgid "cheerful"
+msgstr "jovial"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texto fonte (bbcode):"
+#: ../../include/text.php:1034
+msgid "alive"
+msgstr "vivo"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texto fonte (Diaspora) a converter para BBcode:"
+#: ../../include/text.php:1035
+msgid "annoyed"
+msgstr "incomodado"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Entrada fonte:"
+#: ../../include/text.php:1036
+msgid "anxious"
+msgstr "ansioso"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML puro):"
+#: ../../include/text.php:1037
+msgid "cranky"
+msgstr "excêntrico"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../include/text.php:1038
+msgid "disturbed"
+msgstr "perturbado"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../include/text.php:1039
+msgid "frustrated"
+msgstr "frustrado"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../include/text.php:1040
+msgid "motivated"
+msgstr "motivado"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../include/text.php:1041
+msgid "relaxed"
+msgstr "relaxado"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../include/text.php:1042
+msgid "surprised"
+msgstr "surpreso"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../include/text.php:1210
+msgid "Monday"
+msgstr "Segunda"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Fonte de entrada (formato Diaspora):"
+#: ../../include/text.php:1210
+msgid "Tuesday"
+msgstr "Terça"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/text.php:1210
+msgid "Wednesday"
+msgstr "Quarta"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "A etiqueta foi removida"
+#: ../../include/text.php:1210
+msgid "Thursday"
+msgstr "Quinta"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Remover a etiqueta do item"
+#: ../../include/text.php:1210
+msgid "Friday"
+msgstr "Sexta"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Selecione uma etiqueta para remover: "
+#: ../../include/text.php:1210
+msgid "Saturday"
+msgstr "Sábado"
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Remover minha conta"
+#: ../../include/text.php:1210
+msgid "Sunday"
+msgstr "Domingo"
 
-#: ../../mod/removeme.php:47
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la."
+#: ../../include/text.php:1214
+msgid "January"
+msgstr "Janeiro"
 
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Por favor, digite a sua senha para verificação:"
+#: ../../include/text.php:1214
+msgid "February"
+msgstr "Fevereiro"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identificador de perfil inválido."
+#: ../../include/text.php:1214
+msgid "March"
+msgstr "Março"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor de visibilidade do perfil"
+#: ../../include/text.php:1214
+msgid "April"
+msgstr "Abril"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visível para"
+#: ../../include/text.php:1214
+msgid "May"
+msgstr "Maio"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Todos os contatos (com acesso a perfil seguro)"
+#: ../../include/text.php:1214
+msgid "June"
+msgstr "Junho"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correspondência de perfil"
+#: ../../include/text.php:1214
+msgid "July"
+msgstr "Julho"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão."
+#: ../../include/text.php:1214
+msgid "August"
+msgstr "Agosto"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "se interessa por:"
+#: ../../include/text.php:1214
+msgid "September"
+msgstr "Setembro"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "O título do evento e a hora de início são obrigatórios."
+#: ../../include/text.php:1214
+msgid "October"
+msgstr "Outubro"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../include/text.php:1214
+msgid "November"
+msgstr "Novembro"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editar o evento"
+#: ../../include/text.php:1214
+msgid "December"
+msgstr "Dezembro"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Criar um novo evento"
+#: ../../include/text.php:1434
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Anterior"
+#: ../../include/text.php:1458 ../../include/text.php:1470
+msgid "Click to open/close"
+msgstr "Clique para abrir/fechar"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Próximo"
+#: ../../include/text.php:1699 ../../include/user.php:247
+#: ../../view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "padrão"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hora:minuto"
+#: ../../include/text.php:1711
+msgid "Select an alternate language"
+msgstr "Selecione um idioma alternativo"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detalhes do evento"
+#: ../../include/text.php:1967
+msgid "activity"
+msgstr "atividade"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "O formato é %s %s. O título e a data de início são obrigatórios."
+#: ../../include/text.php:1970
+msgid "post"
+msgstr "publicação"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Início do evento:"
+#: ../../include/text.php:2138
+msgid "Item filed"
+msgstr "O item foi arquivado"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Obrigatório"
+#: ../../include/bbcode.php:428 ../../include/bbcode.php:1027
+#: ../../include/bbcode.php:1028
+msgid "Image/photo"
+msgstr "Imagem/foto"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "A data/hora de término não é conhecida ou não é relevante"
+#: ../../include/bbcode.php:528
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Término do evento:"
+#: ../../include/bbcode.php:562
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajustar para o fuso horário do visualizador"
+#: ../../include/bbcode.php:991 ../../include/bbcode.php:1011
+msgid "$1 wrote:"
+msgstr "$1 escreveu:"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Descrição:"
+#: ../../include/bbcode.php:1036 ../../include/bbcode.php:1037
+msgid "Encrypted content"
+msgstr "Conteúdo criptografado"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Título:"
+#: ../../include/notifier.php:786 ../../include/delivery.php:456
+msgid "(no subject)"
+msgstr "(sem assunto)"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Compartilhar este evento"
+#: ../../include/notifier.php:796 ../../include/delivery.php:467
+#: ../../include/enotify.php:31
+msgid "noreply"
+msgstr "naoresponda"
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} deseja ser seu amigo"
+#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#, 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'"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} lhe enviou uma mensagem"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Desconhecido | Não categorizado"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} solicitou registro"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquear imediatamente"
 
-#: ../../mod/ping.php:256
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} comentou a publicação de %s"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Dissimulado, spammer, propagandista"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} gostou da publicação de %s"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Eu conheço, mas não possuo nenhuma opinião acerca"
 
-#: ../../mod/ping.php:266
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} desgostou da publicação de %s"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "Ok, provavelmente inofensivo"
 
-#: ../../mod/ping.php:271
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} agora é amigo de %s"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Boa reputação, tem minha confiança"
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} publicou"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Semanalmente"
 
-#: ../../mod/ping.php:281
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} etiquetou a publicação de %s com #%s"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Mensalmente"
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} mencionou você em uma publicação"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humor"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Defina o seu humor e conte aos seus amigos"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/search.php:170 ../../mod/search.php:196
-#: ../../mod/community.php:62 ../../mod/community.php:71
-msgid "No results."
-msgstr "Nenhum resultado."
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Não foi possível localizar informação do contato."
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Você realmente deseja deletar essa mensagem?"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "A mensagem foi excluída."
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "A conversa foi removida."
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Nenhuma mensagem."
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Remetente desconhecido - %s"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Conector do Diáspora"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Você e %s"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s e você"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Excluir conversa"
+#: ../../include/Scrape.php:593
+msgid " on Last.fm"
+msgstr "na Last.fm"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Início:"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d mensagem"
-msgstr[1] "%d mensagens"
+#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Término:"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "A mensagem não está disponível."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j de F, Y"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Excluir a mensagem"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j de F"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Aniversário:"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Enviar resposta"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Idade:"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Não disponível."
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "para %1$d %2$s"
 
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
-#: ../../mod/profiles.php:162 ../../mod/profiles.php:589
-#: ../../mod/dfrn_confirm.php:64
-msgid "Profile not found."
-msgstr "O perfil não foi encontrado."
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Etiquetas:"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "O perfil foi excluído."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religião:"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Perfil-"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passatempos/Interesses:"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "O novo perfil foi criado."
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informações de contato e redes sociais:"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "O perfil não está disponível para clonagem."
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Preferências musicais:"
+
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Livros, literatura:"
 
-#: ../../mod/profiles.php:172
-msgid "Profile Name is required."
-msgstr "É necessário informar o nome do perfil."
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisão:"
 
-#: ../../mod/profiles.php:323
-msgid "Marital Status"
-msgstr "Situação amorosa"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filmes/dança/cultura/entretenimento:"
 
-#: ../../mod/profiles.php:327
-msgid "Romantic Partner"
-msgstr "Parceiro romântico"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amor/romance:"
 
-#: ../../mod/profiles.php:331
-msgid "Likes"
-msgstr "Gosta de"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Trabalho/emprego:"
 
-#: ../../mod/profiles.php:335
-msgid "Dislikes"
-msgstr "Não gosta de"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Escola/educação:"
 
-#: ../../mod/profiles.php:339
-msgid "Work/Employment"
-msgstr "Trabalho/emprego"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Clique aqui para atualização (upgrade)."
 
-#: ../../mod/profiles.php:342
-msgid "Religion"
-msgstr "Religião"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Essa ação excede o limite definido para o seu plano de assinatura."
 
-#: ../../mod/profiles.php:346
-msgid "Political Views"
-msgstr "Posicionamento político"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Essa ação não está disponível em seu plano de assinatura."
 
-#: ../../mod/profiles.php:350
-msgid "Gender"
-msgstr "Gênero"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Terminar esta sessão"
 
-#: ../../mod/profiles.php:354
-msgid "Sexual Preference"
-msgstr "Preferência sexual"
+#: ../../include/nav.php:76 ../../include/nav.php:146
+#: ../../view/theme/diabook/theme.php:123
+msgid "Your posts and conversations"
+msgstr "Suas publicações e conversas"
 
-#: ../../mod/profiles.php:358
-msgid "Homepage"
-msgstr "Página Principal"
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
+msgid "Your profile page"
+msgstr "Sua página de perfil"
 
-#: ../../mod/profiles.php:362 ../../mod/profiles.php:657
-msgid "Interests"
-msgstr "Interesses"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
+msgid "Your photos"
+msgstr "Suas fotos"
 
-#: ../../mod/profiles.php:366
-msgid "Address"
-msgstr "Endereço"
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "Seus vídeos"
 
-#: ../../mod/profiles.php:373 ../../mod/profiles.php:653
-msgid "Location"
-msgstr "Localização"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
+msgid "Your events"
+msgstr "Seus eventos"
 
-#: ../../mod/profiles.php:456
-msgid "Profile updated."
-msgstr "O perfil foi atualizado."
+#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
+msgid "Personal notes"
+msgstr "Suas anotações pessoais"
 
-#: ../../mod/profiles.php:527
-msgid " and "
-msgstr " e "
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Suas anotações pessoais"
 
-#: ../../mod/profiles.php:535
-msgid "public profile"
-msgstr "perfil público"
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Entrar"
 
-#: ../../mod/profiles.php:538
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s mudou %2$s para &ldquo;%3$s&rdquo;"
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Página pessoal"
 
-#: ../../mod/profiles.php:539
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Visite %2$s de %1$s"
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Criar uma conta"
 
-#: ../../mod/profiles.php:542
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s foi atualizado %2$s, mudando %3$s."
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Ajuda e documentação"
 
-#: ../../mod/profiles.php:617
-msgid "Hide contacts and friends:"
-msgstr ""
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Aplicativos"
 
-#: ../../mod/profiles.php:622
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?"
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Complementos, utilitários, jogos"
 
-#: ../../mod/profiles.php:644
-msgid "Edit Profile Details"
-msgstr "Editar os detalhes do perfil"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Pesquisar conteúdo no site"
 
-#: ../../mod/profiles.php:646
-msgid "Change Profile Photo"
-msgstr "Mudar Foto do Perfil"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Conversas neste site"
 
-#: ../../mod/profiles.php:647
-msgid "View this profile"
-msgstr "Ver este perfil"
+#: ../../include/nav.php:131
+msgid "Directory"
+msgstr "Diretório"
 
-#: ../../mod/profiles.php:648
-msgid "Create a new profile using these settings"
-msgstr "Criar um novo perfil usando estas configurações"
+#: ../../include/nav.php:131
+msgid "People directory"
+msgstr "Diretório de pessoas"
 
-#: ../../mod/profiles.php:649
-msgid "Clone this profile"
-msgstr "Clonar este perfil"
+#: ../../include/nav.php:133
+msgid "Information"
+msgstr "Informação"
 
-#: ../../mod/profiles.php:650
-msgid "Delete this profile"
-msgstr "Excluir este perfil"
+#: ../../include/nav.php:133
+msgid "Information about this friendica instance"
+msgstr "Informação sobre esta instância do friendica"
 
-#: ../../mod/profiles.php:651
-msgid "Basic information"
-msgstr ""
+#: ../../include/nav.php:143
+msgid "Conversations from your friends"
+msgstr "Conversas dos seus amigos"
 
-#: ../../mod/profiles.php:652
-msgid "Profile picture"
-msgstr ""
+#: ../../include/nav.php:144
+msgid "Network Reset"
+msgstr "Reiniciar Rede"
 
-#: ../../mod/profiles.php:654
-msgid "Preferences"
-msgstr ""
+#: ../../include/nav.php:144
+msgid "Load Network page with no filters"
+msgstr "Carregar página Rede sem filtros"
 
-#: ../../mod/profiles.php:655
-msgid "Status information"
-msgstr ""
+#: ../../include/nav.php:152
+msgid "Friend Requests"
+msgstr "Requisições de Amizade"
 
-#: ../../mod/profiles.php:656
-msgid "Additional information"
-msgstr ""
+#: ../../include/nav.php:154
+msgid "See all notifications"
+msgstr "Ver todas notificações"
 
-#: ../../mod/profiles.php:658 ../../mod/newmember.php:36
-#: ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Enviar foto do perfil"
+#: ../../include/nav.php:155
+msgid "Mark all system notifications seen"
+msgstr "Marcar todas as notificações de sistema como vistas"
 
-#: ../../mod/profiles.php:659
-msgid "Profile Name:"
-msgstr "Nome do perfil:"
+#: ../../include/nav.php:159
+msgid "Private mail"
+msgstr "Mensagem privada"
 
-#: ../../mod/profiles.php:660
-msgid "Your Full Name:"
-msgstr "Seu nome completo:"
+#: ../../include/nav.php:160
+msgid "Inbox"
+msgstr "Recebidas"
 
-#: ../../mod/profiles.php:661
-msgid "Title/Description:"
-msgstr "Título/Descrição:"
+#: ../../include/nav.php:161
+msgid "Outbox"
+msgstr "Enviadas"
 
-#: ../../mod/profiles.php:662
-msgid "Your Gender:"
-msgstr "Seu gênero:"
+#: ../../include/nav.php:165
+msgid "Manage"
+msgstr "Gerenciar"
 
-#: ../../mod/profiles.php:663
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Aniversário (%s):"
+#: ../../include/nav.php:165
+msgid "Manage other pages"
+msgstr "Gerenciar outras páginas"
 
-#: ../../mod/profiles.php:664
-msgid "Street Address:"
-msgstr "Endereço:"
+#: ../../include/nav.php:170
+msgid "Account settings"
+msgstr "Configurações da conta"
 
-#: ../../mod/profiles.php:665
-msgid "Locality/City:"
-msgstr "Localidade/Cidade:"
+#: ../../include/nav.php:173
+msgid "Manage/Edit Profiles"
+msgstr "Administrar/Editar Perfis"
 
-#: ../../mod/profiles.php:666
-msgid "Postal/Zip Code:"
-msgstr "CEP:"
+#: ../../include/nav.php:175
+msgid "Manage/edit friends and contacts"
+msgstr "Gerenciar/editar amigos e contatos"
 
-#: ../../mod/profiles.php:667
-msgid "Country:"
-msgstr "País:"
+#: ../../include/nav.php:182
+msgid "Site setup and configuration"
+msgstr "Configurações do site"
 
-#: ../../mod/profiles.php:668
-msgid "Region/State:"
-msgstr "Região/Estado:"
+#: ../../include/nav.php:186
+msgid "Navigation"
+msgstr "Navegação"
 
-#: ../../mod/profiles.php:669
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Situação amorosa:"
+#: ../../include/nav.php:186
+msgid "Site map"
+msgstr "Mapa do Site"
 
-#: ../../mod/profiles.php:670
-msgid "Who: (if applicable)"
-msgstr "Quem: (se pertinente)"
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1062
+#: ../../include/api.php:1064
+msgid "User not found."
+msgstr "Usuário não encontrado."
 
-#: ../../mod/profiles.php:671
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com"
+#: ../../include/api.php:771
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado."
 
-#: ../../mod/profiles.php:672
-msgid "Since [date]:"
-msgstr "Desde [data]:"
+#: ../../include/api.php:790
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado."
 
-#: ../../mod/profiles.php:674
-msgid "Homepage URL:"
-msgstr "Endereço do site web:"
+#: ../../include/api.php:809
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado."
 
-#: ../../mod/profiles.php:677
-msgid "Religious Views:"
-msgstr "Orientação religiosa:"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Não existe status com esse id."
 
-#: ../../mod/profiles.php:678
-msgid "Public Keywords:"
-msgstr "Palavras-chave públicas:"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr "Não existe conversas com esse id."
 
-#: ../../mod/profiles.php:679
-msgid "Private Keywords:"
-msgstr "Palavras-chave privadas:"
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr "Solicitação inválida."
 
-#: ../../mod/profiles.php:682
-msgid "Example: fishing photography software"
-msgstr "Exemplo: pesca fotografia software"
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr "Ítem inválido."
 
-#: ../../mod/profiles.php:683
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr "Ação inválida."
 
-#: ../../mod/profiles.php:684
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usado na pesquisa de perfis, nunca é exibido para os outros)"
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr "Erro do Banco de Dados"
 
-#: ../../mod/profiles.php:685
-msgid "Tell us about yourself..."
-msgstr "Fale um pouco sobre você..."
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "É necessário um convite."
 
-#: ../../mod/profiles.php:686
-msgid "Hobbies/Interests"
-msgstr "Passatempos/Interesses"
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Não foi possível verificar o convite."
 
-#: ../../mod/profiles.php:687
-msgid "Contact information and Social Networks"
-msgstr "Informações de contato e redes sociais"
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "A URL do OpenID é inválida"
 
-#: ../../mod/profiles.php:688
-msgid "Musical interests"
-msgstr "Preferências musicais"
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Por favor, forneça a informação solicitada."
 
-#: ../../mod/profiles.php:689
-msgid "Books, literature"
-msgstr "Livros, literatura"
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Por favor, use um nome mais curto."
 
-#: ../../mod/profiles.php:690
-msgid "Television"
-msgstr "Televisão"
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "O nome é muito curto."
 
-#: ../../mod/profiles.php:691
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/dança/cultura/entretenimento"
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Isso não parece ser o seu nome completo (Nome Sobrenome)."
 
-#: ../../mod/profiles.php:692
-msgid "Love/romance"
-msgstr "Amor/romance"
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "O domínio do seu e-mail não está entre os permitidos neste site."
 
-#: ../../mod/profiles.php:693
-msgid "Work/employment"
-msgstr "Trabalho/emprego"
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Não é um endereço de e-mail válido."
 
-#: ../../mod/profiles.php:694
-msgid "School/education"
-msgstr "Escola/educação"
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Não é possível usar esse e-mail."
 
-#: ../../mod/profiles.php:699
+#: ../../include/user.php:132
 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."
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra."
 
-#: ../../mod/profiles.php:709 ../../mod/directory.php:113
-msgid "Age: "
-msgstr "Idade: "
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Esta identificação já foi registrada. Por favor, escolha outra."
 
-#: ../../mod/profiles.php:762
-msgid "Edit/Manage Profiles"
-msgstr "Editar/Gerenciar perfis"
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Servidor de Comunicações Friendica - Configuração"
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRO GRAVE: Não foi possível gerar as chaves de segurança."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Não foi possível conectar ao banco de dados."
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Ocorreu um erro durante o registro. Por favor, tente novamente."
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Não foi possível criar tabela."
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "O banco de dados do seu site Friendica foi instalado."
+#: ../../include/user.php:289 ../../include/user.php:293
+#: ../../include/profile_selectors.php:42
+msgid "Friends"
+msgstr "Amigos"
 
-#: ../../mod/install.php:138
+#: ../../include/user.php:377
+#, php-format
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Você provavelmente precisará importar o arquivo \"database.sql\" manualmente, usando o phpmyadmin ou o mysql."
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tCaro %1$s,\n\t\t\tObrigado por se cadastrar em %2$s. Sua conta foi criada.\n\t"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Por favor, dê uma olhada no arquivo \"INSTALL.TXT\"."
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3$s\n\t\t\tNome de Login:\t%1$s\n\t\t\tSenha:\t%5$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2$s."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Checagem do sistema"
+#: ../../include/diaspora.php:703
+msgid "Sharing notification from Diaspora network"
+msgstr "Notificação de compartilhamento da rede Diaspora"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Checar novamente"
+#: ../../include/diaspora.php:2332
+msgid "Attachments:"
+msgstr "Anexos:"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Conexão de banco de dados"
+#: ../../include/items.php:4526
+msgid "Do you really want to delete this item?"
+msgstr "Você realmente deseja deletar esse item?"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "À fim de instalar o Friendica, você precisa saber como se conectar ao seu banco de dados."
+#: ../../include/items.php:4749
+msgid "Archives"
+msgstr "Arquivos"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Por favor, entre em contato com a sua hospedagem ou com o administrador do site caso você tenha alguma dúvida em relação a essas configurações."
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculino"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "O banco de dados que você especificou abaixo já deve existir. Caso contrário, por favor crie-o antes de continuar."
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Feminino"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Nome do servidor de banco de dados"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Atualmente masculino"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nome do usuário do banco de dados"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Atualmente feminino"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Senha do usuário do banco de dados"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Masculino a maior parte do tempo"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nome do banco de dados"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Feminino a maior parte do tempo"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Endereço de email do administrador do site"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgênero"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "O endereço de email da sua conta deve ser igual a este para que você possa utilizar o painel de administração web."
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersexual"
+
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexual"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecione o fuso horário padrão para o seu site"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodita"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Configurações do site"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutro"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Não foi possível encontrar uma versão de linha de comando do PHP nos caminhos do seu servidor web."
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Não específico"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Caso você não tenha uma versão de linha de comando do PHP instalado no seu servidor, você não será capaz de executar a captação em segundo plano. Dê uma olhada em <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Outro"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Caminho para o executável do PhP"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indeciso"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Digite o caminho completo do executável PHP. Você pode deixar isso em branco para continuar com a instalação."
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Homens"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "PHP em linha de comando"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Mulheres"
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "O executável do PHP não é o binário do php cli (could be cgi-fcgi version)"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gays"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Encontrado PHP versão:"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lésbicas"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "Binário cli do PHP"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sem preferência"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "\"register_argc_argv\" não está habilitado na versão de linha de comando do PHP no seu sistema."
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bissexuais"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Isto é necessário para o funcionamento do envio de mensagens."
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autossexuais"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstêmios"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erro: a função \"openssl_pkey_new\" no seu sistema não é capaz de gerar as chaves de criptografia"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Virgens"
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se estiver usando o Windows, por favor dê uma olhada em \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Desviantes"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Gerar chaves de encriptação"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetiches"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Módulo PHP libCurl"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Insaciável"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Módulo PHP GD graphics"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Não sexual"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Módulo PHP OpenSSL"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Solteiro(a)"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Módulo PHP mysqli"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Solitário(a)"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Módulo PHP mb_string "
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponível"
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Módulo mod_rewrite do Apache"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Não disponível"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erro: o módulo mod-rewrite do Apache é necessário, mas não está instalado."
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Tem uma paixão"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erro: o módulo libCURL do PHP é necessário, mas não está instalado."
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Apaixonado"
 
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erro: o módulo gráfico GD, com suporte a JPEG, do PHP é necessário, mas não está instalado."
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Saindo com alguém"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erro: o módulo openssl do PHP é necessário, mas não está instalado."
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infiel"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erro: o módulo mysqli do PHP é necessário, mas não está instalado."
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Viciado(a) em sexo"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erro: o módulo mb_string PHP é necessário, mas não está instalado."
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amigos/Benefícios"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo."
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta."
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Envolvido(a)"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica."
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Casado(a)"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções."
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Casado imaginariamente"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php tem permissão de escrita"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Parceiros"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica usa o engine de template Smarty3 para renderizar suas web views. Smarty3 compila templates para PHP para acelerar a renderização."
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Coabitando"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Para guardar os templates compilados, o servidor web necessita de permissão de escrita no diretório view/smarty3/ no diretório raíz do Friendica."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Direito comum"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Favor se certificar que o usuário sob o qual o servidor web roda (ex: www-data) tenha permissão de escrita nesse diretório."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Feliz"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Nota: como uma medida de segurança, você deve fornecer ao servidor web permissão de escrita em view/smarty3/ somente--não aos arquivos de template (.tpl) que ele contém."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Não estou procurando"
+
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 tem escrita permitida"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Traído(a)"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "A reescrita de URLs definida no .htaccess não está funcionando. Por favor, verifique as configurações do seu servidor."
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separado(a)"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "A reescrita de URLs está funcionando"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instável"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web."
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorciado(a)"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>A seguir</h1>"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Divorciado imaginariamente"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Você deve configurar [manualmente] uma tarefa agendada para o captador."
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Viúvo(a)"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Ajuda:"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incerto(a)"
 
-#: ../../mod/crepair.php:104
-msgid "Contact settings applied."
-msgstr "As configurações do contato foram aplicadas."
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "É complicado"
 
-#: ../../mod/crepair.php:106
-msgid "Contact update failed."
-msgstr "Não foi possível atualizar o contato."
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Não importa"
 
-#: ../../mod/crepair.php:137
-msgid "Repair Contact Settings"
-msgstr "Corrigir configurações do contato"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Pergunte-me"
 
-#: ../../mod/crepair.php:139
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar."
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Notificação Friendica"
 
-#: ../../mod/crepair.php:140
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo."
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Obrigado,"
 
-#: ../../mod/crepair.php:146
-msgid "Return to contact editor"
-msgstr "Voltar ao editor de contatos"
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrador"
 
-#: ../../mod/crepair.php:159
-msgid "Account Nickname"
-msgstr "Identificação da conta"
+#: ../../include/enotify.php:61
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/crepair.php:160
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - sobrescreve Nome/Identificação"
+#: ../../include/enotify.php:65
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Nova mensagem recebida em %s"
 
-#: ../../mod/crepair.php:161
-msgid "Account URL"
-msgstr "URL da conta"
+#: ../../include/enotify.php:67
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s lhe enviou uma mensagem privativa em %2$s."
 
-#: ../../mod/crepair.php:162
-msgid "Friend Request URL"
-msgstr "URL da requisição de amizade"
+#: ../../include/enotify.php:68
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s lhe enviou %2$s."
 
-#: ../../mod/crepair.php:163
-msgid "Friend Confirm URL"
-msgstr "URL da confirmação de amizade"
+#: ../../include/enotify.php:68
+msgid "a private message"
+msgstr "uma mensagem privada"
 
-#: ../../mod/crepair.php:164
-msgid "Notification Endpoint URL"
-msgstr "URL do ponto final da notificação"
+#: ../../include/enotify.php:69
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Favor visitar %s para ver e/ou responder às suas mensagens privadas."
 
-#: ../../mod/crepair.php:165
-msgid "Poll/Feed URL"
-msgstr "URL do captador/fonte de notícias"
+#: ../../include/enotify.php:121
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s comentou uma [url=%2$s] %3$s[/url]"
 
-#: ../../mod/crepair.php:166
-msgid "New photo from this URL"
-msgstr "Nova imagem desta URL"
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s comentou na %4$s de [url=%2$s]%3$s [/url]"
 
-#: ../../mod/crepair.php:167
-msgid "Remote Self"
-msgstr "Auto remoto"
+#: ../../include/enotify.php:136
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s comentou [url=%2$s]sua %3$s[/url]"
 
-#: ../../mod/crepair.php:169
-msgid "Mirror postings from this contact"
-msgstr "Espelhar publicações deste contato"
+#: ../../include/enotify.php:146
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify] Comentário na conversa #%1$d por %2$s"
 
-#: ../../mod/crepair.php:169
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário."
+#: ../../include/enotify.php:147
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s comentou um item/conversa que você está seguindo."
 
-#: ../../mod/crepair.php:169
-msgid "No mirroring"
-msgstr ""
+#: ../../include/enotify.php:150 ../../include/enotify.php:165
+#: ../../include/enotify.php:178 ../../include/enotify.php:191
+#: ../../include/enotify.php:209 ../../include/enotify.php:222
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Favor visitar %s para ver e/ou responder à conversa."
 
-#: ../../mod/crepair.php:169
-msgid "Mirror as forwarded posting"
-msgstr ""
+#: ../../include/enotify.php:157
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s publicou no mural do seu perfil"
 
-#: ../../mod/crepair.php:169
-msgid "Mirror as my own posting"
-msgstr ""
+#: ../../include/enotify.php:159
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s publicou no mural do seu perfil em %2$s"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bemvindo ao Friendica"
+#: ../../include/enotify.php:161
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s publicou para [url=%2$s]seu mural[/url]"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Dicas para os novos membros"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s etiquetou você"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente."
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s etiquetou você em %2$s"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Do Início"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]etiquetou você[/url]."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Passo-a-passo da friendica"
+#: ../../include/enotify.php:185
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s compartilhado uma nova publicação"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar."
+#: ../../include/enotify.php:186
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s compartilhou uma nova publicação em %2$s"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Ir para as suas configurações"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]compartilhou uma publicação[/url]."
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre."
+#: ../../include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s cutucou você"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s cutucou você em %2$s"
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem."
+#: ../../include/enotify.php:201
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]cutucou você[/url]."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editar seu perfil"
+#: ../../include/enotify.php:216
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s etiquetou sua publicação"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos."
+#: ../../include/enotify.php:217
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s etiquetou sua publicação em %2$s"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Palavras-chave do perfil"
+#: ../../include/enotify.php:218
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s etiquetou [url=%2$s]sua publicação[/url]"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades."
+#: ../../include/enotify.php:229
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] Você recebeu uma apresentação"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Conexões"
+#: ../../include/enotify.php:230
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Você recebeu uma apresentação de '%1$s' em %2$s"
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook."
+#: ../../include/enotify.php:231
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Você recebeu [url=%1$s]uma apresentação[/url] de %2$s."
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre."
+#: ../../include/enotify.php:234 ../../include/enotify.php:276
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Você pode visitar o perfil deles em %s"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importação de e-mails"
+#: ../../include/enotify.php:236
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Favor visitar %s para aprovar ou rejeitar a apresentação."
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail"
+#: ../../include/enotify.php:244
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Notificação] Uma nova pessoa está compartilhando com você"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Ir para a sua página de contatos"
+#: ../../include/enotify.php:245 ../../include/enotify.php:246
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s está compartilhando com você via %2$s"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>."
+#: ../../include/enotify.php:252
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Notificação] Você tem um novo seguidor"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Ir para o diretório do seu site"
+#: ../../include/enotify.php:253 ../../include/enotify.php:254
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Você tem um novo seguidor em %2$s : %1$s"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado."
+#: ../../include/enotify.php:267
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] Você recebeu uma sugestão de amigo"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Pesquisar por novas pessoas"
+#: ../../include/enotify.php:268
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Você recebeu uma sugestão de amigo de '%1$s' em %2$s"
 
-#: ../../mod/newmember.php:62
+#: ../../include/enotify.php:269
+#, php-format
 msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas."
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Você recebeu [url=%1$s]uma sugestão de amigo[/url] de %2$s em %3$s"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Agrupe seus contatos"
+#: ../../include/enotify.php:274
+msgid "Name:"
+msgstr "Nome:"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "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."
+#: ../../include/enotify.php:275
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Por que as minhas publicações não são públicas?"
+#: ../../include/enotify.php:278
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Favor visitar %s para aprovar ou rejeitar a sugestão."
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "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."
+#: ../../include/enotify.php:286 ../../include/enotify.php:299
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Notificação] Conexão aceita"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtendo ajuda"
+#: ../../include/enotify.php:287 ../../include/enotify.php:300
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' sua solicitação de conexão foi aceita em %2$s"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Ir para a seção de ajuda"
+#: ../../include/enotify.php:288 ../../include/enotify.php:301
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s Foi aceita [url=%1$s] a conexão solicitada[/url]."
 
-#: ../../mod/newmember.php:82
+#: ../../include/enotify.php:291
 msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa."
-
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Cutucar/Incitar"
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições."
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Cutuca, incita ou faz outras coisas com alguém"
+#: ../../include/enotify.php:294 ../../include/enotify.php:308
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento."
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinatário"
+#: ../../include/enotify.php:304
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente."
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Selecione o que você deseja fazer com o destinatário"
+#: ../../include/enotify.php:306
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr "'%1$s' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo."
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Fazer com que essa publicação se torne privada"
+#: ../../include/enotify.php:319
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica: Notificação do Sistema] solicitação de cadastro"
 
-#: ../../mod/prove.php:93
-msgid ""
-"\n"
-"\t\tDear $[username],\n"
-"\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\tinformation for your records (or change your password immediately to\n"
-"\t\tsomething that you will remember).\n"
-"\t"
-msgstr ""
+#: ../../include/enotify.php:320
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Você recebeu um pedido de cadastro de '%1$s' em %2$s"
 
-#: ../../mod/display.php:452
-msgid "Item has been removed."
-msgstr "O item foi removido."
+#: ../../include/enotify.php:321
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Você recebeu uma [url=%1$s]solicitação de cadastro[/url] de %2$s."
 
-#: ../../mod/subthread.php:103
+#: ../../include/enotify.php:324
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s está seguindo %2$s's %3$s"
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Nome completo:\t%1$s\\nLocal do Site:\t%2$s\\nNome de Login:\t%3$s (%4$s)"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: ../../include/enotify.php:327
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s dá as boas vinda à %2$s"
+msgid "Please visit %s to approve or reject the request."
+msgstr "Por favor, visite %s para aprovar ou rejeitar a solicitação."
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado."
+#: ../../include/oembed.php:210
+msgid "Embedded content"
+msgstr "Conteúdo incorporado"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "A resposta do site remoto não foi compreendida."
+#: ../../include/oembed.php:219
+msgid "Embedding disabled"
+msgstr "A incorporação está desabilitada"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Resposta inesperada do site remoto: "
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Erro ao decodificar arquivo de conta"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "A confirmação foi completada com sucesso."
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "O site remoto relatou: "
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erro! Não consigo conferir o apelido (nickname)"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Falha temporária. Por favor, aguarde e tente novamente."
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "User '%s' já existe nesse servidor!"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Ocorreu uma falha na apresentação ou ela foi revogada."
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Erro na criação do usuário"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Não foi possível definir a foto do contato."
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erro na criação do perfil do Usuário"
 
-#: ../../mod/dfrn_confirm.php:571
+#: ../../include/uimport.php:220
 #, php-format
-msgid "No user record found for '%s' "
-msgstr "Não foi encontrado nenhum registro de usuário para '%s' "
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contato não foi importado"
+msgstr[1] "%d contatos não foram importados"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "A chave de criptografia do nosso site está, aparentemente, bagunçada."
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Feito. Você agora pode entrar com seu nome de usuário e senha"
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Foi fornecida uma URL em branco ou não foi possível descriptografá-la."
+#: ../../index.php:428
+msgid "toggle mobile"
+msgstr "habilita mobile"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "O registro do contato não foi encontrado para você em seu site."
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
+#: ../../view/theme/duepuntozero/config.php:61
+msgid "Theme settings"
+msgstr "Configurações do tema"
 
-#: ../../mod/dfrn_confirm.php:627
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "A chave pública do site não está disponível no registro do contato para a URL %s"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)"
 
-#: ../../mod/dfrn_confirm.php:647
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo."
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/diabook/config.php:151
+msgid "Set font-size for posts and comments"
+msgstr "Escolha o tamanho da fonte para publicações e comentários"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "Não foi possível definir suas credenciais de contato no nosso sistema."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Configure a largura do tema"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "Não foi possível atualizar os detalhes do seu perfil em nosso sistema."
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Esquema de cores"
 
-#: ../../mod/dfrn_confirm.php:797
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se associou a %2$s"
+#: ../../view/theme/dispy/config.php:74
+#: ../../view/theme/diabook/config.php:152
+msgid "Set line-height for posts and comments"
+msgstr "Escolha comprimento da linha para publicações e comentários"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Não foi possível localizar a publicação original."
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/item.php:324
-msgid "Empty post discarded."
-msgstr "A publicação em branco foi descartada."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alinhamento"
 
-#: ../../mod/item.php:915
-msgid "System error. Post not saved."
-msgstr "Erro no sistema. A publicação não foi salva."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Esquerda"
 
-#: ../../mod/item.php:941
-#, 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."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centro"
 
-#: ../../mod/item.php:943
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Você pode visitá-lo em %s"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Tamanho da fonte para publicações"
 
-#: ../../mod/item.php:944
-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."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Tamanho da fonte para campos texto"
 
-#: ../../mod/item.php:948
-#, php-format
-msgid "%s posted an update."
-msgstr "%s publicou uma atualização."
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Escolha a resolução para a coluna do meio"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "A imagem foi enviada, mas não foi possível cortá-la."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Configure o esquema de cores"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Não foi possível reduzir o tamanho da imagem [%s]."
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Configure longitude (X) para Camadas da Terra"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Não foi possível processar a imagem"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Configure latitude (Y) para Camadas da Terra"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Enviar arquivo:"
+#: ../../view/theme/diabook/config.php:158
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+msgid "Community Pages"
+msgstr "Páginas da Comunidade"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Selecione um perfil:"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Camadas da Terra"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Enviar"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Profiles Comunitários"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "pule esta etapa"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Ajuda ou @NewHere ?"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "selecione uma foto de um álbum de fotos"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Conectar serviços"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Cortar a imagem"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Encontrar amigos"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Por favor, ajuste o corte da imagem para a melhor visualização."
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Últimos usuários"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Encerrar a edição"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Últimas fotos"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "A imagem foi enviada com sucesso."
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Últimas gostadas"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amigos de %s"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Seus contatos"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Nenhum amigo para exibir."
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Suas fotos pessoais"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Pesquisar neste site"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Diretório Local"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Diretório do site"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Configure o zoom para Camadas da Terra"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Gênero: "
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Mostre/esconda caixas na coluna à direita:"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Nenhuma entrada (algumas entradas podem estar ocultas)."
+#: ../../view/theme/vier/config.php:56
+msgid "Set style"
+msgstr "escolha estilo"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversão de tempo"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "greenzero"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos."
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "purplezero"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Hora UTC: %s"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso horário atual: %s"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "darkzero"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Horário local convertido: %s"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "comix"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Por favor, selecione seu fuso horário:"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "slackr"
+
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variações"
index 848c7937eb617833c07ae4c1b9d68066f5873b6b..26db28728c17a13759fc97a16ea1a511886b5214 100644 (file)
@@ -5,742 +5,287 @@ function string_plural_select_pt_br($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["Submit"] = "Enviar";
-$a->strings["Theme settings"] = "Configurações do tema";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
-$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
-$a->strings["Set theme width"] = "Configure a largura do tema";
-$a->strings["Color scheme"] = "Esquema de cores";
-$a->strings["Set style"] = "escolha estilo";
-$a->strings["don't show"] = "não exibir";
-$a->strings["show"] = "exibir";
-$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
-$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
-$a->strings["Set color scheme"] = "Configure o esquema de cores";
-$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
-$a->strings["Community Pages"] = "Páginas da Comunidade";
-$a->strings["Earth Layers"] = "Camadas da Terra";
-$a->strings["Community Profiles"] = "Profiles Comunitários";
-$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
-$a->strings["Connect Services"] = "Conectar serviços";
-$a->strings["Find Friends"] = "Encontrar amigos";
-$a->strings["Last users"] = "Últimos usuários";
-$a->strings["Last photos"] = "Últimas fotos";
-$a->strings["Last likes"] = "Últimas gostadas";
-$a->strings["Home"] = "Pessoal";
-$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
-$a->strings["Profile"] = "Perfil ";
-$a->strings["Your profile page"] = "Sua página de perfil";
-$a->strings["Contacts"] = "Contatos";
-$a->strings["Your contacts"] = "Seus contatos";
-$a->strings["Photos"] = "Fotos";
-$a->strings["Your photos"] = "Suas fotos";
-$a->strings["Events"] = "Eventos";
-$a->strings["Your events"] = "Seus eventos";
-$a->strings["Personal notes"] = "Suas anotações pessoais";
-$a->strings["Your personal photos"] = "Suas fotos pessoais";
-$a->strings["Community"] = "Comunidade";
-$a->strings["event"] = "evento";
-$a->strings["status"] = "status";
-$a->strings["photo"] = "foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
-$a->strings["Contact Photos"] = "Fotos dos contatos";
-$a->strings["Profile Photos"] = "Fotos do perfil";
-$a->strings["Local Directory"] = "Diretório Local";
-$a->strings["Global Directory"] = "Diretório global";
-$a->strings["Similar Interests"] = "Interesses Parecidos";
-$a->strings["Friend Suggestions"] = "Sugestões de amigos";
-$a->strings["Invite Friends"] = "Convidar amigos";
-$a->strings["Settings"] = "Configurações";
-$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
-$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
-$a->strings["Alignment"] = "Alinhamento";
-$a->strings["Left"] = "Esquerda";
-$a->strings["Center"] = "Centro";
-$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
-$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
-$a->strings["Set colour scheme"] = "Configure o esquema de cores";
-$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons.";
-$a->strings["Not Found"] = "Não encontrada";
-$a->strings["Page not found."] = "Página não encontrada.";
-$a->strings["Permission denied"] = "Permissão negada";
+$a->strings["%d contact edited."] = array(
+       0 => "%d contato editado",
+       1 => "%d contatos editados",
+);
+$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
+$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
+$a->strings["Contact updated."] = "O contato foi atualizado.";
+$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
 $a->strings["Permission denied."] = "Permissão negada.";
-$a->strings["toggle mobile"] = "habilita mobile";
-$a->strings["Delete this item?"] = "Excluir este item?";
-$a->strings["Comment"] = "Comentar";
-$a->strings["show more"] = "exibir mais";
-$a->strings["show fewer"] = "exibir menos";
-$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
-$a->strings["Create a New Account"] = "Criar uma nova conta";
-$a->strings["Register"] = "Registrar";
-$a->strings["Logout"] = "Sair";
-$a->strings["Login"] = "Entrar";
-$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
-$a->strings["Password: "] = "Senha: ";
-$a->strings["Remember me"] = "Lembre-se de mim";
-$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
-$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
-$a->strings["Password Reset"] = "Reiniciar a senha";
-$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
-$a->strings["terms of service"] = "termos de serviço";
-$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
-$a->strings["privacy policy"] = "política de privacidade";
-$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
-$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
-$a->strings["Edit profile"] = "Editar perfil";
-$a->strings["Connect"] = "Conectar";
-$a->strings["Message"] = "Mensagem";
-$a->strings["Profiles"] = "Perfis";
-$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
-$a->strings["Change profile photo"] = "Mudar a foto do perfil";
-$a->strings["Create New Profile"] = "Criar um novo perfil";
-$a->strings["Profile Image"] = "Imagem do perfil";
-$a->strings["visible to everybody"] = "visível para todos";
-$a->strings["Edit visibility"] = "Editar a visibilidade";
-$a->strings["Location:"] = "Localização:";
-$a->strings["Gender:"] = "Gênero:";
-$a->strings["Status:"] = "Situação:";
-$a->strings["Homepage:"] = "Página web:";
-$a->strings["Network:"] = "Rede:";
-$a->strings["g A l F d"] = "G l d F";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[hoje]";
-$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
-$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
-$a->strings["[No description]"] = "[Sem descrição]";
-$a->strings["Event Reminders"] = "Lembretes de eventos";
-$a->strings["Events this week:"] = "Eventos esta semana:";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
-$a->strings["Profile Details"] = "Detalhe do Perfil";
-$a->strings["Photo Albums"] = "Álbuns de fotos";
-$a->strings["Videos"] = "Vídeos";
-$a->strings["Events and Calendar"] = "Eventos e Agenda";
-$a->strings["Personal Notes"] = "Notas pessoais";
-$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
-$a->strings["General Features"] = "Funcionalidades Gerais";
-$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
-$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
-$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
-$a->strings["Richtext Editor"] = "Editor Richtext";
-$a->strings["Enable richtext editor"] = "Habilite editor richtext";
-$a->strings["Post Preview"] = "Pré-visualização da Publicação";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
-$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL";
-$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
-$a->strings["Search by Date"] = "Buscar por Data";
-$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
-$a->strings["Group Filter"] = "Filtrar Grupo";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
-$a->strings["Network Filter"] = "Filtrar Rede";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
-$a->strings["Saved Searches"] = "Pesquisas salvas";
-$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
-$a->strings["Network Tabs"] = "Abas da Rede";
-$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
-$a->strings["Network New Tab"] = "Aba Nova da Rede";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
-$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
-$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
-$a->strings["Multiple Deletion"] = "Deleção Multipla";
-$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
-$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
-$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
-$a->strings["Tagging"] = "Etiquetagem";
-$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
-$a->strings["Post Categories"] = "Categorias de Publicações";
-$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
-$a->strings["Saved Folders"] = "Pastas salvas";
-$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
-$a->strings["Dislike Posts"] = "Desgostar de publicações";
-$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
-$a->strings["Star Posts"] = "Destacar publicações";
-$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
-$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem";
-$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa";
-$a->strings["%s's birthday"] = "aniversários de %s's";
-$a->strings["Happy Birthday %s"] = "Feliz Aniversário %s";
-$a->strings["[Name Withheld]"] = "[Nome não revelado]";
-$a->strings["Item not found."] = "O item não foi encontrado.";
-$a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?";
+$a->strings["Contact has been blocked"] = "O contato foi bloqueado";
+$a->strings["Contact has been unblocked"] = "O contato foi desbloqueado";
+$a->strings["Contact has been ignored"] = "O contato foi ignorado";
+$a->strings["Contact has been unignored"] = "O contato deixou de ser ignorado";
+$a->strings["Contact has been archived"] = "O contato foi arquivado";
+$a->strings["Contact has been unarchived"] = "O contato foi desarquivado";
+$a->strings["Do you really want to delete this contact?"] = "Você realmente deseja deletar esse contato?";
 $a->strings["Yes"] = "Sim";
 $a->strings["Cancel"] = "Cancelar";
-$a->strings["Archives"] = "Arquivos";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
-$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
-$a->strings["Everybody"] = "Todos";
-$a->strings["edit"] = "editar";
-$a->strings["Groups"] = "Grupos";
-$a->strings["Edit group"] = "Editar grupo";
-$a->strings["Create a new group"] = "Criar um novo grupo";
-$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
-$a->strings["add"] = "adicionar";
-$a->strings["Wall Photos"] = "Fotos do mural";
-$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["Add New Contact"] = "Adicionar Contato Novo";
-$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
-$a->strings["%d invitation available"] = array(
-       0 => "%d convite disponível",
-       1 => "%d convites disponíveis",
-);
-$a->strings["Find People"] = "Pesquisar por pessoas";
-$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
-$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
-$a->strings["Find"] = "Pesquisar";
-$a->strings["Random Profile"] = "Perfil Randômico";
-$a->strings["Networks"] = "Redes";
-$a->strings["All Networks"] = "Todas as redes";
-$a->strings["Everything"] = "Tudo";
-$a->strings["Categories"] = "Categorias";
+$a->strings["Contact has been removed."] = "O contato foi removido.";
+$a->strings["You are mutual friends with %s"] = "Você possui uma amizade mútua com %s";
+$a->strings["You are sharing with %s"] = "Você está compartilhando com %s";
+$a->strings["%s is sharing with you"] = "%s está compartilhando com você";
+$a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato.";
+$a->strings["Never"] = "Nunca";
+$a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)";
+$a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)";
+$a->strings["Suggest friends"] = "Sugerir amigos";
+$a->strings["Network type: %s"] = "Tipo de rede: %s";
 $a->strings["%d contact in common"] = array(
        0 => "%d contato em comum",
        1 => "%d contatos em comum",
 );
-$a->strings["Friendica Notification"] = "Notificação Friendica";
-$a->strings["Thank You,"] = "Obrigado,";
-$a->strings["%s Administrator"] = "%s Administrador";
-$a->strings["noreply"] = "naoresponda";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
-$a->strings["a private message"] = "uma mensagem privada";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' sua solicitação de conexão foi aceita em %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "";
-$a->strings["[Friendica System:Notify] registration request"] = "";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "";
-$a->strings["Please visit %s to approve or reject the request."] = "";
-$a->strings["User not found."] = "Usuário não encontrado.";
-$a->strings["There is no status with this id."] = "Não existe status com esse id.";
-$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id.";
-$a->strings["view full size"] = "ver na tela inteira";
-$a->strings[" on Last.fm"] = "na Last.fm";
-$a->strings["Full Name:"] = "Nome completo:";
-$a->strings["j F, Y"] = "j de F, Y";
-$a->strings["j F"] = "j de F";
-$a->strings["Birthday:"] = "Aniversário:";
-$a->strings["Age:"] = "Idade:";
-$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Preferência sexual:";
-$a->strings["Hometown:"] = "Cidade:";
-$a->strings["Tags:"] = "Etiquetas:";
-$a->strings["Political Views:"] = "Posição política:";
-$a->strings["Religion:"] = "Religião:";
-$a->strings["About:"] = "Sobre:";
-$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
-$a->strings["Likes:"] = "Gosta de:";
-$a->strings["Dislikes:"] = "Não gosta de:";
-$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
-$a->strings["Musical interests:"] = "Preferências musicais:";
-$a->strings["Books, literature:"] = "Livros, literatura:";
-$a->strings["Television:"] = "Televisão:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
-$a->strings["Love/Romance:"] = "Amor/romance:";
-$a->strings["Work/employment:"] = "Trabalho/emprego:";
-$a->strings["School/education:"] = "Escola/educação:";
-$a->strings["Nothing new here"] = "Nada de novo aqui";
-$a->strings["Clear notifications"] = "Descartar notificações";
-$a->strings["End this session"] = "Terminar esta sessão";
-$a->strings["Your videos"] = "Seus vídeos";
-$a->strings["Your personal notes"] = "";
-$a->strings["Sign in"] = "Entrar";
-$a->strings["Home Page"] = "Página pessoal";
-$a->strings["Create an account"] = "Criar uma conta";
-$a->strings["Help"] = "Ajuda";
-$a->strings["Help and documentation"] = "Ajuda e documentação";
-$a->strings["Apps"] = "Aplicativos";
-$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
-$a->strings["Search"] = "Pesquisar";
-$a->strings["Search site content"] = "Pesquisar conteúdo no site";
-$a->strings["Conversations on this site"] = "Conversas neste site";
-$a->strings["Directory"] = "Diretório";
-$a->strings["People directory"] = "Diretório de pessoas";
-$a->strings["Information"] = "Informação";
-$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
-$a->strings["Network"] = "Rede";
-$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
-$a->strings["Network Reset"] = "Reiniciar Rede";
-$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
-$a->strings["Introductions"] = "Apresentações";
-$a->strings["Friend Requests"] = "Requisições de Amizade";
-$a->strings["Notifications"] = "Notificações";
-$a->strings["See all notifications"] = "Ver todas notificações";
-$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
-$a->strings["Messages"] = "Mensagens";
-$a->strings["Private mail"] = "Mensagem privada";
-$a->strings["Inbox"] = "Recebidas";
-$a->strings["Outbox"] = "Enviadas";
-$a->strings["New Message"] = "Nova mensagem";
-$a->strings["Manage"] = "Gerenciar";
-$a->strings["Manage other pages"] = "Gerenciar outras páginas";
-$a->strings["Delegations"] = "Delegações";
-$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
-$a->strings["Account settings"] = "Configurações da conta";
-$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
-$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
-$a->strings["Admin"] = "Admin";
-$a->strings["Site setup and configuration"] = "Configurações do site";
-$a->strings["Navigation"] = "Navegação";
-$a->strings["Site map"] = "Mapa do Site";
-$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
-$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
-$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
-$a->strings["Connect URL missing."] = "URL de conexão faltando.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
-$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada.";
-$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome.";
-$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email.";
-$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
-$a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
-$a->strings["following"] = "acompanhando";
-$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
-$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
-$a->strings["User creation error"] = "Erro na criação do usuário";
-$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contato não foi importado",
-       1 => "%d contatos não foram importados",
-);
-$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
-$a->strings["Starts:"] = "Início:";
-$a->strings["Finishes:"] = "Término:";
-$a->strings["stopped following"] = "parou de acompanhar";
-$a->strings["Poke"] = "Cutucar";
-$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["Drop Contact"] = "Excluir o contato";
-$a->strings["Send PM"] = "Enviar MP";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "";
-$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
-$a->strings["Errors encountered performing database changes."] = "";
-$a->strings["Miscellaneous"] = "Miscelânea";
-$a->strings["year"] = "ano";
-$a->strings["month"] = "mês";
-$a->strings["day"] = "dia";
-$a->strings["never"] = "nunca";
-$a->strings["less than a second ago"] = "menos de um segundo atrás";
-$a->strings["years"] = "anos";
-$a->strings["months"] = "meses";
-$a->strings["week"] = "semana";
-$a->strings["weeks"] = "semanas";
-$a->strings["days"] = "dias";
-$a->strings["hour"] = "hora";
-$a->strings["hours"] = "horas";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minutos";
-$a->strings["second"] = "segundo";
-$a->strings["seconds"] = "segundos";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
-$a->strings["[no subject]"] = "[sem assunto]";
-$a->strings["(no subject)"] = "(sem assunto)";
-$a->strings["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
-$a->strings["Block immediately"] = "Bloquear imediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
-$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
-$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
-$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
-$a->strings["Frequently"] = "Frequentemente";
-$a->strings["Hourly"] = "De hora em hora";
-$a->strings["Twice daily"] = "Duas vezes ao dia";
-$a->strings["Daily"] = "Diariamente";
-$a->strings["Weekly"] = "Semanalmente";
-$a->strings["Monthly"] = "Mensalmente";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Email"] = "E-mail";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Conector do Diáspora";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
-$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
-$a->strings["Attachments:"] = "Anexos:";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
-$a->strings["poked"] = "cutucado";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
-$a->strings["post/item"] = "postagem/item";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito";
-$a->strings["Select"] = "Selecionar";
+$a->strings["View all contacts"] = "Ver todos os contatos";
+$a->strings["Unblock"] = "Desbloquear";
+$a->strings["Block"] = "Bloquear";
+$a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio";
+$a->strings["Unignore"] = "Deixar de ignorar";
+$a->strings["Ignore"] = "Ignorar";
+$a->strings["Toggle Ignored status"] = "Alternar o status de ignorado";
+$a->strings["Unarchive"] = "Desarquivar";
+$a->strings["Archive"] = "Arquivar";
+$a->strings["Toggle Archive status"] = "Alternar o status de arquivamento";
+$a->strings["Repair"] = "Reparar";
+$a->strings["Advanced Contact Settings"] = "Configurações avançadas do contato";
+$a->strings["Communications lost with this contact!"] = "As comunicações com esse contato foram perdidas!";
+$a->strings["Contact Editor"] = "Editor de contatos";
+$a->strings["Submit"] = "Enviar";
+$a->strings["Profile Visibility"] = "Visibilidade do perfil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
+$a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações";
+$a->strings["Edit contact notes"] = "Editar as anotações do contato";
+$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
+$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
+$a->strings["Ignore contact"] = "Ignorar o contato";
+$a->strings["Repair URL settings"] = "Reparar as definições de URL";
+$a->strings["View conversations"] = "Ver as conversas";
+$a->strings["Delete contact"] = "Excluir o contato";
+$a->strings["Last update:"] = "Última atualização:";
+$a->strings["Update public posts"] = "Atualizar publicações públicas";
+$a->strings["Update now"] = "Atualizar agora";
+$a->strings["Currently blocked"] = "Atualmente bloqueado";
+$a->strings["Currently ignored"] = "Atualmente ignorado";
+$a->strings["Currently archived"] = "Atualmente arquivado";
+$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis";
+$a->strings["Notification for new posts"] = "Notificações para novas publicações";
+$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato";
+$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds";
+$a->strings["Disabled"] = "Desabilitado";
+$a->strings["Fetch information"] = "Buscar informações";
+$a->strings["Fetch information and keywords"] = "Buscar informação e palavras-chave";
+$a->strings["Blacklisted keywords"] = "Palavras-chave na Lista Negra";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista de palavras-chave separadas por vírgulas que não devem ser convertidas para hashtags, quando \"Buscar informações e palavras-chave\" for selecionado.";
+$a->strings["Suggestions"] = "Sugestões";
+$a->strings["Suggest potential friends"] = "Sugerir amigos em potencial";
+$a->strings["All Contacts"] = "Todos os contatos";
+$a->strings["Show all contacts"] = "Exibe todos os contatos";
+$a->strings["Unblocked"] = "Desbloquear";
+$a->strings["Only show unblocked contacts"] = "Exibe somente contatos desbloqueados";
+$a->strings["Blocked"] = "Bloqueado";
+$a->strings["Only show blocked contacts"] = "Exibe somente contatos bloqueados";
+$a->strings["Ignored"] = "Ignorados";
+$a->strings["Only show ignored contacts"] = "Exibe somente contatos ignorados";
+$a->strings["Archived"] = "Arquivados";
+$a->strings["Only show archived contacts"] = "Exibe somente contatos arquivados";
+$a->strings["Hidden"] = "Ocultos";
+$a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos";
+$a->strings["Mutual Friendship"] = "Amizade mútua";
+$a->strings["is a fan of yours"] = "é um fã seu";
+$a->strings["you are a fan of"] = "você é um fã de";
+$a->strings["Edit contact"] = "Editar o contato";
+$a->strings["Contacts"] = "Contatos";
+$a->strings["Search your contacts"] = "Pesquisar seus contatos";
+$a->strings["Finding: "] = "Pesquisando: ";
+$a->strings["Find"] = "Pesquisar";
+$a->strings["Update"] = "Atualizar";
 $a->strings["Delete"] = "Excluir";
-$a->strings["View %s's profile @ %s"] = "Ver o perfil de %s @ %s";
-$a->strings["Categories:"] = "Categorias:";
-$a->strings["Filed under:"] = "Arquivado sob:";
-$a->strings["%s from %s"] = "%s de %s";
-$a->strings["View in context"] = "Ver no contexto";
-$a->strings["Please wait"] = "Por favor, espere";
-$a->strings["remove"] = "remover";
-$a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
-$a->strings["Follow Thread"] = "Seguir o Thread";
-$a->strings["%s likes this."] = "%s gostou disso.";
-$a->strings["%s doesn't like this."] = "%s não gostou disso.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d pessoas</span> gostaram disso";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d pessoas</span> não gostaram disso";
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = ", e mais %d outras pessoas";
-$a->strings["%s like this."] = "%s gostaram disso.";
-$a->strings["%s don't like this."] = "%s não gostaram disso.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
-$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
-$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo";
-$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
-$a->strings["Tag term:"] = "Etiqueta:";
+$a->strings["No profile"] = "Nenhum perfil";
+$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
+$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
+$a->strings["Post successful."] = "Publicado com sucesso.";
+$a->strings["Permission denied"] = "Permissão negada";
+$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
+$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
+$a->strings["Profile"] = "Perfil ";
+$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
+$a->strings["Visible To"] = "Visível para";
+$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
+$a->strings["Item not found."] = "O item não foi encontrado.";
+$a->strings["Public access denied."] = "Acesso público negado.";
+$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
+$a->strings["Item has been removed."] = "O item foi removido.";
+$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
+$a->strings["New Member Checklist"] = "Dicas para os novos membros";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
+$a->strings["Getting Started"] = "Do Início";
+$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
+$a->strings["Settings"] = "Configurações";
+$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
+$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
+$a->strings["Edit Your Profile"] = "Editar seu perfil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
+$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
+$a->strings["Connecting"] = "Conexões";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
+$a->strings["Importing Emails"] = "Importação de e-mails";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
+$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
+$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
+$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
+$a->strings["Groups"] = "Grupos";
+$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
+$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
+$a->strings["Getting Help"] = "Obtendo ajuda";
+$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
+$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
+$a->strings["Login failed."] = "Não foi possível autenticar.";
+$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
+$a->strings["Profile Photos"] = "Fotos do perfil";
+$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente";
+$a->strings["Unable to process image"] = "Não foi possível processar a imagem";
+$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
+$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
+$a->strings["Upload File:"] = "Enviar arquivo:";
+$a->strings["Select a profile:"] = "Selecione um perfil:";
+$a->strings["Upload"] = "Enviar";
+$a->strings["or"] = "ou";
+$a->strings["skip this step"] = "pule esta etapa";
+$a->strings["select a photo from your photo albums"] = "selecione uma foto de um álbum de fotos";
+$a->strings["Crop Image"] = "Cortar a imagem";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
+$a->strings["Done Editing"] = "Encerrar a edição";
+$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
+$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "status";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
+$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["Save to Folder:"] = "Salvar na pasta:";
-$a->strings["Where are you right now?"] = "Onde você está agora?";
-$a->strings["Delete item(s)?"] = "Deletar item(s)?";
-$a->strings["Post to Email"] = "Enviar por e-mail";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado.";
-$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?";
-$a->strings["Share"] = "Compartilhar";
-$a->strings["Upload photo"] = "Enviar foto";
-$a->strings["upload photo"] = "upload de foto";
-$a->strings["Attach file"] = "Anexar arquivo";
-$a->strings["attach file"] = "anexar arquivo";
-$a->strings["Insert web link"] = "Inserir link web";
-$a->strings["web link"] = "link web";
-$a->strings["Insert video link"] = "Inserir link de vídeo";
-$a->strings["video link"] = "link de vídeo";
-$a->strings["Insert audio link"] = "Inserir link de áudio";
-$a->strings["audio link"] = "link de áudio";
-$a->strings["Set your location"] = "Definir sua localização";
-$a->strings["set location"] = "configure localização";
-$a->strings["Clear browser location"] = "Limpar a localização do navegador";
-$a->strings["clear location"] = "apague localização";
-$a->strings["Set title"] = "Definir o título";
-$a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)";
-$a->strings["Permission settings"] = "Configurações de permissão";
-$a->strings["permissions"] = "permissões";
-$a->strings["CC: email addresses"] = "CC: endereço de e-mail";
-$a->strings["Public post"] = "Publicação pública";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
-$a->strings["Preview"] = "Pré-visualização";
-$a->strings["Post to Groups"] = "Postar em Grupos";
-$a->strings["Post to Contacts"] = "Publique para Contatos";
-$a->strings["Private post"] = "Publicação privada";
-$a->strings["newer"] = "mais recente";
-$a->strings["older"] = "antigo";
-$a->strings["prev"] = "anterior";
-$a->strings["first"] = "primeiro";
-$a->strings["last"] = "último";
-$a->strings["next"] = "próximo";
-$a->strings["No contacts"] = "Nenhum contato";
-$a->strings["%d Contact"] = array(
-       0 => "%d contato",
-       1 => "%d contatos",
-);
-$a->strings["View Contacts"] = "Ver contatos";
+$a->strings["- select -"] = "-selecione-";
 $a->strings["Save"] = "Salvar";
-$a->strings["poke"] = "cutucar";
-$a->strings["ping"] = "ping";
-$a->strings["pinged"] = "pingado";
-$a->strings["prod"] = "incentivar";
-$a->strings["prodded"] = "incentivado";
-$a->strings["slap"] = "bater";
-$a->strings["slapped"] = "batido";
-$a->strings["finger"] = "apontar";
-$a->strings["fingered"] = "apontado";
-$a->strings["rebuff"] = "rejeite";
-$a->strings["rebuffed"] = "rejeitado";
-$a->strings["happy"] = "feliz";
-$a->strings["sad"] = "triste";
-$a->strings["mellow"] = "desencanado";
-$a->strings["tired"] = "cansado";
-$a->strings["perky"] = "audacioso";
-$a->strings["angry"] = "chateado";
-$a->strings["stupified"] = "estupefato";
-$a->strings["puzzled"] = "confuso";
-$a->strings["interested"] = "interessado";
-$a->strings["bitter"] = "rancoroso";
-$a->strings["cheerful"] = "jovial";
-$a->strings["alive"] = "vivo";
-$a->strings["annoyed"] = "incomodado";
-$a->strings["anxious"] = "ansioso";
-$a->strings["cranky"] = "excêntrico";
-$a->strings["disturbed"] = "perturbado";
-$a->strings["frustrated"] = "frustrado";
-$a->strings["motivated"] = "motivado";
-$a->strings["relaxed"] = "relaxado";
-$a->strings["surprised"] = "surpreso";
-$a->strings["Monday"] = "Segunda";
-$a->strings["Tuesday"] = "Terça";
-$a->strings["Wednesday"] = "Quarta";
-$a->strings["Thursday"] = "Quinta";
-$a->strings["Friday"] = "Sexta";
-$a->strings["Saturday"] = "Sábado";
-$a->strings["Sunday"] = "Domingo";
-$a->strings["January"] = "Janeiro";
-$a->strings["February"] = "Fevereiro";
-$a->strings["March"] = "Março";
-$a->strings["April"] = "Abril";
-$a->strings["May"] = "Maio";
-$a->strings["June"] = "Junho";
-$a->strings["July"] = "Julho";
-$a->strings["August"] = "Agosto";
-$a->strings["September"] = "Setembro";
-$a->strings["October"] = "Outubro";
-$a->strings["November"] = "Novembro";
-$a->strings["December"] = "Dezembro";
+$a->strings["Contact added"] = "O contato foi adicionado";
+$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
+$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
+$a->strings["Wall Photos"] = "Fotos do mural";
+$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica.";
+$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
+$a->strings["%s posted an update."] = "%s publicou uma atualização.";
+$a->strings["Group created."] = "O grupo foi criado.";
+$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
+$a->strings["Group not found."] = "O grupo não foi encontrado.";
+$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
+$a->strings["Save Group"] = "Salvar o grupo";
+$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
+$a->strings["Group Name: "] = "Nome do grupo: ";
+$a->strings["Group removed."] = "O grupo foi removido.";
+$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
+$a->strings["Group Editor"] = "Editor de grupo";
+$a->strings["Members"] = "Membros";
+$a->strings["You must be logged in to use addons. "] = "Você precisa estar logado para usar os addons.";
+$a->strings["Applications"] = "Aplicativos";
+$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
+$a->strings["Profile not found."] = "O perfil não foi encontrado.";
+$a->strings["Contact not found."] = "O contato não foi encontrado.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
+$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
+$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
+$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
+$a->strings["Remote site reported: "] = "O site remoto relatou: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
+$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
+$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s agora é amigo de %2\$s";
+$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
+$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
+$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
+$a->strings["[Name Withheld]"] = "[Nome não revelado]";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
+$a->strings["Requested profile is not available."] = "Perfil solicitado não está disponível.";
+$a->strings["Tips for New Members"] = "Dicas para novos membros";
+$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
+$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
 $a->strings["View Video"] = "Ver Vídeo";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "Clique para abrir/fechar";
-$a->strings["link to source"] = "exibir a origem";
-$a->strings["default"] = "padrão";
-$a->strings["Select an alternate language"] = "Selecione um idioma alternativo";
-$a->strings["activity"] = "atividade";
-$a->strings["comment"] = array(
-       0 => "comentário",
-       1 => "comentários",
-);
-$a->strings["post"] = "publicação";
-$a->strings["Item filed"] = "O item foi arquivado";
-$a->strings["Logged out."] = "Saiu.";
-$a->strings["Login failed."] = "Não foi possível autenticar.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente.";
-$a->strings["The error message was:"] = "A mensagem de erro foi:";
-$a->strings["Image/photo"] = "Imagem/foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>";
-$a->strings["$1 wrote:"] = "$1 escreveu:";
-$a->strings["Encrypted content"] = "Conteúdo criptografado";
-$a->strings["Welcome "] = "Bem-vindo(a) ";
-$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
-$a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
-$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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
-$a->strings["Embedded content"] = "Conteúdo incorporado";
-$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
-$a->strings["Male"] = "Masculino";
-$a->strings["Female"] = "Feminino";
-$a->strings["Currently Male"] = "Atualmente masculino";
-$a->strings["Currently Female"] = "Atualmente feminino";
-$a->strings["Mostly Male"] = "Masculino a maior parte do tempo";
-$a->strings["Mostly Female"] = "Feminino a maior parte do tempo";
-$a->strings["Transgender"] = "Transgênero";
-$a->strings["Intersex"] = "Intersexual";
-$a->strings["Transsexual"] = "Transexual";
-$a->strings["Hermaphrodite"] = "Hermafrodita";
-$a->strings["Neuter"] = "Neutro";
-$a->strings["Non-specific"] = "Não específico";
-$a->strings["Other"] = "Outro";
-$a->strings["Undecided"] = "Indeciso";
-$a->strings["Males"] = "Homens";
-$a->strings["Females"] = "Mulheres";
-$a->strings["Gay"] = "Gays";
-$a->strings["Lesbian"] = "Lésbicas";
-$a->strings["No Preference"] = "Sem preferência";
-$a->strings["Bisexual"] = "Bissexuais";
-$a->strings["Autosexual"] = "Autossexuais";
-$a->strings["Abstinent"] = "Abstêmios";
-$a->strings["Virgin"] = "Virgens";
-$a->strings["Deviant"] = "Desviantes";
-$a->strings["Fetish"] = "Fetiches";
-$a->strings["Oodles"] = "Insaciável";
-$a->strings["Nonsexual"] = "Não sexual";
-$a->strings["Single"] = "Solteiro(a)";
-$a->strings["Lonely"] = "Solitário(a)";
-$a->strings["Available"] = "Disponível";
-$a->strings["Unavailable"] = "Não disponível";
-$a->strings["Has crush"] = "Tem uma paixão";
-$a->strings["Infatuated"] = "Apaixonado";
-$a->strings["Dating"] = "Saindo com alguém";
-$a->strings["Unfaithful"] = "Infiel";
-$a->strings["Sex Addict"] = "Viciado(a) em sexo";
-$a->strings["Friends"] = "Amigos";
-$a->strings["Friends/Benefits"] = "Amigos/Benefícios";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Envolvido(a)";
-$a->strings["Married"] = "Casado(a)";
-$a->strings["Imaginarily married"] = "Casado imaginariamente";
-$a->strings["Partners"] = "Parceiros";
-$a->strings["Cohabiting"] = "Coabitando";
-$a->strings["Common law"] = "Direito comum";
-$a->strings["Happy"] = "Feliz";
-$a->strings["Not looking"] = "Não estou procurando";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Traído(a)";
-$a->strings["Separated"] = "Separado(a)";
-$a->strings["Unstable"] = "Instável";
-$a->strings["Divorced"] = "Divorciado(a)";
-$a->strings["Imaginarily divorced"] = "Divorciado imaginariamente";
-$a->strings["Widowed"] = "Viúvo(a)";
-$a->strings["Uncertain"] = "Incerto(a)";
-$a->strings["It's complicated"] = "É complicado";
-$a->strings["Don't care"] = "Não importa";
-$a->strings["Ask me"] = "Pergunte-me";
-$a->strings["An invitation is required."] = "É necessário um convite.";
-$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
-$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
-$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
-$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
-$a->strings["Name too short."] = "O nome é muito curto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
-$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
-$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
-$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
-$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5$\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "";
-$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
-$a->strings["Visible to everybody"] = "Visível para todos";
-$a->strings["This entry was edited"] = "Essa entrada foi editada";
-$a->strings["Private Message"] = "Mensagem privada";
-$a->strings["Edit"] = "Editar";
-$a->strings["save to folder"] = "salvar na pasta";
-$a->strings["add star"] = "destacar";
-$a->strings["remove star"] = "remover o destaque";
-$a->strings["toggle star status"] = "ativa/desativa o destaque";
-$a->strings["starred"] = "marcado com estrela";
-$a->strings["ignore thread"] = "";
-$a->strings["unignore thread"] = "";
-$a->strings["toggle ignore status"] = "";
-$a->strings["ignored"] = "";
-$a->strings["add tag"] = "adicionar etiqueta";
-$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)";
-$a->strings["like"] = "gostei";
-$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)";
-$a->strings["dislike"] = "desgostar";
-$a->strings["Share this"] = "Compartilhar isso";
-$a->strings["share"] = "compartilhar";
-$a->strings["to"] = "para";
-$a->strings["via"] = "via";
-$a->strings["Wall-to-Wall"] = "Mural-para-mural";
-$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
-$a->strings["%d comment"] = array(
-       0 => "%d comentário",
-       1 => "%d comentários",
-);
-$a->strings["This is you"] = "Este(a) é você";
-$a->strings["Bold"] = "Negrito";
-$a->strings["Italic"] = "Itálico";
-$a->strings["Underline"] = "Sublinhado";
-$a->strings["Quote"] = "Citação";
-$a->strings["Code"] = "Código";
-$a->strings["Image"] = "Imagem";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Vídeo";
-$a->strings["Item not available."] = "O item não está disponível.";
-$a->strings["Item was not found."] = "O item não foi encontrado.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
-$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
-$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
-$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
-$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
-$a->strings["Message sent."] = "A mensagem foi enviada.";
-$a->strings["No recipient."] = "Nenhum destinatário.";
-$a->strings["Send Private Message"] = "Enviar mensagem privada";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
-$a->strings["To:"] = "Para:";
-$a->strings["Subject:"] = "Assunto:";
-$a->strings["Your message:"] = "Sua mensagem:";
-$a->strings["Group created."] = "O grupo foi criado.";
-$a->strings["Could not create group."] = "Não foi possível criar o grupo.";
-$a->strings["Group not found."] = "O grupo não foi encontrado.";
-$a->strings["Group name changed."] = "O nome do grupo foi alterado.";
-$a->strings["Save Group"] = "Salvar o grupo";
-$a->strings["Create a group of contacts/friends."] = "Criar um grupo de contatos/amigos.";
-$a->strings["Group Name: "] = "Nome do grupo: ";
-$a->strings["Group removed."] = "O grupo foi removido.";
-$a->strings["Unable to remove group."] = "Não foi possível remover o grupo.";
-$a->strings["Group Editor"] = "Editor de grupo";
-$a->strings["Members"] = "Membros";
-$a->strings["All Contacts"] = "Todos os contatos";
-$a->strings["Click on a contact to add or remove."] = "Clique em um contato para adicionar ou remover.";
-$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
-$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
-$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
-$a->strings["Potential Delegates"] = "Delegados Potenciais";
-$a->strings["Remove"] = "Remover";
-$a->strings["Add"] = "Adicionar";
-$a->strings["No entries."] = "Sem entradas.";
+$a->strings["View Album"] = "Ver álbum";
+$a->strings["Recent Videos"] = "Vídeos Recentes";
+$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s etiquetou %3\$s de %2\$s com %4\$s";
+$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
+$a->strings["Suggest Friends"] = "Sugerir amigos";
+$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
+$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
+$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tPrezado %1\$s,\n\t\t\tUma solicitação foi recebida recentemente em \"%2\$s\" para redefinir a\n\t\tsenha da sua conta. Para confirmar este pedido, por favor selecione o link de confirmação\n\t\tabaixo ou copie e cole-o na barra de endereço do seu navegador.\n\n\t\tSe NÃO foi você que solicitou esta alteração por favor, NÃO clique no link\n\t\tfornecido e ignore e/ou apague este e-mail.\n\n\t\tSua senha não será alterada a menos que possamos verificar que foi você que\n\t\temitiu esta solicitação.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSiga este link para verificar sua identidade:\n\n\t\t%1\$s\n\n\t\tVocê então receberá uma mensagem de continuidade contendo a nova senha.\n\t\tVocê pode alterar sua senha na sua página de configurações após efetuar seu login.\n\n\t\tOs dados de login são os seguintes:\n\n\t\tLocalização do Site:\t%2\$s\n\t\tNome de Login:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
+$a->strings["Password Reset"] = "Redifinir a senha";
+$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
+$a->strings["Your new password is"] = "Sua nova senha é";
+$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
+$a->strings["click here to login"] = "clique aqui para entrar";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tCaro %1\$s,\n\t\t\t\t\tSua senha foi alterada conforme solicitado. Por favor, guarde essas\n\t\t\t\tinformações para seus registros (ou altere a sua senha imediatamente para\n\t\t\t\talgo que você se lembrará).\n\t\t\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tOs seus dados de login são os seguintes:\n\n\t\t\t\tLocalização do Site:\t%1\$s\n\t\t\t\tNome de Login:\t%2\$s\n\t\t\t\tSenha:\t%3\$s\n\n\t\t\t\tVocê pode alterar esta senha na sua página de configurações depois que efetuar o seu login.\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
+$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
+$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
+$a->strings["Reset"] = "Reiniciar";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gosta de %3\$s de %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s não gosta de %3\$s de %2\$s";
+$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
+$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
+$a->strings["{0} requested registration"] = "{0} solicitou registro";
+$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
+$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
+$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
+$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
+$a->strings["{0} posted"] = "{0} publicou";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
+$a->strings["No contacts."] = "Nenhum contato.";
+$a->strings["View Contacts"] = "Ver contatos";
 $a->strings["Invalid request identifier."] = "Identificador de solicitação inválido";
 $a->strings["Discard"] = "Descartar";
-$a->strings["Ignore"] = "Ignorar";
 $a->strings["System"] = "Sistema";
+$a->strings["Network"] = "Rede";
 $a->strings["Personal"] = "Pessoal";
+$a->strings["Home"] = "Pessoal";
+$a->strings["Introductions"] = "Apresentações";
 $a->strings["Show Ignored Requests"] = "Exibir solicitações ignoradas";
 $a->strings["Hide Ignored Requests"] = "Ocultar solicitações ignoradas";
 $a->strings["Notification type: "] = "Tipo de notificação:";
 $a->strings["Friend Suggestion"] = "Sugestão de amigo";
 $a->strings["suggested by %s"] = "sugerido por %s";
-$a->strings["Hide this contact from others"] = "Ocultar este contato dos outros";
 $a->strings["Post a new friend activity"] = "Publicar a adição de amigo";
 $a->strings["if applicable"] = "se aplicável";
 $a->strings["Approve"] = "Aprovar";
@@ -754,6 +299,7 @@ $a->strings["Fan/Admirer"] = "Fã/Admirador";
 $a->strings["Friend/Connect Request"] = "Solicitação de amizade/conexão";
 $a->strings["New Follower"] = "Novo acompanhante";
 $a->strings["No introductions."] = "Sem apresentações.";
+$a->strings["Notifications"] = "Notificações";
 $a->strings["%s liked %s's post"] = "%s gostou da publicação de %s";
 $a->strings["%s disliked %s's post"] = "%s desgostou da publicação de %s";
 $a->strings["%s is now friends with %s"] = "%s agora é amigo de %s";
@@ -767,350 +313,88 @@ $a->strings["No more personal notifications."] = "Nenhuma notificação pessoal.
 $a->strings["Personal Notifications"] = "Notificações pessoais";
 $a->strings["No more home notifications."] = "Não existe mais nenhuma notificação pessoal.";
 $a->strings["Home Notifications"] = "Notificações pessoais";
-$a->strings["No profile"] = "Nenhum perfil";
-$a->strings["everybody"] = "todos";
-$a->strings["Account"] = "Conta";
-$a->strings["Additional features"] = "Funcionalidades adicionais";
-$a->strings["Display"] = "Tela";
-$a->strings["Social Networks"] = "Redes Sociais";
-$a->strings["Plugins"] = "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["Missing some important data!"] = "Está faltando algum dado importante!";
-$a->strings["Update"] = "Atualizar";
-$a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas.";
-$a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas.";
-$a->strings["Features updated"] = "Funcionalidades atualizadas";
-$a->strings["Relocate message has been send to your contacts"] = "A mensagem de relocação foi enviada para seus contatos";
-$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["Wrong password."] = "Senha errada.";
-$a->strings["Password changed."] = "A senha foi modificada.";
-$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
-$a->strings[" Please use a shorter name."] = " Por favor, use um nome mais curto.";
-$a->strings[" Name too short."] = " O nome é muito curto.";
-$a->strings["Wrong Password"] = "Senha Errada";
-$a->strings[" Not valid email."] = " Não é um e-mail válido.";
-$a->strings[" Cannot change to that email."] = " Não foi possível alterar para esse e-mail.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão.";
-$a->strings["Settings updated."] = "As configurações foram atualizadas.";
-$a->strings["Add application"] = "Adicionar aplicação";
-$a->strings["Save Settings"] = "Salvar configurações";
-$a->strings["Name"] = "Nome";
-$a->strings["Consumer Key"] = "Chave do consumidor";
-$a->strings["Consumer Secret"] = "Segredo do consumidor";
-$a->strings["Redirect"] = "Redirecionar";
-$a->strings["Icon url"] = "URL do ícone";
-$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação.";
-$a->strings["Connected Apps"] = "Aplicações conectadas";
-$a->strings["Client key starts with"] = "A chave do cliente inicia com";
-$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"] = "Off";
-$a->strings["On"] = "On";
-$a->strings["Additional Features"] = "Funcionalidades Adicionais";
-$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";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site.";
-$a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal.";
-$a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:";
-$a->strings["IMAP server name:"] = "Nome do servidor IMAP:";
-$a->strings["IMAP port:"] = "Porta do IMAP:";
-$a->strings["Security:"] = "Segurança:";
-$a->strings["None"] = "Nenhuma";
-$a->strings["Email login name:"] = "Nome de usuário do e-mail:";
-$a->strings["Email password:"] = "Senha do e-mail:";
-$a->strings["Reply-to address:"] = "Endereço de resposta (Reply-to):";
-$a->strings["Send public posts to all email contacts:"] = "Enviar publicações públicas para todos os contatos de e-mail:";
-$a->strings["Action after import:"] = "Ação após a importação:";
-$a->strings["Mark as seen"] = "Marcar como visto";
-$a->strings["Move to folder"] = "Mover para pasta";
-$a->strings["Move to folder:"] = "Mover para pasta:";
-$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
-$a->strings["Display Settings"] = "Configurações de exibição";
-$a->strings["Display Theme:"] = "Tema do perfil:";
-$a->strings["Mobile Theme:"] = "Tema para dispositivos móveis:";
-$a->strings["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, não possui máximo";
-$a->strings["Number of items to display per page:"] = "Número de itens a serem exibidos por página:";
-$a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:";
-$a->strings["Don't show emoticons"] = "Não exibir emoticons";
-$a->strings["Don't show notices"] = "Não mostra avisos";
-$a->strings["Infinite scroll"] = "rolamento infinito";
-$a->strings["Automatic updates only at the top of the network page"] = "";
-$a->strings["User Types"] = "Tipos de Usuários";
-$a->strings["Community Types"] = "Tipos de Comunidades";
-$a->strings["Normal Account Page"] = "Página de conta normal";
-$a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
-$a->strings["Soapbox Page"] = "Página de vitrine";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura";
-$a->strings["Community Forum/Celebrity Account"] = "Conta de fórum de comunidade/celebridade";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita";
-$a->strings["Automatic Friend Page"] = "Página de amigo automático";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos";
-$a->strings["Private Forum [Experimental]"] = "Fórum privado [Experimental]";
-$a->strings["Private forum - approved members only"] = "Fórum privado - somente membros aprovados";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir o uso deste OpenID para entrar nesta conta";
-$a->strings["Publish your default profile in your local site directory?"] = "Publicar o seu perfil padrão no diretório local do seu site?";
-$a->strings["No"] = "Não";
-$a->strings["Publish your default profile in the global social directory?"] = "Publicar o seu perfil padrão no diretório social global?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? ";
-$a->strings["Allow friends to post to your profile page?"] = "Permitir aos amigos publicarem na sua página de perfil?";
-$a->strings["Allow friends to tag your posts?"] = "Permitir aos amigos etiquetarem suas publicações?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir que você seja sugerido como amigo em potencial para novos membros?";
-$a->strings["Permit unknown people to send you private mail?"] = "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?";
-$a->strings["Profile is <strong>not published</strong>."] = "O perfil <strong>não está publicado</strong>.";
-$a->strings["or"] = "ou";
-$a->strings["Your Identity Address is"] = "O endereço da sua identidade é";
-$a->strings["Automatically expire posts after this many days:"] = "Expirar automaticamente publicações após tantos dias:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas.";
-$a->strings["Advanced expiration settings"] = "Configurações avançadas de expiração";
-$a->strings["Advanced Expiration"] = "Expiração avançada";
-$a->strings["Expire posts:"] = "Expirar publicações:";
-$a->strings["Expire personal notes:"] = "Expirar notas pessoais:";
-$a->strings["Expire starred posts:"] = "Expirar publicações destacadas:";
-$a->strings["Expire photos:"] = "Expirar fotos:";
-$a->strings["Only expire posts by others:"] = "Expirar somente as publicações de outras pessoas:";
-$a->strings["Account Settings"] = "Configurações da conta";
-$a->strings["Password Settings"] = "Configurações da senha";
-$a->strings["New Password:"] = "Nova senha:";
-$a->strings["Confirm:"] = "Confirme:";
-$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
-$a->strings["Current Password:"] = "Senha Atual:";
-$a->strings["Your current password to confirm the changes"] = "Sua senha atual para confirmar as mudanças";
-$a->strings["Password:"] = "Senha:";
-$a->strings["Basic Settings"] = "Configurações básicas";
-$a->strings["Email Address:"] = "Endereço de e-mail:";
-$a->strings["Your Timezone:"] = "Seu fuso horário:";
-$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
-$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
-$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
-$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
-$a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
-$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
-$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
-$a->strings["Show to Groups"] = "Mostre para Grupos";
-$a->strings["Show to Contacts"] = "Mostre para Contatos";
-$a->strings["Default Private Post"] = "Publicação Privada Padrão";
-$a->strings["Default Public Post"] = "Publicação Pública Padrão";
-$a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas";
-$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:";
-$a->strings["Notification Settings"] = "Configurações de notificação";
-$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:";
-$a->strings["accepting a friend request"] = "aceitar uma requisição de amizade";
-$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade";
-$a->strings["making an <em>interesting</em> profile change"] = "fazer uma modificação <em>interessante</em> em seu perfil";
-$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação sempre que:";
-$a->strings["You receive an introduction"] = "Você recebeu uma apresentação";
-$a->strings["Your introductions are confirmed"] = "Suas apresentações forem confirmadas";
-$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
-$a->strings["Someone writes a followup comment"] = "Alguém comentar a sua mensagem";
-$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada";
-$a->strings["You receive a friend suggestion"] = "Você recebe uma suggestão de amigo";
-$a->strings["You are tagged in a post"] = "Você foi etiquetado em uma publicação";
-$a->strings["You are poked/prodded/etc. in a post"] = "Você está cutucado/incitado/etc. em uma publicação";
-$a->strings["Advanced Account/Page Type Settings"] = "Conta avançada/Configurações do tipo de página";
-$a->strings["Change the behaviour of this account for special situations"] = "Modificar o comportamento desta conta em situações especiais";
-$a->strings["Relocate"] = "Relocação";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão.";
-$a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos";
-$a->strings["Common Friends"] = "Amigos em Comum";
-$a->strings["No contacts in common."] = "Nenhum contato em comum.";
-$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
-$a->strings["Visible to:"] = "Visível para:";
-$a->strings["%d contact edited."] = array(
-       0 => "%d contato editado",
-       1 => "%d contatos editados",
+$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
+$a->strings["Source input: "] = "Entrada fonte:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Nothing new here"] = "Nada de novo aqui";
+$a->strings["Clear notifications"] = "Descartar notificações";
+$a->strings["New Message"] = "Nova mensagem";
+$a->strings["No recipient selected."] = "Não foi selecionado nenhum destinatário.";
+$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
+$a->strings["Message could not be sent."] = "Não foi possível enviar a mensagem.";
+$a->strings["Message collection failure."] = "Falha na coleta de mensagens.";
+$a->strings["Message sent."] = "A mensagem foi enviada.";
+$a->strings["Messages"] = "Mensagens";
+$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
+$a->strings["Message deleted."] = "A mensagem foi excluída.";
+$a->strings["Conversation removed."] = "A conversa foi removida.";
+$a->strings["Please enter a link URL:"] = "Por favor, digite uma URL:";
+$a->strings["Send Private Message"] = "Enviar mensagem privada";
+$a->strings["To:"] = "Para:";
+$a->strings["Subject:"] = "Assunto:";
+$a->strings["Your message:"] = "Sua mensagem:";
+$a->strings["Upload photo"] = "Enviar foto";
+$a->strings["Insert web link"] = "Inserir link web";
+$a->strings["Please wait"] = "Por favor, espere";
+$a->strings["No messages."] = "Nenhuma mensagem.";
+$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
+$a->strings["You and %s"] = "Você e %s";
+$a->strings["%s and You"] = "%s e você";
+$a->strings["Delete conversation"] = "Excluir conversa";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d mensagem",
+       1 => "%d mensagens",
 );
-$a->strings["Could not access contact record."] = "Não foi possível acessar o registro do contato.";
-$a->strings["Could not locate selected profile."] = "Não foi possível localizar o perfil selecionado.";
-$a->strings["Contact updated."] = "O contato foi atualizado.";
-$a->strings["Failed to update contact record."] = "Não foi possível atualizar o registro do contato.";
-$a->strings["Contact has been blocked"] = "O contato foi bloqueado";
-$a->strings["Contact has been unblocked"] = "O contato foi desbloqueado";
-$a->strings["Contact has been ignored"] = "O contato foi ignorado";
-$a->strings["Contact has been unignored"] = "O contato deixou de ser ignorado";
-$a->strings["Contact has been archived"] = "O contato foi arquivado";
-$a->strings["Contact has been unarchived"] = "O contato foi desarquivado";
-$a->strings["Do you really want to delete this contact?"] = "Você realmente deseja deletar esse contato?";
-$a->strings["Contact has been removed."] = "O contato foi removido.";
-$a->strings["You are mutual friends with %s"] = "Você possui uma amizade mútua com %s";
-$a->strings["You are sharing with %s"] = "Você está compartilhando com %s";
-$a->strings["%s is sharing with you"] = "%s está compartilhando com você";
-$a->strings["Private communications are not available for this contact."] = "As comunicações privadas não estão disponíveis para este contato.";
-$a->strings["Never"] = "Nunca";
-$a->strings["(Update was successful)"] = "(A atualização foi bem sucedida)";
-$a->strings["(Update was not successful)"] = "(A atualização não foi bem sucedida)";
-$a->strings["Suggest friends"] = "Sugerir amigos";
-$a->strings["Network type: %s"] = "Tipo de rede: %s";
-$a->strings["View all contacts"] = "Ver todos os contatos";
-$a->strings["Unblock"] = "Desbloquear";
-$a->strings["Block"] = "Bloquear";
-$a->strings["Toggle Blocked status"] = "Alternar o status de bloqueio";
-$a->strings["Unignore"] = "Deixar de ignorar";
-$a->strings["Toggle Ignored status"] = "Alternar o status de ignorado";
-$a->strings["Unarchive"] = "Desarquivar";
-$a->strings["Archive"] = "Arquivar";
-$a->strings["Toggle Archive status"] = "Alternar o status de arquivamento";
-$a->strings["Repair"] = "Reparar";
-$a->strings["Advanced Contact Settings"] = "Configurações avançadas do contato";
-$a->strings["Communications lost with this contact!"] = "As comunicações com esse contato foram perdidas!";
-$a->strings["Contact Editor"] = "Editor de contatos";
-$a->strings["Profile Visibility"] = "Visibilidade do perfil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecione o perfil que você gostaria de exibir para %s quando estiver visualizando seu perfil de modo seguro.";
-$a->strings["Contact Information / Notes"] = "Informações sobre o contato / Anotações";
-$a->strings["Edit contact notes"] = "Editar as anotações do contato";
-$a->strings["Visit %s's profile [%s]"] = "Visitar o perfil de %s [%s]";
-$a->strings["Block/Unblock contact"] = "Bloquear/desbloquear o contato";
-$a->strings["Ignore contact"] = "Ignorar o contato";
-$a->strings["Repair URL settings"] = "Reparar as definições de URL";
-$a->strings["View conversations"] = "Ver as conversas";
-$a->strings["Delete contact"] = "Excluir o contato";
-$a->strings["Last update:"] = "Última atualização:";
-$a->strings["Update public posts"] = "Atualizar publicações públicas";
-$a->strings["Update now"] = "Atualizar agora";
-$a->strings["Currently blocked"] = "Atualmente bloqueado";
-$a->strings["Currently ignored"] = "Atualmente ignorado";
-$a->strings["Currently archived"] = "Atualmente arquivado";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Respostas/gostadas associados às suas publicações <strong>ainda podem</strong> estar visíveis";
-$a->strings["Notification for new posts"] = "Notificações para novas publicações";
-$a->strings["Send a notification of every new post of this contact"] = "Envie uma notificação para todos as novas publicações deste contato";
-$a->strings["Fetch further information for feeds"] = "Pega mais informações para feeds";
-$a->strings["Suggestions"] = "Sugestões";
-$a->strings["Suggest potential friends"] = "Sugerir amigos em potencial";
-$a->strings["Show all contacts"] = "Exibe todos os contatos";
-$a->strings["Unblocked"] = "Desbloquear";
-$a->strings["Only show unblocked contacts"] = "Exibe somente contatos desbloqueados";
-$a->strings["Blocked"] = "Bloqueado";
-$a->strings["Only show blocked contacts"] = "Exibe somente contatos bloqueados";
-$a->strings["Ignored"] = "Ignorados";
-$a->strings["Only show ignored contacts"] = "Exibe somente contatos ignorados";
-$a->strings["Archived"] = "Arquivados";
-$a->strings["Only show archived contacts"] = "Exibe somente contatos arquivados";
-$a->strings["Hidden"] = "Ocultos";
-$a->strings["Only show hidden contacts"] = "Exibe somente contatos ocultos";
-$a->strings["Mutual Friendship"] = "Amizade mútua";
-$a->strings["is a fan of yours"] = "é um fã seu";
-$a->strings["you are a fan of"] = "você é um fã de";
-$a->strings["Edit contact"] = "Editar o contato";
-$a->strings["Search your contacts"] = "Pesquisar seus contatos";
-$a->strings["Finding: "] = "Pesquisando: ";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
-$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
-$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
-$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
+$a->strings["Message not available."] = "A mensagem não está disponível.";
+$a->strings["Delete message"] = "Excluir a mensagem";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
+$a->strings["Send Reply"] = "Enviar resposta";
 $a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
-$a->strings["Export account"] = "Exportar conta";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
-$a->strings["Export all"] = "Exportar tudo";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
-$a->strings["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Não foi possível enviar a mensagem de e-mail. Aqui está a mensagem que não foi.";
-$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
-$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
-$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
-$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
-$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
-$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
-$a->strings["Registration"] = "Registro";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
-$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
-$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
-$a->strings["Import"] = "Importar";
-$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
-$a->strings["Post successful."] = "Publicado com sucesso.";
-$a->strings["System down for maintenance"] = "Sistema em manutenção";
-$a->strings["Access to this profile has been restricted."] = "O acesso a este perfil está restrito.";
-$a->strings["Tips for New Members"] = "Dicas para novos membros";
-$a->strings["Public access denied."] = "Acesso público negado.";
-$a->strings["No videos selected"] = "Nenhum vídeo selecionado";
-$a->strings["Access to this item is restricted."] = "O acesso a este item é restrito.";
-$a->strings["View Album"] = "Ver álbum";
-$a->strings["Recent Videos"] = "Vídeos Recentes";
-$a->strings["Upload New Videos"] = "Envie Novos Vídeos";
-$a->strings["Manage Identities and/or Pages"] = "Gerenciar identidades e/ou páginas";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Alterne entre diferentes identidades ou páginas de comunidade/grupo que dividem detalhes da sua conta ou que você tenha fornecido permissões de \"administração\"";
-$a->strings["Select an identity to manage: "] = "Selecione uma identidade para gerenciar: ";
-$a->strings["Item not found"] = "O item não foi encontrado";
-$a->strings["Edit post"] = "Editar a publicação";
-$a->strings["People Search"] = "Pesquisar pessoas";
-$a->strings["No matches"] = "Nenhuma correspondência";
-$a->strings["Account approved."] = "A conta foi aprovada.";
-$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
-$a->strings["Please login."] = "Por favor, autentique-se.";
-$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
-$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
-       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
-);
-$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
-$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
-$a->strings["Profile unavailable."] = "O perfil não está disponível.";
-$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
-$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
-$a->strings["Invalid locator"] = "Localizador inválido";
-$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
-$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
-$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
-$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
-$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
-$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
-$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
-$a->strings["Hide this contact"] = "Ocultar este contato";
-$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
-$a->strings["Confirm"] = "Confirmar";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
-$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
-$a->strings["Does %s know you?"] = "%s conhece você?";
-$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$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["Contact settings applied."] = "As configurações do contato foram aplicadas.";
+$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
+$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
+$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
+$a->strings["No mirroring"] = "Nenhum espelhamento";
+$a->strings["Mirror as forwarded posting"] = "Espelhar como postagem encaminhada";
+$a->strings["Mirror as my own posting"] = "Espelhar como minha própria postagem";
+$a->strings["Name"] = "Nome";
+$a->strings["Account Nickname"] = "Identificação da conta";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
+$a->strings["Account URL"] = "URL da conta";
+$a->strings["Friend Request URL"] = "URL da requisição de amizade";
+$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
+$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
+$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
+$a->strings["New photo from this URL"] = "Nova imagem desta URL";
+$a->strings["Remote Self"] = "Auto remoto";
+$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário.";
+$a->strings["Access denied."] = "Acesso negado.";
+$a->strings["People Search"] = "Pesquisar pessoas";
+$a->strings["No matches"] = "Nenhuma correspondência";
+$a->strings["Photos"] = "Fotos";
 $a->strings["Files"] = "Arquivos";
-$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
-$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
-$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
-$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
-$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
 $a->strings["Contacts who are not members of a group"] = "Contatos que não são membros de um grupo";
-$a->strings["Contact not found."] = "O contato não foi encontrado.";
-$a->strings["Friend suggestion sent."] = "A sugestão de amigo foi enviada";
-$a->strings["Suggest Friends"] = "Sugerir amigos";
-$a->strings["Suggest a friend for %s"] = "Sugerir um amigo para %s";
-$a->strings["link"] = "ligação";
-$a->strings["No contacts."] = "Nenhum contato.";
 $a->strings["Theme settings updated."] = "As configurações do tema foram atualizadas.";
 $a->strings["Site"] = "Site";
 $a->strings["Users"] = "Usuários";
+$a->strings["Plugins"] = "Plugins";
 $a->strings["Themes"] = "Temas";
 $a->strings["DB updates"] = "Atualizações do BD";
 $a->strings["Logs"] = "Relatórios";
+$a->strings["Admin"] = "Admin";
 $a->strings["Plugin Features"] = "Recursos do plugin";
 $a->strings["User registrations waiting for confirmation"] = "Cadastros de novos usuários aguardando confirmação";
 $a->strings["Normal Account"] = "Conta normal";
@@ -1128,7 +412,12 @@ $a->strings["Version"] = "Versão";
 $a->strings["Active plugins"] = "Plugins ativos";
 $a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Não foi possível analisar a URL. Ela deve conter pelo menos <scheme>://<domain>";
 $a->strings["Site settings updated."] = "As configurações do site foram atualizadas.";
+$a->strings["No special theme for mobile devices"] = "Nenhum tema especial para dispositivos móveis";
 $a->strings["At post arrival"] = "Na chegada da publicação";
+$a->strings["Frequently"] = "Frequentemente";
+$a->strings["Hourly"] = "De hora em hora";
+$a->strings["Twice daily"] = "Duas vezes ao dia";
+$a->strings["Daily"] = "Diariamente";
 $a->strings["Multi user instance"] = "Instância multi usuário";
 $a->strings["Closed"] = "Fechado";
 $a->strings["Requires approval"] = "Requer aprovação";
@@ -1136,12 +425,15 @@ $a->strings["Open"] = "Aberto";
 $a->strings["No SSL policy, links will track page SSL state"] = "Nenhuma política de SSL, os links irão rastrear o estado SSL da página";
 $a->strings["Force all links to use SSL"] = "Forçar todos os links a utilizar SSL";
 $a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificado auto-assinado, usar SSL somente para links locais (não recomendado)";
+$a->strings["Save Settings"] = "Salvar configurações";
+$a->strings["Registration"] = "Registro";
 $a->strings["File upload"] = "Envio de arquivo";
 $a->strings["Policies"] = "Políticas";
 $a->strings["Advanced"] = "Avançado";
 $a->strings["Performance"] = "Performance";
 $a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocação - ATENÇÃO: função avançada. Pode tornar esse servidor inacessível.";
 $a->strings["Site name"] = "Nome do site";
+$a->strings["Host name"] = "Nome do host";
 $a->strings["Banner/Logo"] = "Banner/Logo";
 $a->strings["Additional Info"] = "Informação adicional";
 $a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Para servidores públicos: você pode adicionar informações aqui que serão listadas em dir.friendica.com/siteinfo.";
@@ -1152,6 +444,8 @@ $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";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se os links gerados devem ser forçados a utilizar SSL";
+$a->strings["Force SSL"] = "Forçar SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Forçar todas as solicitações não-SSL para SSL - Atenção: em alguns sistemas isso pode levar a loops infinitos.";
 $a->strings["Old style 'Share'"] = "Estilo antigo do 'Compartilhar' ";
 $a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Desativa o elemento bbcode 'compartilhar' para repetir ítens.";
 $a->strings["Hide help entry from navigation menu"] = "Oculta a entrada 'Ajuda' do menu de navegação";
@@ -1229,32 +523,33 @@ $a->strings["Suppress Language"] = "Retira idioma";
 $a->strings["Suppress language information in meta information about a posting."] = "Retira informações sobre idioma nas meta informações sobre uma publicação.";
 $a->strings["Path to item cache"] = "Diretório do cache de item";
 $a->strings["Cache duration in seconds"] = "Duração do cache em segundos";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "";
-$a->strings["Maximum numbers of comments per post"] = "";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Por quanto tempo os arquivos de cache devem ser mantidos? O valor padrão é 86400 segundos (um dia). Para desativar o cache, defina o valor para -1.";
+$a->strings["Maximum numbers of comments per post"] = "O número máximo de comentários por post";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Quanto comentários devem ser mostradas em cada post? O valor padrão é 100.";
 $a->strings["Path for lock file"] = "Diretório do arquivo de trava";
 $a->strings["Temp path"] = "Diretório Temp";
 $a->strings["Base path to installation"] = "Diretório base para instalação";
-$a->strings["Disable picture proxy"] = "";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
+$a->strings["Disable picture proxy"] = "Disabilitar proxy de imagem";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa.";
 $a->strings["New base url"] = "Nova URL base";
-$a->strings["Enable noscrape"] = "";
-$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping."] = "";
+$a->strings["Disable noscrape"] = "Desabilitar noscrape";
+$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "O recurso noscrape acelera submissões do diretório usando dados JSON em vez de raspagem HTML. Desativá-lo irá causar maior carga sobre o seu servidor e o servidor do diretório.";
 $a->strings["Update has been marked successful"] = "A atualização foi marcada como bem sucedida";
-$a->strings["Database structure update %s was successfully applied."] = "";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "";
-$a->strings["Executing %s failed with error: %s"] = "";
+$a->strings["Database structure update %s was successfully applied."] = "A atualização da estrutura do banco de dados %s foi aplicada com sucesso.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "A execução da atualização da estrutura do banco de dados %s falhou com o erro: %s";
+$a->strings["Executing %s failed with error: %s"] = "A execução de %s falhou com erro: %s";
 $a->strings["Update %s was successfully applied."] = "A atualização %s foi aplicada com sucesso.";
 $a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Atualizar %s não retornou um status. Desconhecido se ele teve sucesso.";
-$a->strings["There was no additional update function %s that needed to be called."] = "";
+$a->strings["There was no additional update function %s that needed to be called."] = "Não havia nenhuma função de atualização %s adicional que precisava ser chamada.";
 $a->strings["No failed updates."] = "Nenhuma atualização com falha.";
-$a->strings["Check database structure"] = "";
+$a->strings["Check database structure"] = "Verifique a estrutura do banco de dados";
 $a->strings["Failed Updates"] = "Atualizações com falha";
 $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Isso não inclue atualizações antes da 1139, as quais não retornavam um status.";
 $a->strings["Mark success (if update was manually applied)"] = "Marcar como bem sucedida (caso tenham sido aplicadas atualizações manuais)";
 $a->strings["Attempt to execute this update step automatically"] = "Tentar executar esse passo da atualização automaticamente";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tCaro %1\$s,\n\t\t\t\to administrador de %2\$s criou uma conta para você.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tOs dados de login são os seguintes:\n\n\t\t\tLocal do Site:\t%1\$s\n\t\t\tNome de Login:\t\t%2\$s\n\t\t\tSenha:\t\t%3\$s\n\n\t\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login.\n\n\t\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\t\ttalvez em que pais você mora; se você não quiser ser mais específico\n\t\t\tdo que isso.\n\n\t\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo\n\t\t\ta fazer novas e interessantes amizades.\n\n\t\t\tObrigado e bem-vindo a %4\$s.";
+$a->strings["Registration details for %s"] = "Detalhes do registro de %s";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s usuário bloqueado/desbloqueado",
        1 => "%s usuários bloqueados/desbloqueados",
@@ -1271,6 +566,7 @@ $a->strings["select all"] = "selecionar todos";
 $a->strings["User registrations waiting for confirm"] = "Registros de usuário aguardando confirmação";
 $a->strings["User waiting for permanent deletion"] = "Usuário aguardando por fim permanente da conta.";
 $a->strings["Request date"] = "Solicitar data";
+$a->strings["Email"] = "E-mail";
 $a->strings["No registrations."] = "Nenhum registro.";
 $a->strings["Deny"] = "Negar";
 $a->strings["Site admin"] = "Administração do site";
@@ -1280,6 +576,7 @@ $a->strings["Register date"] = "Data de registro";
 $a->strings["Last login"] = "Última entrada";
 $a->strings["Last item"] = "Último item";
 $a->strings["Deleted since"] = "Apagado desde";
+$a->strings["Account"] = "Conta";
 $a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Os usuários selecionados serão excluídos!\\n\\nTudo o que estes usuários publicaram neste site será excluído permanentemente!\\n\\nDeseja continuar?";
 $a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "O usuário {0} será excluído!\\n\\nTudo o que este usuário publicou neste site será permanentemente excluído!\\n\\nDeseja continuar?";
 $a->strings["Name of the new user."] = "Nome do novo usuários.";
@@ -1308,14 +605,10 @@ $a->strings["FTP Host"] = "Endereço do FTP";
 $a->strings["FTP Path"] = "Caminho do FTP";
 $a->strings["FTP User"] = "Usuário do FTP";
 $a->strings["FTP Password"] = "Senha do FTP";
-$a->strings["Image exceeds size limit of %d"] = "A imagem excede o limite de tamanho de %d";
-$a->strings["Unable to process image."] = "Não foi possível processar a imagem.";
-$a->strings["Image upload failed."] = "Não foi possível enviar a imagem.";
-$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
-$a->strings["OpenID protocol error. No ID returned."] = "Erro no protocolo OpenID. Não foi retornada nenhuma ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "A conta não foi encontrada e não são permitidos registros via OpenID nesse site.";
 $a->strings["Search Results For:"] = "Resultados de Busca Por:";
 $a->strings["Remove term"] = "Remover o termo";
+$a->strings["Saved Searches"] = "Pesquisas salvas";
+$a->strings["add"] = "adicionar";
 $a->strings["Commented Order"] = "Ordem dos comentários";
 $a->strings["Sort by Comment Date"] = "Ordenar pela data do comentário";
 $a->strings["Posted Order"] = "Ordem das publicações";
@@ -1338,131 +631,13 @@ $a->strings["Group: "] = "Grupo: ";
 $a->strings["Contact: "] = "Contato: ";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "Mensagens privadas para esta pessoa correm o risco de sofrerem divulgação pública.";
 $a->strings["Invalid contact."] = "Contato inválido.";
-$a->strings["- select -"] = "-selecione-";
-$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
-$a->strings["running at web location"] = "sendo executado no endereço web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
-$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
-$a->strings["Applications"] = "Aplicativos";
-$a->strings["No installed applications."] = "Nenhum aplicativo instalado";
-$a->strings["Upload New Photos"] = "Enviar novas fotos";
-$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
-$a->strings["Album not found."] = "O álbum não foi encontrado.";
-$a->strings["Delete Album"] = "Excluir o álbum";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
-$a->strings["Delete Photo"] = "Excluir a foto";
-$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
-$a->strings["a photo"] = "uma foto";
-$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
-$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
-$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
-$a->strings["Upload Photos"] = "Enviar fotos";
-$a->strings["New album name: "] = "Nome do novo álbum: ";
-$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
-$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
-$a->strings["Permissions"] = "Permissões";
-$a->strings["Private Photo"] = "Foto Privada";
-$a->strings["Public Photo"] = "Foto Pública";
-$a->strings["Edit Album"] = "Editar o álbum";
-$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
-$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
-$a->strings["View Photo"] = "Ver a foto";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
-$a->strings["Photo not available"] = "A foto não está disponível";
-$a->strings["View photo"] = "Ver a imagem";
-$a->strings["Edit photo"] = "Editar a foto";
-$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
-$a->strings["View Full Size"] = "Ver no tamanho real";
-$a->strings["Tags: "] = "Etiquetas: ";
-$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
-$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
-$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
-$a->strings["New album name"] = "Novo nome para o álbum";
-$a->strings["Caption"] = "Legenda";
-$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
-$a->strings["Private photo"] = "Foto privada";
-$a->strings["Public photo"] = "Foto pública";
-$a->strings["Recent Photos"] = "Fotos recentes";
-$a->strings["Contact added"] = "O contato foi adicionado";
-$a->strings["Move account"] = "Mover conta";
-$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
-$a->strings["Account file"] = "Arquivo de conta";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
-$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
-$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
-$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
-$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
-$a->strings["%d message sent."] = array(
-       0 => "%d mensagem enviada.",
-       1 => "%d mensagens enviadas.",
-);
-$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
-$a->strings["Send invitations"] = "Enviar convites.";
-$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
-$a->strings["Access denied."] = "Acesso negado.";
-$a->strings["No valid account found."] = "Não foi encontrada nenhuma conta válida.";
-$a->strings["Password reset request issued. Check your email."] = "A solicitação para reiniciar sua senha foi encaminhada. Verifique seu e-mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "";
-$a->strings["Password reset requested at %s"] = "Foi feita uma solicitação de reiniciação da senha em %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Não foi possível verificar a solicitação (você pode tê-la submetido anteriormente). A senha não foi reiniciada.";
-$a->strings["Your password has been reset as requested."] = "Sua senha foi reiniciada, conforme solicitado.";
-$a->strings["Your new password is"] = "Sua nova senha é";
-$a->strings["Save or copy your new password - and then"] = "Grave ou copie a sua nova senha e, então";
-$a->strings["click here to login"] = "clique aqui para entrar";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Sua senha pode ser alterada na página de <em>Configurações</em> após você entrar em seu perfil.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "";
-$a->strings["Your password has been changed at %s"] = "Sua senha foi modifica às %s";
-$a->strings["Forgot your Password?"] = "Esqueceu a sua senha?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Digite o seu endereço de e-mail e clique em 'Reiniciar' para prosseguir com a reiniciação da sua senha. Após isso, verifique seu e-mail para mais instruções.";
-$a->strings["Nickname or Email: "] = "Identificação ou e-mail: ";
-$a->strings["Reset"] = "Reiniciar";
-$a->strings["Source (bbcode) text:"] = "Texto fonte (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texto fonte (Diaspora) a converter para BBcode:";
-$a->strings["Source input: "] = "Entrada fonte:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML puro):";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Fonte de entrada (formato Diaspora):";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["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 My Account"] = "Remover minha conta";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
-$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
-$a->strings["Invalid profile identifier."] = "Identificador de perfil inválido.";
-$a->strings["Profile Visibility Editor"] = "Editor de visibilidade do perfil";
-$a->strings["Visible To"] = "Visível para";
-$a->strings["All Contacts (with secure profile access)"] = "Todos os contatos (com acesso a perfil seguro)";
-$a->strings["Profile Match"] = "Correspondência de perfil";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
-$a->strings["is interested in:"] = "se interessa por:";
+$a->strings["Friends of %s"] = "Amigos de %s";
+$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
 $a->strings["Event title and start time are required."] = "O título do evento e a hora de início são obrigatórios.";
 $a->strings["l, F j"] = "l, F j";
 $a->strings["Edit event"] = "Editar o evento";
+$a->strings["link to source"] = "exibir a origem";
+$a->strings["Events"] = "Eventos";
 $a->strings["Create New Event"] = "Criar um novo evento";
 $a->strings["Previous"] = "Anterior";
 $a->strings["Next"] = "Próximo";
@@ -1475,113 +650,53 @@ $a->strings["Finish date/time is not known or not relevant"] = "A data/hora de t
 $a->strings["Event Finishes:"] = "Término do evento:";
 $a->strings["Adjust for viewer timezone"] = "Ajustar para o fuso horário do visualizador";
 $a->strings["Description:"] = "Descrição:";
+$a->strings["Location:"] = "Localização:";
 $a->strings["Title:"] = "Título:";
 $a->strings["Share this event"] = "Compartilhar este evento";
-$a->strings["{0} wants to be your friend"] = "{0} deseja ser seu amigo";
-$a->strings["{0} sent you a message"] = "{0} lhe enviou uma mensagem";
-$a->strings["{0} requested registration"] = "{0} solicitou registro";
-$a->strings["{0} commented %s's post"] = "{0} comentou a publicação de %s";
-$a->strings["{0} liked %s's post"] = "{0} gostou da publicação de %s";
-$a->strings["{0} disliked %s's post"] = "{0} desgostou da publicação de %s";
-$a->strings["{0} is now friends with %s"] = "{0} agora é amigo de %s";
-$a->strings["{0} posted"] = "{0} publicou";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} etiquetou a publicação de %s com #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} mencionou você em uma publicação";
-$a->strings["Mood"] = "Humor";
-$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
-$a->strings["No results."] = "Nenhum resultado.";
-$a->strings["Unable to locate contact information."] = "Não foi possível localizar informação do contato.";
-$a->strings["Do you really want to delete this message?"] = "Você realmente deseja deletar essa mensagem?";
-$a->strings["Message deleted."] = "A mensagem foi excluída.";
-$a->strings["Conversation removed."] = "A conversa foi removida.";
-$a->strings["No messages."] = "Nenhuma mensagem.";
-$a->strings["Unknown sender - %s"] = "Remetente desconhecido - %s";
-$a->strings["You and %s"] = "Você e %s";
-$a->strings["%s and You"] = "%s e você";
-$a->strings["Delete conversation"] = "Excluir conversa";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d mensagem",
-       1 => "%d mensagens",
+$a->strings["Select"] = "Selecionar";
+$a->strings["View %s's profile @ %s"] = "Ver o perfil de %s @ %s";
+$a->strings["%s from %s"] = "%s de %s";
+$a->strings["View in context"] = "Ver no contexto";
+$a->strings["%d comment"] = array(
+       0 => "%d comentário",
+       1 => "%d comentários",
 );
-$a->strings["Message not available."] = "A mensagem não está disponível.";
-$a->strings["Delete message"] = "Excluir a mensagem";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Não foi encontrada nenhuma comunicação segura. Você <strong>pode</strong> ser capaz de responder a partir da página de perfil do remetente.";
-$a->strings["Send Reply"] = "Enviar resposta";
-$a->strings["Not available."] = "Não disponível.";
-$a->strings["Profile not found."] = "O perfil não foi encontrado.";
-$a->strings["Profile deleted."] = "O perfil foi excluído.";
-$a->strings["Profile-"] = "Perfil-";
-$a->strings["New profile created."] = "O novo perfil foi criado.";
-$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem.";
-$a->strings["Profile Name is required."] = "É necessário informar o nome do perfil.";
-$a->strings["Marital Status"] = "Situação amorosa";
-$a->strings["Romantic Partner"] = "Parceiro romântico";
-$a->strings["Likes"] = "Gosta de";
-$a->strings["Dislikes"] = "Não gosta de";
-$a->strings["Work/Employment"] = "Trabalho/emprego";
-$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"] = "Página Principal";
-$a->strings["Interests"] = "Interesses";
-$a->strings["Address"] = "Endereço";
-$a->strings["Location"] = "Localização";
-$a->strings["Profile updated."] = "O perfil foi atualizado.";
-$a->strings[" and "] = " e ";
-$a->strings["public profile"] = "perfil público";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s mudou %2\$s para &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Visite %2\$s de %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s foi atualizado %2\$s, mudando %3\$s.";
-$a->strings["Hide contacts and friends:"] = "";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?";
-$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil";
-$a->strings["Change Profile Photo"] = "Mudar Foto do Perfil";
-$a->strings["View this profile"] = "Ver este perfil";
-$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações";
-$a->strings["Clone this profile"] = "Clonar este perfil";
-$a->strings["Delete this profile"] = "Excluir este perfil";
-$a->strings["Basic information"] = "";
-$a->strings["Profile picture"] = "";
-$a->strings["Preferences"] = "";
-$a->strings["Status information"] = "";
-$a->strings["Additional information"] = "";
-$a->strings["Upload Profile Photo"] = "Enviar foto do perfil";
-$a->strings["Profile Name:"] = "Nome do perfil:";
-$a->strings["Your Full Name:"] = "Seu nome completo:";
-$a->strings["Title/Description:"] = "Título/Descrição:";
-$a->strings["Your Gender:"] = "Seu gênero:";
-$a->strings["Birthday (%s):"] = "Aniversário (%s):";
-$a->strings["Street Address:"] = "Endereço:";
-$a->strings["Locality/City:"] = "Localidade/Cidade:";
-$a->strings["Postal/Zip Code:"] = "CEP:";
-$a->strings["Country:"] = "País:";
-$a->strings["Region/State:"] = "Região/Estado:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Situação amorosa:";
-$a->strings["Who: (if applicable)"] = "Quem: (se pertinente)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com";
-$a->strings["Since [date]:"] = "Desde [data]:";
-$a->strings["Homepage URL:"] = "Endereço do site web:";
-$a->strings["Religious Views:"] = "Orientação religiosa:";
-$a->strings["Public Keywords:"] = "Palavras-chave públicas:";
-$a->strings["Private Keywords:"] = "Palavras-chave privadas:";
-$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
-$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
-$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
-$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
-$a->strings["Musical interests"] = "Preferências musicais";
-$a->strings["Books, literature"] = "Livros, literatura";
-$a->strings["Television"] = "Televisão";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
-$a->strings["Love/romance"] = "Amor/romance";
-$a->strings["Work/employment"] = "Trabalho/emprego";
-$a->strings["School/education"] = "Escola/educação";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
-$a->strings["Age: "] = "Idade: ";
-$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
+$a->strings["comment"] = array(
+       0 => "comentário",
+       1 => "comentários",
+);
+$a->strings["show more"] = "exibir mais";
+$a->strings["Private Message"] = "Mensagem privada";
+$a->strings["I like this (toggle)"] = "Eu gostei disso (alternar)";
+$a->strings["like"] = "gostei";
+$a->strings["I don't like this (toggle)"] = "Eu não gostei disso (alternar)";
+$a->strings["dislike"] = "desgostar";
+$a->strings["Share this"] = "Compartilhar isso";
+$a->strings["share"] = "compartilhar";
+$a->strings["This is you"] = "Este(a) é você";
+$a->strings["Comment"] = "Comentar";
+$a->strings["Bold"] = "Negrito";
+$a->strings["Italic"] = "Itálico";
+$a->strings["Underline"] = "Sublinhado";
+$a->strings["Quote"] = "Citação";
+$a->strings["Code"] = "Código";
+$a->strings["Image"] = "Imagem";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Vídeo";
+$a->strings["Preview"] = "Pré-visualização";
+$a->strings["Edit"] = "Editar";
+$a->strings["add star"] = "destacar";
+$a->strings["remove star"] = "remover o destaque";
+$a->strings["toggle star status"] = "ativa/desativa o destaque";
+$a->strings["starred"] = "marcado com estrela";
+$a->strings["add tag"] = "adicionar etiqueta";
+$a->strings["save to folder"] = "salvar na pasta";
+$a->strings["to"] = "para";
+$a->strings["Wall-to-Wall"] = "Mural-para-mural";
+$a->strings["via Wall-To-Wall:"] = "via Mural-para-mural";
+$a->strings["Remove My Account"] = "Remover minha conta";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Isso removerá completamente a sua conta. Uma vez feito isso, não será mais possível recuperá-la.";
+$a->strings["Please enter your password for verification:"] = "Por favor, digite a sua senha para verificação:";
 $a->strings["Friendica Communications Server - Setup"] = "Servidor de Comunicações Friendica - Configuração";
 $a->strings["Could not connect to database."] = "Não foi possível conectar ao banco de dados.";
 $a->strings["Could not create table."] = "Não foi possível criar tabela.";
@@ -1643,114 +758,1023 @@ $a->strings["Url rewrite is working"] = "A reescrita de URLs está funcionando";
 $a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Não foi possível gravar o arquivo de configuração \".htconfig.php\". Por favor, use o texto incluso para criar um arquivo de configuração na raiz da instalação do Friendika em seu servidor web.";
 $a->strings["<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["Number of daily wall messages for %s exceeded. Message failed."] = "O número diário de mensagens do mural de %s foi excedido. Não foi possível enviar a mensagem.";
+$a->strings["Unable to check your home location."] = "Não foi possível verificar a sua localização.";
+$a->strings["No recipient."] = "Nenhum destinatário.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Caso você deseje uma resposta de %s, por favor verifique se as configurações de privacidade em seu site permitem o recebimento de mensagens de remetentes desconhecidos.";
 $a->strings["Help:"] = "Ajuda:";
-$a->strings["Contact settings applied."] = "As configurações do contato foram aplicadas.";
-$a->strings["Contact update failed."] = "Não foi possível atualizar o contato.";
-$a->strings["Repair Contact Settings"] = "Corrigir configurações do contato";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATENÇÃO: Isso é muito avançado</strong>, se você digitar informações incorretas, suas comunicações com esse contato pode parar de funcionar.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Por favor, use o botão 'Voltar' do seu navegador <strong>agora</strong>, caso você não tenha certeza do que está fazendo.";
-$a->strings["Return to contact editor"] = "Voltar ao editor de contatos";
-$a->strings["Account Nickname"] = "Identificação da conta";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - sobrescreve Nome/Identificação";
-$a->strings["Account URL"] = "URL da conta";
-$a->strings["Friend Request URL"] = "URL da requisição de amizade";
-$a->strings["Friend Confirm URL"] = "URL da confirmação de amizade";
-$a->strings["Notification Endpoint URL"] = "URL do ponto final da notificação";
-$a->strings["Poll/Feed URL"] = "URL do captador/fonte de notícias";
-$a->strings["New photo from this URL"] = "Nova imagem desta URL";
-$a->strings["Remote Self"] = "Auto remoto";
-$a->strings["Mirror postings from this contact"] = "Espelhar publicações deste contato";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Marcar este contato como auto remoto fará com que o friendica republique novas entradas deste usuário.";
-$a->strings["No mirroring"] = "";
-$a->strings["Mirror as forwarded posting"] = "";
-$a->strings["Mirror as my own posting"] = "";
-$a->strings["Welcome to Friendica"] = "Bemvindo ao Friendica";
-$a->strings["New Member Checklist"] = "Dicas para os novos membros";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Gostaríamos de oferecer algumas dicas e links para ajudar a tornar a sua experiência agradável. Clique em qualquer item para visitar a página correspondente. Um link para essa página será visível em sua home page por duas semanas após o seu registro inicial e, então, desaparecerá discretamente.";
-$a->strings["Getting Started"] = "Do Início";
-$a->strings["Friendica Walk-Through"] = "Passo-a-passo da friendica";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na sua página <em>Início Rápido</em> - encontre uma introdução rápida ao seu perfil e abas da rede, faça algumas conexões novas, e encontre alguns grupos entrar.";
-$a->strings["Go to Your Settings"] = "Ir para as suas configurações";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Em sua página  <em>Configurações</em> - mude sua senha inicial. Também tome nota de seu Endereço de Identidade. Isso se parece com um endereço de e-mail - e será útil para se fazer amigos na rede social livre.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Revise as outras configurações, em particular as relacionadas a privacidade. Não estar listado no diretório é o equivalente a não ter o seu número na lista telefônica. Normalmente é interessante você estar listado - a não ser que os seu amigos atuais e potenciais saibam exatamente como encontrar você.";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Envie uma foto para o seu perfil, caso ainda não tenha feito isso. Estudos indicam que pessoas que publicam fotos reais delas mesmas têm 10 vezes mais chances de encontrar novos amigos do que as que não o fazem.";
-$a->strings["Edit Your Profile"] = "Editar seu perfil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Edite o seu perfil <strong>padrão</strong> a seu gosto. Revise as configurações de ocultação da sua lista de amigos e do seu perfil de visitantes desconhecidos.";
-$a->strings["Profile Keywords"] = "Palavras-chave do perfil";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Defina algumas palavras-chave públicas para o seu perfil padrão, que descrevam os seus interesses. Nós podemos encontrar outras pessoas com interesses similares e sugerir novas amizades.";
-$a->strings["Connecting"] = "Conexões";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorize o Conector com Facebook, caso você tenha uma conta lá e nós (opcionalmente) importaremos todos os seus amigos e conversas do Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Se</em> esse é o seu servidor pessoal, instalar o complemento do Facebook talvez facilite a transição para a rede social livre.";
-$a->strings["Importing Emails"] = "Importação de e-mails";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Forneça a informação de acesso ao seu e-mail na sua página de Configuração de Conector se você deseja importar e interagir com amigos ou listas de discussão da sua Caixa de Entrada de e-mail";
-$a->strings["Go to Your Contacts Page"] = "Ir para a sua página de contatos";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Sua página de contatos é sua rota para o gerenciamento de amizades e conexão com amigos em outras redes. Geralmente você fornece o endereço deles ou a URL do site na janela de diálogo <em>Adicionar Novo Contato</em>.";
-$a->strings["Go to Your Site's Directory"] = "Ir para o diretório do seu site";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "A página de Diretório permite que você encontre outras pessoas nesta rede ou em outras redes federadas. Procure por um link <em>Conectar</em> ou <em>Seguir</em> no perfil que deseja acompanhar. Forneça o seu Endereço de Identidade próprio, se solicitado.";
-$a->strings["Finding New People"] = "Pesquisar por novas pessoas";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "No painel lateral da página de Contatos existem várias ferramentas para encontrar novos amigos. Você pode descobrir pessoas com os mesmos interesses, procurar por nomes ou interesses e fornecer sugestões baseadas nos relacionamentos da rede. Em um site completamente novo, as sugestões de amizades geralmente começam a ser populadas dentro de 24 horas.";
-$a->strings["Group Your Contacts"] = "Agrupe seus contatos";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Após fazer novas amizades, organize-as em grupos de conversa privados, a partir da barra lateral na sua página de Contatos. A partir daí, você poderá interagir com cada grupo privativamente, na sua página de Rede.";
-$a->strings["Why Aren't My Posts Public?"] = "Por que as minhas publicações não são públicas?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A friendica respeita sua privacidade. Por padrão, suas publicações estarão visíveis apenas para as pessoas que você adicionou como amigos. Para mais informações, veja a página de ajuda, a partir do link acima.";
-$a->strings["Getting Help"] = "Obtendo ajuda";
-$a->strings["Go to the Help Section"] = "Ir para a seção de ajuda";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nossas páginas de <strong>ajuda</strong> podem ser consultadas para mais detalhes sobre características e recursos do programa.";
-$a->strings["Poke/Prod"] = "Cutucar/Incitar";
-$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém";
-$a->strings["Recipient"] = "Destinatário";
-$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário";
-$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada";
-$a->strings["\n\t\tDear $[username],\n\t\t\tYour password has been changed as requested. Please retain this\n\t\tinformation for your records (or change your password immediately to\n\t\tsomething that you will remember).\n\t"] = "";
-$a->strings["Item has been removed."] = "O item foi removido.";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está seguindo %2\$s's %3\$s";
+$a->strings["Help"] = "Ajuda";
+$a->strings["Not Found"] = "Não encontrada";
+$a->strings["Page not found."] = "Página não encontrada.";
 $a->strings["%1\$s welcomes %2\$s"] = "%1\$s dá as boas vinda à %2\$s";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Isso pode acontecer eventualmente se o contato foi solicitado por ambas as pessoas e ele já tinha sido aprovado.";
-$a->strings["Response from remote site was not understood."] = "A resposta do site remoto não foi compreendida.";
-$a->strings["Unexpected response from remote site: "] = "Resposta inesperada do site remoto: ";
-$a->strings["Confirmation completed successfully."] = "A confirmação foi completada com sucesso.";
-$a->strings["Remote site reported: "] = "O site remoto relatou: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Falha temporária. Por favor, aguarde e tente novamente.";
-$a->strings["Introduction failed or was revoked."] = "Ocorreu uma falha na apresentação ou ela foi revogada.";
-$a->strings["Unable to set contact photo."] = "Não foi possível definir a foto do contato.";
-$a->strings["No user record found for '%s' "] = "Não foi encontrado nenhum registro de usuário para '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "A chave de criptografia do nosso site está, aparentemente, bagunçada.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Foi fornecida uma URL em branco ou não foi possível descriptografá-la.";
-$a->strings["Contact record was not found for you on our site."] = "O registro do contato não foi encontrado para você em seu site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "A chave pública do site não está disponível no registro do contato para a URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "O ID fornecido pelo seu sistema é uma duplicata em nosso sistema. Deve funcionar agora, se você tentar de novo.";
-$a->strings["Unable to set your contact credentials on our system."] = "Não foi possível definir suas credenciais de contato no nosso sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Não foi possível atualizar os detalhes do seu perfil em nosso sistema.";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se associou a %2\$s";
-$a->strings["Unable to locate original post."] = "Não foi possível localizar a publicação original.";
-$a->strings["Empty post discarded."] = "A publicação em branco foi descartada.";
-$a->strings["System error. Post not saved."] = "Erro no sistema. A publicação não foi salva.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Essa mensagem foi enviada a você por %s, um membro da rede social Friendica.";
-$a->strings["You may visit them online at %s"] = "Você pode visitá-lo em %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor, entre em contato com o remetente respondendo a esta publicação, caso você não queira mais receber estas mensagens.";
-$a->strings["%s posted an update."] = "%s publicou uma atualização.";
-$a->strings["Image uploaded but image cropping failed."] = "A imagem foi enviada, mas não foi possível cortá-la.";
-$a->strings["Image size reduction [%s] failed."] = "Não foi possível reduzir o tamanho da imagem [%s].";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarregue a página pressionando a tecla Shift ou limpe o cache do navegador caso a nova foto não apareça imediatamente";
-$a->strings["Unable to process image"] = "Não foi possível processar a imagem";
-$a->strings["Upload File:"] = "Enviar arquivo:";
-$a->strings["Select a profile:"] = "Selecione um perfil:";
-$a->strings["Upload"] = "Enviar";
-$a->strings["skip this step"] = "pule esta etapa";
-$a->strings["select a photo from your photo albums"] = "selecione uma foto de um álbum de fotos";
-$a->strings["Crop Image"] = "Cortar a imagem";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajuste o corte da imagem para a melhor visualização.";
-$a->strings["Done Editing"] = "Encerrar a edição";
-$a->strings["Image uploaded successfully."] = "A imagem foi enviada com sucesso.";
-$a->strings["Friends of %s"] = "Amigos de %s";
-$a->strings["No friends to display."] = "Nenhum amigo para exibir.";
-$a->strings["Find on this site"] = "Pesquisar neste site";
-$a->strings["Site Directory"] = "Diretório do site";
-$a->strings["Gender: "] = "Gênero: ";
-$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
-$a->strings["Time Conversion"] = "Conversão de tempo";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
-$a->strings["UTC time: %s"] = "Hora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
-$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
-$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
+$a->strings["Welcome to %s"] = "Bem-vindo(a) a %s";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Lamento, talvez seu envio seja maior do que as configurações do PHP permitem";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou - você tentou enviar um arquivo vazio?";
+$a->strings["File exceeds size limit of %d"] = "O arquivo excedeu o tamanho limite de %d";
+$a->strings["File upload failed."] = "Não foi possível enviar o arquivo.";
+$a->strings["Profile Match"] = "Correspondência de perfil";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Não foi encontrada nenhuma palavra-chave associada a você. Por favor, adicione algumas ao seu perfil padrão.";
+$a->strings["is interested in:"] = "se interessa por:";
+$a->strings["Connect"] = "Conectar";
+$a->strings["link"] = "ligação";
+$a->strings["Not available."] = "Não disponível.";
+$a->strings["Community"] = "Comunidade";
+$a->strings["No results."] = "Nenhum resultado.";
+$a->strings["everybody"] = "todos";
+$a->strings["Additional features"] = "Funcionalidades adicionais";
+$a->strings["Display"] = "Tela";
+$a->strings["Social Networks"] = "Redes Sociais";
+$a->strings["Delegations"] = "Delegações";
+$a->strings["Connected apps"] = "Aplicações conectadas";
+$a->strings["Export personal data"] = "Exportar dados pessoais";
+$a->strings["Remove account"] = "Remover a conta";
+$a->strings["Missing some important data!"] = "Está faltando algum dado importante!";
+$a->strings["Failed to connect with email account using the settings provided."] = "Não foi possível conectar à conta de e-mail com as configurações fornecidas.";
+$a->strings["Email settings updated."] = "As configurações de e-mail foram atualizadas.";
+$a->strings["Features updated"] = "Funcionalidades atualizadas";
+$a->strings["Relocate message has been send to your contacts"] = "A mensagem de relocação foi enviada para seus contatos";
+$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["Wrong password."] = "Senha errada.";
+$a->strings["Password changed."] = "A senha foi modificada.";
+$a->strings["Password update failed. Please try again."] = "Não foi possível atualizar a senha. Por favor, tente novamente.";
+$a->strings[" Please use a shorter name."] = " Por favor, use um nome mais curto.";
+$a->strings[" Name too short."] = " O nome é muito curto.";
+$a->strings["Wrong Password"] = "Senha Errada";
+$a->strings[" Not valid email."] = " Não é um e-mail válido.";
+$a->strings[" Cannot change to that email."] = " Não foi possível alterar para esse e-mail.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "O fórum privado não possui permissões de privacidade. Utilizando o grupo de privacidade padrão.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "O fórum privado não possui permissões de privacidade e nenhum grupo de privacidade padrão.";
+$a->strings["Settings updated."] = "As configurações foram atualizadas.";
+$a->strings["Add application"] = "Adicionar aplicação";
+$a->strings["Consumer Key"] = "Chave do consumidor";
+$a->strings["Consumer Secret"] = "Segredo do consumidor";
+$a->strings["Redirect"] = "Redirecionar";
+$a->strings["Icon url"] = "URL do ícone";
+$a->strings["You can't edit this application."] = "Você não pode editar esta aplicação.";
+$a->strings["Connected Apps"] = "Aplicações conectadas";
+$a->strings["Client key starts with"] = "A chave do cliente inicia com";
+$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"] = "Off";
+$a->strings["On"] = "On";
+$a->strings["Additional Features"] = "Funcionalidades Adicionais";
+$a->strings["Built-in support for %s connectivity is %s"] = "O suporte interno para conectividade de %s está %s";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["enabled"] = "habilitado";
+$a->strings["disabled"] = "desabilitado";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "O acesso ao e-mail está desabilitado neste site.";
+$a->strings["Email/Mailbox Setup"] = "Configurações do e-mail/caixa postal";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Caso você deseje se comunicar com contatos de e-mail usando este serviço (opcional), por favor especifique como se conectar à sua caixa postal.";
+$a->strings["Last successful email check:"] = "Última checagem bem sucedida de e-mail:";
+$a->strings["IMAP server name:"] = "Nome do servidor IMAP:";
+$a->strings["IMAP port:"] = "Porta do IMAP:";
+$a->strings["Security:"] = "Segurança:";
+$a->strings["None"] = "Nenhuma";
+$a->strings["Email login name:"] = "Nome de usuário do e-mail:";
+$a->strings["Email password:"] = "Senha do e-mail:";
+$a->strings["Reply-to address:"] = "Endereço de resposta (Reply-to):";
+$a->strings["Send public posts to all email contacts:"] = "Enviar publicações públicas para todos os contatos de e-mail:";
+$a->strings["Action after import:"] = "Ação após a importação:";
+$a->strings["Mark as seen"] = "Marcar como visto";
+$a->strings["Move to folder"] = "Mover para pasta";
+$a->strings["Move to folder:"] = "Mover para pasta:";
+$a->strings["Display Settings"] = "Configurações de exibição";
+$a->strings["Display Theme:"] = "Tema do perfil:";
+$a->strings["Mobile Theme:"] = "Tema para dispositivos móveis:";
+$a->strings["Update browser every xx seconds"] = "Atualizar o navegador a cada xx segundos";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, não possui máximo";
+$a->strings["Number of items to display per page:"] = "Número de itens a serem exibidos por página:";
+$a->strings["Maximum of 100 items"] = "Máximo de 100 itens";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Número de itens a serem exibidos por página quando visualizando em um dispositivo móvel:";
+$a->strings["Don't show emoticons"] = "Não exibir emoticons";
+$a->strings["Don't show notices"] = "Não mostra avisos";
+$a->strings["Infinite scroll"] = "rolamento infinito";
+$a->strings["Automatic updates only at the top of the network page"] = "Atualizações automáticas só na parte superior da página da rede";
+$a->strings["User Types"] = "Tipos de Usuários";
+$a->strings["Community Types"] = "Tipos de Comunidades";
+$a->strings["Normal Account Page"] = "Página de conta normal";
+$a->strings["This account is a normal personal profile"] = "Essa conta é um perfil pessoal normal";
+$a->strings["Soapbox Page"] = "Página de vitrine";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão somente de leitura";
+$a->strings["Community Forum/Celebrity Account"] = "Conta de fórum de comunidade/celebridade";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Aprova automaticamente todas as solicitações de conexão/amizade como fãs com permissão de leitura e escrita";
+$a->strings["Automatic Friend Page"] = "Página de amigo automático";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Aprovar automaticamente todas as solicitações de conexão/amizade como amigos";
+$a->strings["Private Forum [Experimental]"] = "Fórum privado [Experimental]";
+$a->strings["Private forum - approved members only"] = "Fórum privado - somente membros aprovados";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opcional) Permitir o uso deste OpenID para entrar nesta conta";
+$a->strings["Publish your default profile in your local site directory?"] = "Publicar o seu perfil padrão no diretório local do seu site?";
+$a->strings["No"] = "Não";
+$a->strings["Publish your default profile in the global social directory?"] = "Publicar o seu perfil padrão no diretório social global?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ocultar visualização da sua lista de contatos/amigos no seu perfil padrão? ";
+$a->strings["Hide your profile details from unknown viewers?"] = "Ocultar os detalhes do seu perfil para pessoas desconhecidas?";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Se ativado, postar mensagens públicas no Diáspora e em outras redes não será possível.";
+$a->strings["Allow friends to post to your profile page?"] = "Permitir aos amigos publicarem na sua página de perfil?";
+$a->strings["Allow friends to tag your posts?"] = "Permitir aos amigos etiquetarem suas publicações?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Permitir que você seja sugerido como amigo em potencial para novos membros?";
+$a->strings["Permit unknown people to send you private mail?"] = "Permitir que pessoas desconhecidas lhe enviem mensagens privadas?";
+$a->strings["Profile is <strong>not published</strong>."] = "O perfil <strong>não está publicado</strong>.";
+$a->strings["Your Identity Address is"] = "O endereço da sua identidade é";
+$a->strings["Automatically expire posts after this many days:"] = "Expirar automaticamente publicações após tantos dias:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se deixado em branco, as publicações não irão expirar. Publicações expiradas serão excluídas.";
+$a->strings["Advanced expiration settings"] = "Configurações avançadas de expiração";
+$a->strings["Advanced Expiration"] = "Expiração avançada";
+$a->strings["Expire posts:"] = "Expirar publicações:";
+$a->strings["Expire personal notes:"] = "Expirar notas pessoais:";
+$a->strings["Expire starred posts:"] = "Expirar publicações destacadas:";
+$a->strings["Expire photos:"] = "Expirar fotos:";
+$a->strings["Only expire posts by others:"] = "Expirar somente as publicações de outras pessoas:";
+$a->strings["Account Settings"] = "Configurações da conta";
+$a->strings["Password Settings"] = "Configurações da senha";
+$a->strings["New Password:"] = "Nova senha:";
+$a->strings["Confirm:"] = "Confirme:";
+$a->strings["Leave password fields blank unless changing"] = "Deixe os campos de senha em branco, a não ser que você queira alterá-la";
+$a->strings["Current Password:"] = "Senha Atual:";
+$a->strings["Your current password to confirm the changes"] = "Sua senha atual para confirmar as mudanças";
+$a->strings["Password:"] = "Senha:";
+$a->strings["Basic Settings"] = "Configurações básicas";
+$a->strings["Full Name:"] = "Nome completo:";
+$a->strings["Email Address:"] = "Endereço de e-mail:";
+$a->strings["Your Timezone:"] = "Seu fuso horário:";
+$a->strings["Default Post Location:"] = "Localização padrão de suas publicações:";
+$a->strings["Use Browser Location:"] = "Usar localizador do navegador:";
+$a->strings["Security and Privacy Settings"] = "Configurações de segurança e privacidade";
+$a->strings["Maximum Friend Requests/Day:"] = "Número máximo de requisições de amizade por dia:";
+$a->strings["(to prevent spam abuse)"] = "(para prevenir abuso de spammers)";
+$a->strings["Default Post Permissions"] = "Permissões padrão de publicação";
+$a->strings["(click to open/close)"] = "(clique para abrir/fechar)";
+$a->strings["Show to Groups"] = "Mostre para Grupos";
+$a->strings["Show to Contacts"] = "Mostre para Contatos";
+$a->strings["Default Private Post"] = "Publicação Privada Padrão";
+$a->strings["Default Public Post"] = "Publicação Pública Padrão";
+$a->strings["Default Permissions for New Posts"] = "Permissões Padrão para Publicações Novas";
+$a->strings["Maximum private messages per day from unknown people:"] = "Número máximo de mensagens privadas de pessoas desconhecidas, por dia:";
+$a->strings["Notification Settings"] = "Configurações de notificação";
+$a->strings["By default post a status message when:"] = "Por padrão, publicar uma mensagem de status quando:";
+$a->strings["accepting a friend request"] = "aceitar uma requisição de amizade";
+$a->strings["joining a forum/community"] = "associar-se a um fórum/comunidade";
+$a->strings["making an <em>interesting</em> profile change"] = "fazer uma modificação <em>interessante</em> em seu perfil";
+$a->strings["Send a notification email when:"] = "Enviar um e-mail de notificação sempre que:";
+$a->strings["You receive an introduction"] = "Você recebeu uma apresentação";
+$a->strings["Your introductions are confirmed"] = "Suas apresentações forem confirmadas";
+$a->strings["Someone writes on your profile wall"] = "Alguém escrever no mural do seu perfil";
+$a->strings["Someone writes a followup comment"] = "Alguém comentar a sua mensagem";
+$a->strings["You receive a private message"] = "Você recebeu uma mensagem privada";
+$a->strings["You receive a friend suggestion"] = "Você recebe uma suggestão de amigo";
+$a->strings["You are tagged in a post"] = "Você foi etiquetado em uma publicação";
+$a->strings["You are poked/prodded/etc. in a post"] = "Você está cutucado/incitado/etc. em uma publicação";
+$a->strings["Text-only notification emails"] = "Emails de notificação apenas de texto";
+$a->strings["Send text only notification emails, without the html part"] = "Enviar e-mails de notificação apenas de texto, sem a parte html";
+$a->strings["Advanced Account/Page Type Settings"] = "Conta avançada/Configurações do tipo de página";
+$a->strings["Change the behaviour of this account for special situations"] = "Modificar o comportamento desta conta em situações especiais";
+$a->strings["Relocate"] = "Relocação";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Se você moveu esse perfil de outro servidor e algum dos seus contatos não recebe atualizações, pressione esse botão.";
+$a->strings["Resend relocate message to contacts"] = "Reenviar mensagem de relocação para os contatos";
+$a->strings["This introduction has already been accepted."] = "Esta apresentação já foi aceita.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "A localização do perfil não é válida ou não contém uma informação de perfil.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Aviso: a localização do perfil não possui nenhum nome identificável do seu dono.";
+$a->strings["Warning: profile location has no profile photo."] = "Aviso: a localização do perfil não possui nenhuma foto do perfil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "O parâmetro requerido %d não foi encontrado na localização fornecida",
+       1 => "Os parâmetros requeridos %d não foram encontrados na localização fornecida",
+);
+$a->strings["Introduction complete."] = "A apresentação foi finalizada.";
+$a->strings["Unrecoverable protocol error."] = "Ocorreu um erro irrecuperável de protocolo.";
+$a->strings["Profile unavailable."] = "O perfil não está disponível.";
+$a->strings["%s has received too many connection requests today."] = "%s recebeu solicitações de conexão em excesso hoje.";
+$a->strings["Spam protection measures have been invoked."] = "As medidas de proteção contra spam foram ativadas.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Os amigos foram notificados para tentar novamente em 24 horas.";
+$a->strings["Invalid locator"] = "Localizador inválido";
+$a->strings["Invalid email address."] = "Endereço de e-mail inválido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Essa conta não foi configurada para e-mails. Não foi possível atender à solicitação.";
+$a->strings["Unable to resolve your name at the provided location."] = "Não foi possível encontrar a sua identificação no endereço indicado.";
+$a->strings["You have already introduced yourself here."] = "Você já fez a sua apresentação aqui.";
+$a->strings["Apparently you are already friends with %s."] = "Aparentemente você já é amigo de %s.";
+$a->strings["Invalid profile URL."] = "URL de perfil inválida.";
+$a->strings["Disallowed profile URL."] = "URL de perfil não permitida.";
+$a->strings["Your introduction has been sent."] = "A sua apresentação foi enviada.";
+$a->strings["Please login to confirm introduction."] = "Por favor, autentique-se para confirmar a apresentação.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "A identidade autenticada está incorreta. Por favor, entre como <strong>este</strong> perfil.";
+$a->strings["Hide this contact"] = "Ocultar este contato";
+$a->strings["Welcome home %s."] = "Bem-vindo(a) à sua página pessoal %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Por favor, confirme sua solicitação de apresentação/conexão para %s.";
+$a->strings["Confirm"] = "Confirmar";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Por favor, digite seu 'Endereço de Identificação' a partir de uma das seguintes redes de comunicação suportadas:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Caso você ainda não seja membro da rede social livre, <a href=\"http://dir.friendica.com/siteinfo\">clique aqui para encontrar um site Friendica público e junte-se à nós</a>.";
+$a->strings["Friend/Connection Request"] = "Solicitação de amizade/conexão";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Examplos: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Por favor, entre com as informações solicitadas:";
+$a->strings["Does %s know you?"] = "%s conhece você?";
+$a->strings["Add a personal note:"] = "Adicione uma anotação pessoal:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - 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["Registration successful. Please check your email for further instructions."] = "O registro foi bem sucedido. Por favor, verifique seu e-mail para maiores informações.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Falha ao enviar mensagem de email. Estes são os dados da sua conta:<br> login: %s<br> senha: %s<br><br>Você pode alterar sua senha após fazer o login.";
+$a->strings["Your registration can not be processed."] = "Não foi possível processar o seu registro.";
+$a->strings["Your registration is pending approval by the site owner."] = "A aprovação do seu registro está pendente junto ao administrador do site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Este site excedeu o limite diário permitido para registros de novas contas.\nPor favor tente novamente amanhã.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Você pode (opcionalmente) preencher este formulário via OpenID, fornecendo seu OpenID e clicando em 'Registrar'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se você não está familiarizado com o OpenID, por favor, deixe esse campo em branco e preencha os outros itens.";
+$a->strings["Your OpenID (optional): "] = "Seu OpenID (opcional): ";
+$a->strings["Include your profile in member directory?"] = "Incluir o seu perfil no diretório de membros?";
+$a->strings["Membership on this site is by invitation only."] = "A associação a este site só pode ser feita mediante convite.";
+$a->strings["Your invitation ID: "] = "A ID do seu convite: ";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Seu nome completo (ex: José da Silva): ";
+$a->strings["Your Email Address: "] = "Seu endereço de e-mail: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Selecione uma identificação para o perfil. Ela deve começar com um caractere alfabético. O endereço do seu perfil neste site será '<strong>identificação@\$sitename</strong>'";
+$a->strings["Choose a nickname: "] = "Escolha uma identificação: ";
+$a->strings["Register"] = "Registrar";
+$a->strings["Import"] = "Importar";
+$a->strings["Import your profile to this friendica instance"] = "Importa seu perfil  desta instância do friendica";
+$a->strings["System down for maintenance"] = "Sistema em manutenção";
+$a->strings["Search"] = "Pesquisar";
+$a->strings["Global Directory"] = "Diretório global";
+$a->strings["Find on this site"] = "Pesquisar neste site";
+$a->strings["Site Directory"] = "Diretório do site";
+$a->strings["Age: "] = "Idade: ";
+$a->strings["Gender: "] = "Gênero: ";
+$a->strings["Gender:"] = "Gênero:";
+$a->strings["Status:"] = "Situação:";
+$a->strings["Homepage:"] = "Página web:";
+$a->strings["About:"] = "Sobre:";
+$a->strings["No entries (some entries may be hidden)."] = "Nenhuma entrada (algumas entradas podem estar ocultas).";
+$a->strings["No potential page delegates located."] = "Nenhuma página delegada potencial localizada.";
+$a->strings["Delegate Page Management"] = "Delegar Administração de Página";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegados podem administrar todos os aspectos dessa página/conta exceto por configurações básicas da conta.\nFavor não delegar sua conta pessoal para ninguém que você não confie inteiramente.";
+$a->strings["Existing Page Managers"] = "Administradores de Páginas Existentes";
+$a->strings["Existing Page Delegates"] = "Delegados de Páginas Existentes";
+$a->strings["Potential Delegates"] = "Delegados Potenciais";
+$a->strings["Add"] = "Adicionar";
+$a->strings["No entries."] = "Sem entradas.";
+$a->strings["Common Friends"] = "Amigos em Comum";
+$a->strings["No contacts in common."] = "Nenhum contato em comum.";
+$a->strings["Export account"] = "Exportar conta";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exporta suas informações de conta e contatos. Use para fazer uma cópia de segurança de sua conta e/ou para movê-la para outro servidor.";
+$a->strings["Export all"] = "Exportar tudo";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportar as informações de sua conta, contatos e todos os seus items como JSON. Pode ser um arquivo muito grande, e pode levar bastante tempo. Use isto para fazer uma cópia de segurança completa da sua conta (fotos não são exportadas)";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s atualmente está %2\$s";
+$a->strings["Mood"] = "Humor";
+$a->strings["Set your current mood and tell your friends"] = "Defina o seu humor e conte aos seus amigos";
+$a->strings["Do you really want to delete this suggestion?"] = "Você realmente deseja deletar essa sugestão?";
+$a->strings["Friend Suggestions"] = "Sugestões de amigos";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Não existe nenhuma sugestão disponível. Se este for um site novo, por favor tente novamente em 24 horas.";
+$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
+$a->strings["Profile deleted."] = "O perfil foi excluído.";
+$a->strings["Profile-"] = "Perfil-";
+$a->strings["New profile created."] = "O novo perfil foi criado.";
+$a->strings["Profile unavailable to clone."] = "O perfil não está disponível para clonagem.";
+$a->strings["Profile Name is required."] = "É necessário informar o nome do perfil.";
+$a->strings["Marital Status"] = "Situação amorosa";
+$a->strings["Romantic Partner"] = "Parceiro romântico";
+$a->strings["Likes"] = "Gosta de";
+$a->strings["Dislikes"] = "Não gosta de";
+$a->strings["Work/Employment"] = "Trabalho/emprego";
+$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"] = "Página Principal";
+$a->strings["Interests"] = "Interesses";
+$a->strings["Address"] = "Endereço";
+$a->strings["Location"] = "Localização";
+$a->strings["Profile updated."] = "O perfil foi atualizado.";
+$a->strings[" and "] = " e ";
+$a->strings["public profile"] = "perfil público";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s mudou %2\$s para &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Visite %2\$s de %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s foi atualizado %2\$s, mudando %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Esconder contatos e amigos:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Ocultar sua lista de contatos/amigos dos visitantes no seu perfil?";
+$a->strings["Edit Profile Details"] = "Editar os detalhes do perfil";
+$a->strings["Change Profile Photo"] = "Mudar Foto do Perfil";
+$a->strings["View this profile"] = "Ver este perfil";
+$a->strings["Create a new profile using these settings"] = "Criar um novo perfil usando estas configurações";
+$a->strings["Clone this profile"] = "Clonar este perfil";
+$a->strings["Delete this profile"] = "Excluir este perfil";
+$a->strings["Basic information"] = "Informação básica";
+$a->strings["Profile picture"] = "Foto do perfil";
+$a->strings["Preferences"] = "Preferências";
+$a->strings["Status information"] = "Informação de Status";
+$a->strings["Additional information"] = "Informações adicionais";
+$a->strings["Profile Name:"] = "Nome do perfil:";
+$a->strings["Your Full Name:"] = "Seu nome completo:";
+$a->strings["Title/Description:"] = "Título/Descrição:";
+$a->strings["Your Gender:"] = "Seu gênero:";
+$a->strings["Birthday (%s):"] = "Aniversário (%s):";
+$a->strings["Street Address:"] = "Endereço:";
+$a->strings["Locality/City:"] = "Localidade/Cidade:";
+$a->strings["Postal/Zip Code:"] = "CEP:";
+$a->strings["Country:"] = "País:";
+$a->strings["Region/State:"] = "Região/Estado:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Situação amorosa:";
+$a->strings["Who: (if applicable)"] = "Quem: (se pertinente)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemplos: fulano123, Fulano de Tal, fulano@exemplo.com";
+$a->strings["Since [date]:"] = "Desde [data]:";
+$a->strings["Sexual Preference:"] = "Preferência sexual:";
+$a->strings["Homepage URL:"] = "Endereço do site web:";
+$a->strings["Hometown:"] = "Cidade:";
+$a->strings["Political Views:"] = "Posição política:";
+$a->strings["Religious Views:"] = "Orientação religiosa:";
+$a->strings["Public Keywords:"] = "Palavras-chave públicas:";
+$a->strings["Private Keywords:"] = "Palavras-chave privadas:";
+$a->strings["Likes:"] = "Gosta de:";
+$a->strings["Dislikes:"] = "Não gosta de:";
+$a->strings["Example: fishing photography software"] = "Exemplo: pesca fotografia software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Usado para sugerir amigos em potencial, pode ser visto pelos outros)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Usado na pesquisa de perfis, nunca é exibido para os outros)";
+$a->strings["Tell us about yourself..."] = "Fale um pouco sobre você...";
+$a->strings["Hobbies/Interests"] = "Passatempos/Interesses";
+$a->strings["Contact information and Social Networks"] = "Informações de contato e redes sociais";
+$a->strings["Musical interests"] = "Preferências musicais";
+$a->strings["Books, literature"] = "Livros, literatura";
+$a->strings["Television"] = "Televisão";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/dança/cultura/entretenimento";
+$a->strings["Love/romance"] = "Amor/romance";
+$a->strings["Work/employment"] = "Trabalho/emprego";
+$a->strings["School/education"] = "Escola/educação";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Este é o seu perfil <strong>público</strong>.<br />Ele <strong>pode</strong> estar visível para qualquer um que acesse a Internet.";
+$a->strings["Edit/Manage Profiles"] = "Editar/Gerenciar perfis";
+$a->strings["Change profile photo"] = "Mudar a foto do perfil";
+$a->strings["Create New Profile"] = "Criar um novo perfil";
+$a->strings["Profile Image"] = "Imagem do perfil";
+$a->strings["visible to everybody"] = "visível para todos";
+$a->strings["Edit visibility"] = "Editar a visibilidade";
+$a->strings["Item not found"] = "O item não foi encontrado";
+$a->strings["Edit post"] = "Editar a publicação";
+$a->strings["upload photo"] = "upload de foto";
+$a->strings["Attach file"] = "Anexar arquivo";
+$a->strings["attach file"] = "anexar arquivo";
+$a->strings["web link"] = "link web";
+$a->strings["Insert video link"] = "Inserir link de vídeo";
+$a->strings["video link"] = "link de vídeo";
+$a->strings["Insert audio link"] = "Inserir link de áudio";
+$a->strings["audio link"] = "link de áudio";
+$a->strings["Set your location"] = "Definir sua localização";
+$a->strings["set location"] = "configure localização";
+$a->strings["Clear browser location"] = "Limpar a localização do navegador";
+$a->strings["clear location"] = "apague localização";
+$a->strings["Permission settings"] = "Configurações de permissão";
+$a->strings["CC: email addresses"] = "CC: endereço de e-mail";
+$a->strings["Public post"] = "Publicação pública";
+$a->strings["Set title"] = "Definir o título";
+$a->strings["Categories (comma-separated list)"] = "Categorias (lista separada por vírgulas)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Por exemplo: joao@exemplo.com, maria@exemplo.com";
+$a->strings["This is Friendica, version"] = "Este é o Friendica, versão";
+$a->strings["running at web location"] = "sendo executado no endereço web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Por favor, visite <a href=\"http://friendica.com\">friendica.com</a> para aprender mais sobre o projeto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Relatos e acompanhamentos de erros podem ser encontrados em";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Sugestões, elogios, doações, etc. - favor enviar e-mail para \"Info\" arroba Friendica - ponto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugins/complementos/aplicações instaladas:";
+$a->strings["No installed plugins/addons/apps"] = "Nenhum plugin/complemento/aplicativo instalado";
+$a->strings["Authorize application connection"] = "Autorizar a conexão com a aplicação";
+$a->strings["Return to your app and insert this Securty Code:"] = "Volte para a sua aplicação e digite este código de segurança:";
+$a->strings["Please login to continue."] = "Por favor, autentique-se para continuar.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Deseja autorizar esta aplicação a acessar suas publicações e contatos e/ou criar novas publicações para você?";
+$a->strings["Remote privacy information not available."] = "Não existe informação disponível sobre a privacidade remota.";
+$a->strings["Visible to:"] = "Visível para:";
+$a->strings["Personal Notes"] = "Notas pessoais";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ H:i";
+$a->strings["Time Conversion"] = "Conversão de tempo";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica provê esse serviço para compartilhar eventos com outras redes e amigos em fuso-horários desconhecidos.";
+$a->strings["UTC time: %s"] = "Hora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso horário atual: %s";
+$a->strings["Converted localtime: %s"] = "Horário local convertido: %s";
+$a->strings["Please select your timezone:"] = "Por favor, selecione seu fuso horário:";
+$a->strings["Poke/Prod"] = "Cutucar/Incitar";
+$a->strings["poke, prod or do other things to somebody"] = "Cutuca, incita ou faz outras coisas com alguém";
+$a->strings["Recipient"] = "Destinatário";
+$a->strings["Choose what you wish to do to recipient"] = "Selecione o que você deseja fazer com o destinatário";
+$a->strings["Make this post private"] = "Fazer com que essa publicação se torne privada";
+$a->strings["Total invitation limit exceeded."] = "Limite de convites totais excedido.";
+$a->strings["%s : Not a valid email address."] = "%s : Não é um endereço de e-mail válido.";
+$a->strings["Please join us on Friendica"] = "Por favor, junte-se à nós na Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite de convites ultrapassado. Favor contactar o administrador do sítio.";
+$a->strings["%s : Message delivery failed."] = "%s : Não foi possível enviar a mensagem.";
+$a->strings["%d message sent."] = array(
+       0 => "%d mensagem enviada.",
+       1 => "%d mensagens enviadas.",
+);
+$a->strings["You have no more invitations available"] = "Você não possui mais convites disponíveis";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visite %s para obter uma lista de sites públicos onde você pode se cadastrar. Membros da friendica podem se conectar, mesmo que estejam em sites separados. Além disso você também pode se conectar com membros de várias outras redes sociais.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Para aceitar esse convite, por favor cadastre-se em %s ou qualquer outro site friendica público.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Os sites friendica estão todos interconectados para criar uma grande rede social com foco na privacidade e controlada por seus membros, que também podem se conectar com várias redes sociais tradicionais. Dê uma olhada em %s para uma lista de sites friendica onde você pode se cadastrar.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Desculpe, mas esse sistema não está configurado para conectar-se com outros sites públicos nem permite convidar novos membros.";
+$a->strings["Send invitations"] = "Enviar convites.";
+$a->strings["Enter email addresses, one per line:"] = "Digite os endereços de e-mail, um por linha:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Você está convidado a se juntar a mim e outros amigos em friendica - e também nos ajudar a criar uma experiência social melhor na web.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Você preciso informar este código de convite: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Após você se registrar, por favor conecte-se comigo através da minha página de perfil em:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Para mais informações sobre o projeto Friendica e porque nós achamos que ele é importante, por favor visite-nos em http://friendica.com.";
+$a->strings["Photo Albums"] = "Álbuns de fotos";
+$a->strings["Contact Photos"] = "Fotos dos contatos";
+$a->strings["Upload New Photos"] = "Enviar novas fotos";
+$a->strings["Contact information unavailable"] = "A informação de contato não está disponível";
+$a->strings["Album not found."] = "O álbum não foi encontrado.";
+$a->strings["Delete Album"] = "Excluir o álbum";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Você realmente deseja deletar esse álbum de fotos e todas as suas fotos?";
+$a->strings["Delete Photo"] = "Excluir a foto";
+$a->strings["Do you really want to delete this photo?"] = "Você realmente deseja deletar essa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s foi marcado em %2\$s por %3\$s";
+$a->strings["a photo"] = "uma foto";
+$a->strings["Image exceeds size limit of "] = "A imagem excede o tamanho máximo de ";
+$a->strings["Image file is empty."] = "O arquivo de imagem está vazio.";
+$a->strings["No photos selected"] = "Não foi selecionada nenhuma foto";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Você está usando %1$.2f Mbytes dos %2$.2f Mbytes liberados para armazenamento de fotos.";
+$a->strings["Upload Photos"] = "Enviar fotos";
+$a->strings["New album name: "] = "Nome do novo álbum: ";
+$a->strings["or existing album name: "] = "ou o nome de um álbum já existente: ";
+$a->strings["Do not show a status post for this upload"] = "Não exiba uma publicação de status para este envio";
+$a->strings["Permissions"] = "Permissões";
+$a->strings["Private Photo"] = "Foto Privada";
+$a->strings["Public Photo"] = "Foto Pública";
+$a->strings["Edit Album"] = "Editar o álbum";
+$a->strings["Show Newest First"] = "Exibir as mais recentes primeiro";
+$a->strings["Show Oldest First"] = "Exibir as mais antigas primeiro";
+$a->strings["View Photo"] = "Ver a foto";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Permissão negada. O acesso a este item pode estar restrito.";
+$a->strings["Photo not available"] = "A foto não está disponível";
+$a->strings["View photo"] = "Ver a imagem";
+$a->strings["Edit photo"] = "Editar a foto";
+$a->strings["Use as profile photo"] = "Usar como uma foto de perfil";
+$a->strings["View Full Size"] = "Ver no tamanho real";
+$a->strings["Tags: "] = "Etiquetas: ";
+$a->strings["[Remove any tag]"] = "[Remover qualquer etiqueta]";
+$a->strings["Rotate CW (right)"] = "Rotacionar para direita";
+$a->strings["Rotate CCW (left)"] = "Rotacionar para esquerda";
+$a->strings["New album name"] = "Novo nome para o álbum";
+$a->strings["Caption"] = "Legenda";
+$a->strings["Add a Tag"] = "Adicionar uma etiqueta";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Por exemplo: @joao, @Joao_da_Silva, @joao@exemplo.com, #Minas_Gerais, #acampamento";
+$a->strings["Private photo"] = "Foto privada";
+$a->strings["Public photo"] = "Foto pública";
+$a->strings["Share"] = "Compartilhar";
+$a->strings["Recent Photos"] = "Fotos recentes";
+$a->strings["Account approved."] = "A conta foi aprovada.";
+$a->strings["Registration revoked for %s"] = "O registro de %s foi revogado";
+$a->strings["Please login."] = "Por favor, autentique-se.";
+$a->strings["Move account"] = "Mover conta";
+$a->strings["You can import an account from another Friendica server."] = "Você pode importar um conta de outro sevidor Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Você precisa exportar sua conta de um servidor antigo e fazer o upload aqui. Nós recriaremos sua conta antiga aqui com todos os seus contatos. Nós também tentaremos informar seus amigos que você se mudou para cá.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Esse recurso é experimental. Nós não podemos importar contatos de uma rede OStatus (statusnet/identi.ca) ou do Diaspora";
+$a->strings["Account file"] = "Arquivo de conta";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Para exportar a sua conta, entre em \"Configurações->Exportar dados pessoais\" e selecione \"Exportar conta\"";
+$a->strings["Item not available."] = "O item não está disponível.";
+$a->strings["Item was not found."] = "O item não foi encontrado.";
+$a->strings["Delete this item?"] = "Excluir este item?";
+$a->strings["show fewer"] = "exibir menos";
+$a->strings["Update %s failed. See error logs."] = "Atualização %s falhou. Vide registro de erros (log).";
+$a->strings["Create a New Account"] = "Criar uma nova conta";
+$a->strings["Logout"] = "Sair";
+$a->strings["Login"] = "Entrar";
+$a->strings["Nickname or Email address: "] = "Identificação ou endereço de e-mail: ";
+$a->strings["Password: "] = "Senha: ";
+$a->strings["Remember me"] = "Lembre-se de mim";
+$a->strings["Or login using OpenID: "] = "Ou login usando OpendID:";
+$a->strings["Forgot your password?"] = "Esqueceu a sua senha?";
+$a->strings["Website Terms of Service"] = "Termos de Serviço do Website";
+$a->strings["terms of service"] = "termos de serviço";
+$a->strings["Website Privacy Policy"] = "Política de Privacidade do Website";
+$a->strings["privacy policy"] = "política de privacidade";
+$a->strings["Requested account is not available."] = "Conta solicitada não disponível";
+$a->strings["Edit profile"] = "Editar perfil";
+$a->strings["Message"] = "Mensagem";
+$a->strings["Profiles"] = "Perfis";
+$a->strings["Manage/edit profiles"] = "Gerenciar/editar perfis";
+$a->strings["Network:"] = "Rede:";
+$a->strings["g A l F d"] = "G l d F";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[hoje]";
+$a->strings["Birthday Reminders"] = "Lembretes de aniversário";
+$a->strings["Birthdays this week:"] = "Aniversários nesta semana:";
+$a->strings["[No description]"] = "[Sem descrição]";
+$a->strings["Event Reminders"] = "Lembretes de eventos";
+$a->strings["Events this week:"] = "Eventos esta semana:";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Mensagem de Estado (status) e Publicações";
+$a->strings["Profile Details"] = "Detalhe do Perfil";
+$a->strings["Videos"] = "Vídeos";
+$a->strings["Events and Calendar"] = "Eventos e Agenda";
+$a->strings["Only You Can See This"] = "Somente Você Pode Ver Isso";
+$a->strings["This entry was edited"] = "Essa entrada foi editada";
+$a->strings["ignore thread"] = "ignorar tópico";
+$a->strings["unignore thread"] = "deixar de ignorar tópico";
+$a->strings["toggle ignore status"] = "alternar status ignorar";
+$a->strings["ignored"] = "Ignorado";
+$a->strings["Categories:"] = "Categorias:";
+$a->strings["Filed under:"] = "Arquivado sob:";
+$a->strings["via"] = "via";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tOs desenvolvedores de Friendica lançaram recentemente uma atualização %s,\n\t\t\tmas quando tentei instalá-la, algo deu terrivelmente errado.\n\t\t\tIsso precisa ser corrigido em breve e eu não posso fazer isso sozinho. Por favor, contate um\n\t\t\tdesenvolvedor da Friendica se você não pode me ajudar sozinho. Meu banco de dados pode ser inválido.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "A mensagem de erro é\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Foram encontrados erros durante a criação das tabelas do banco de dados.";
+$a->strings["Errors encountered performing database changes."] = "Erros encontrados realizando mudanças no banco de dados.";
+$a->strings["Logged out."] = "Saiu.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Foi encontrado um erro ao tentar conectar usando o OpenID que você forneceu. Por favor, verifique se sua ID está escrita corretamente.";
+$a->strings["The error message was:"] = "A mensagem de erro foi:";
+$a->strings["Add New Contact"] = "Adicionar Contato Novo";
+$a->strings["Enter address or web location"] = "Forneça endereço ou localização web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Por exemplo: joao@exemplo.com, http://exemplo.com/maria";
+$a->strings["%d invitation available"] = array(
+       0 => "%d convite disponível",
+       1 => "%d convites disponíveis",
+);
+$a->strings["Find People"] = "Pesquisar por pessoas";
+$a->strings["Enter name or interest"] = "Fornecer nome ou interesse";
+$a->strings["Connect/Follow"] = "Conectar-se/acompanhar";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Examplos: Robert Morgenstein, Fishing";
+$a->strings["Similar Interests"] = "Interesses Parecidos";
+$a->strings["Random Profile"] = "Perfil Randômico";
+$a->strings["Invite Friends"] = "Convidar amigos";
+$a->strings["Networks"] = "Redes";
+$a->strings["All Networks"] = "Todas as redes";
+$a->strings["Saved Folders"] = "Pastas salvas";
+$a->strings["Everything"] = "Tudo";
+$a->strings["Categories"] = "Categorias";
+$a->strings["General Features"] = "Funcionalidades Gerais";
+$a->strings["Multiple Profiles"] = "Perfís Múltiplos";
+$a->strings["Ability to create multiple profiles"] = "Capacidade de criar perfis múltiplos";
+$a->strings["Post Composition Features"] = "Funcionalidades de Composição de Publicações";
+$a->strings["Richtext Editor"] = "Editor Richtext";
+$a->strings["Enable richtext editor"] = "Habilite editor richtext";
+$a->strings["Post Preview"] = "Pré-visualização da Publicação";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permite pré-visualizar publicações e comentários antes de publicá-los";
+$a->strings["Auto-mention Forums"] = "Auto-menção Fóruns";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Adiciona/Remove menções quando uma página de fórum é selecionada/deselecionada na janela ACL";
+$a->strings["Network Sidebar Widgets"] = "Widgets da Barra Lateral da Rede";
+$a->strings["Search by Date"] = "Buscar por Data";
+$a->strings["Ability to select posts by date ranges"] = "Capacidade de selecionar publicações por intervalos de data";
+$a->strings["Group Filter"] = "Filtrar Grupo";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Habilita widget para mostrar publicações da Rede somente de grupos selecionados";
+$a->strings["Network Filter"] = "Filtrar Rede";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Habilita widget para mostrar publicações da Rede de redes selecionadas";
+$a->strings["Save search terms for re-use"] = "Guarde as palavras-chaves para reuso";
+$a->strings["Network Tabs"] = "Abas da Rede";
+$a->strings["Network Personal Tab"] = "Aba Pessoal da Rede";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar aba para mostrar apenas as publicações da Rede que você tenha interagido";
+$a->strings["Network New Tab"] = "Aba Nova da Rede";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Habilite aba para mostra apenas publicações da Rede novas (das últimas 12 horas)";
+$a->strings["Network Shared Links Tab"] = "Aba de Links Compartilhados da Rede";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Habilite aba para mostrar somente publicações da Rede que contenham links";
+$a->strings["Post/Comment Tools"] = "Ferramentas de Publicação/Comentário";
+$a->strings["Multiple Deletion"] = "Deleção Multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Selecione e delete múltiplas publicações/comentário imediatamente";
+$a->strings["Edit Sent Posts"] = "Editar Publicações Enviadas";
+$a->strings["Edit and correct posts and comments after sending"] = "Editar e corrigir publicações e comentários após envio";
+$a->strings["Tagging"] = "Etiquetagem";
+$a->strings["Ability to tag existing posts"] = "Capacidade de colocar etiquetas em publicações existentes";
+$a->strings["Post Categories"] = "Categorias de Publicações";
+$a->strings["Add categories to your posts"] = "Adicione Categorias ás Publicações";
+$a->strings["Ability to file posts under folders"] = "Capacidade de arquivar publicações em pastas";
+$a->strings["Dislike Posts"] = "Desgostar de publicações";
+$a->strings["Ability to dislike posts/comments"] = "Capacidade de desgostar de publicações/comentários";
+$a->strings["Star Posts"] = "Destacar publicações";
+$a->strings["Ability to mark special posts with a star indicator"] = "Capacidade de marcar publicações especiais com uma estrela indicadora";
+$a->strings["Mute Post Notifications"] = "Silenciar Notificações de Postagem";
+$a->strings["Ability to mute notifications for a thread"] = "Habilitar notificação silenciosa para a tarefa";
+$a->strings["Connect URL missing."] = "URL de conexão faltando.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Este site não está configurado para permitir comunicações com outras redes.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Não foi descoberto nenhum protocolo de comunicação ou fonte de notícias compatível.";
+$a->strings["The profile address specified does not provide adequate information."] = "O endereço de perfil especificado não fornece informação adequada.";
+$a->strings["An author or name was not found."] = "Não foi encontrado nenhum autor ou nome.";
+$a->strings["No browser URL could be matched to this address."] = "Não foi possível encontrar nenhuma URL de navegação neste endereço.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Não foi possível  casa o estilo @ de Endereço de Identidade com um protocolo conhecido ou contato de email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Use mailto: antes do endereço para forçar a checagem de email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "O endereço de perfil especificado pertence a uma rede que foi desabilitada neste site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Essa pessoa não poderá receber notificações diretas/pessoais de você.";
+$a->strings["Unable to retrieve contact information."] = "Não foi possível recuperar a informação do contato.";
+$a->strings["following"] = "acompanhando";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Um grupo com esse nome, anteriormente excluído, foi reativado. Permissões de itens já existentes <strong>poderão</strong> ser aplicadas a esse grupo e qualquer futuros membros. Se não é essa a sua intenção, favor criar outro grupo com um nome diferente.";
+$a->strings["Default privacy group for new contacts"] = "Grupo de privacidade padrão para novos contatos";
+$a->strings["Everybody"] = "Todos";
+$a->strings["edit"] = "editar";
+$a->strings["Edit group"] = "Editar grupo";
+$a->strings["Create a new group"] = "Criar um novo grupo";
+$a->strings["Contacts not in any group"] = "Contatos não estão dentro de nenhum grupo";
+$a->strings["Miscellaneous"] = "Miscelânea";
+$a->strings["year"] = "ano";
+$a->strings["month"] = "mês";
+$a->strings["day"] = "dia";
+$a->strings["never"] = "nunca";
+$a->strings["less than a second ago"] = "menos de um segundo atrás";
+$a->strings["years"] = "anos";
+$a->strings["months"] = "meses";
+$a->strings["week"] = "semana";
+$a->strings["weeks"] = "semanas";
+$a->strings["days"] = "dias";
+$a->strings["hour"] = "hora";
+$a->strings["hours"] = "horas";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minutos";
+$a->strings["second"] = "segundo";
+$a->strings["seconds"] = "segundos";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s atrás";
+$a->strings["%s's birthday"] = "aniversários de %s's";
+$a->strings["Happy Birthday %s"] = "Feliz Aniversário %s";
+$a->strings["Visible to everybody"] = "Visível para todos";
+$a->strings["show"] = "exibir";
+$a->strings["don't show"] = "não exibir";
+$a->strings["[no subject]"] = "[sem assunto]";
+$a->strings["stopped following"] = "parou de acompanhar";
+$a->strings["Poke"] = "Cutucar";
+$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["Drop Contact"] = "Excluir o contato";
+$a->strings["Send PM"] = "Enviar MP";
+$a->strings["Welcome "] = "Bem-vindo(a) ";
+$a->strings["Please upload a profile photo."] = "Por favor, envie uma foto para o perfil.";
+$a->strings["Welcome back "] = "Bem-vindo(a) de volta ";
+$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."] = "O token de segurança do formulário não estava correto. Isso provavelmente aconteceu porque o formulário ficou aberto por muito tempo (>3 horas) antes da sua submissão.";
+$a->strings["event"] = "evento";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s cutucou %2\$s";
+$a->strings["poked"] = "cutucado";
+$a->strings["post/item"] = "postagem/item";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s marcou %3\$s de %2\$s como favorito";
+$a->strings["remove"] = "remover";
+$a->strings["Delete Selected Items"] = "Excluir os itens selecionados";
+$a->strings["Follow Thread"] = "Seguir o Thread";
+$a->strings["%s likes this."] = "%s gostou disso.";
+$a->strings["%s doesn't like this."] = "%s não gostou disso.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d pessoas</span> gostaram disso";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d pessoas</span> não gostaram disso";
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = ", e mais %d outras pessoas";
+$a->strings["%s like this."] = "%s gostaram disso.";
+$a->strings["%s don't like this."] = "%s não gostaram disso.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visível para <strong>todos</strong>";
+$a->strings["Please enter a video link/URL:"] = "Favor fornecer um link/URL de vídeo";
+$a->strings["Please enter an audio link/URL:"] = "Favor fornecer um link/URL de áudio";
+$a->strings["Tag term:"] = "Etiqueta:";
+$a->strings["Where are you right now?"] = "Onde você está agora?";
+$a->strings["Delete item(s)?"] = "Deletar item(s)?";
+$a->strings["Post to Email"] = "Enviar por e-mail";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores desabilitados, desde \"%s\" está habilitado.";
+$a->strings["permissions"] = "permissões";
+$a->strings["Post to Groups"] = "Postar em Grupos";
+$a->strings["Post to Contacts"] = "Publique para Contatos";
+$a->strings["Private post"] = "Publicação privada";
+$a->strings["view full size"] = "ver na tela inteira";
+$a->strings["newer"] = "mais recente";
+$a->strings["older"] = "antigo";
+$a->strings["prev"] = "anterior";
+$a->strings["first"] = "primeiro";
+$a->strings["last"] = "último";
+$a->strings["next"] = "próximo";
+$a->strings["No contacts"] = "Nenhum contato";
+$a->strings["%d Contact"] = array(
+       0 => "%d contato",
+       1 => "%d contatos",
+);
+$a->strings["poke"] = "cutucar";
+$a->strings["ping"] = "ping";
+$a->strings["pinged"] = "pingado";
+$a->strings["prod"] = "incentivar";
+$a->strings["prodded"] = "incentivado";
+$a->strings["slap"] = "bater";
+$a->strings["slapped"] = "batido";
+$a->strings["finger"] = "apontar";
+$a->strings["fingered"] = "apontado";
+$a->strings["rebuff"] = "rejeite";
+$a->strings["rebuffed"] = "rejeitado";
+$a->strings["happy"] = "feliz";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "desencanado";
+$a->strings["tired"] = "cansado";
+$a->strings["perky"] = "audacioso";
+$a->strings["angry"] = "chateado";
+$a->strings["stupified"] = "estupefato";
+$a->strings["puzzled"] = "confuso";
+$a->strings["interested"] = "interessado";
+$a->strings["bitter"] = "rancoroso";
+$a->strings["cheerful"] = "jovial";
+$a->strings["alive"] = "vivo";
+$a->strings["annoyed"] = "incomodado";
+$a->strings["anxious"] = "ansioso";
+$a->strings["cranky"] = "excêntrico";
+$a->strings["disturbed"] = "perturbado";
+$a->strings["frustrated"] = "frustrado";
+$a->strings["motivated"] = "motivado";
+$a->strings["relaxed"] = "relaxado";
+$a->strings["surprised"] = "surpreso";
+$a->strings["Monday"] = "Segunda";
+$a->strings["Tuesday"] = "Terça";
+$a->strings["Wednesday"] = "Quarta";
+$a->strings["Thursday"] = "Quinta";
+$a->strings["Friday"] = "Sexta";
+$a->strings["Saturday"] = "Sábado";
+$a->strings["Sunday"] = "Domingo";
+$a->strings["January"] = "Janeiro";
+$a->strings["February"] = "Fevereiro";
+$a->strings["March"] = "Março";
+$a->strings["April"] = "Abril";
+$a->strings["May"] = "Maio";
+$a->strings["June"] = "Junho";
+$a->strings["July"] = "Julho";
+$a->strings["August"] = "Agosto";
+$a->strings["September"] = "Setembro";
+$a->strings["October"] = "Outubro";
+$a->strings["November"] = "Novembro";
+$a->strings["December"] = "Dezembro";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "Clique para abrir/fechar";
+$a->strings["default"] = "padrão";
+$a->strings["Select an alternate language"] = "Selecione um idioma alternativo";
+$a->strings["activity"] = "atividade";
+$a->strings["post"] = "publicação";
+$a->strings["Item filed"] = "O item foi arquivado";
+$a->strings["Image/photo"] = "Imagem/foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> escreveu a seguinte <a href=\"%s\" target=\"_blank\">publicação</a>";
+$a->strings["$1 wrote:"] = "$1 escreveu:";
+$a->strings["Encrypted content"] = "Conteúdo criptografado";
+$a->strings["(no subject)"] = "(sem assunto)";
+$a->strings["noreply"] = "naoresponda";
+$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["Unknown | Not categorised"] = "Desconhecido | Não categorizado";
+$a->strings["Block immediately"] = "Bloquear imediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Dissimulado, spammer, propagandista";
+$a->strings["Known to me, but no opinion"] = "Eu conheço, mas não possuo nenhuma opinião acerca";
+$a->strings["OK, probably harmless"] = "Ok, provavelmente inofensivo";
+$a->strings["Reputable, has my trust"] = "Boa reputação, tem minha confiança";
+$a->strings["Weekly"] = "Semanalmente";
+$a->strings["Monthly"] = "Mensalmente";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Conector do Diáspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings[" on Last.fm"] = "na Last.fm";
+$a->strings["Starts:"] = "Início:";
+$a->strings["Finishes:"] = "Término:";
+$a->strings["j F, Y"] = "j de F, Y";
+$a->strings["j F"] = "j de F";
+$a->strings["Birthday:"] = "Aniversário:";
+$a->strings["Age:"] = "Idade:";
+$a->strings["for %1\$d %2\$s"] = "para %1\$d %2\$s";
+$a->strings["Tags:"] = "Etiquetas:";
+$a->strings["Religion:"] = "Religião:";
+$a->strings["Hobbies/Interests:"] = "Passatempos/Interesses:";
+$a->strings["Contact information and Social Networks:"] = "Informações de contato e redes sociais:";
+$a->strings["Musical interests:"] = "Preferências musicais:";
+$a->strings["Books, literature:"] = "Livros, literatura:";
+$a->strings["Television:"] = "Televisão:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filmes/dança/cultura/entretenimento:";
+$a->strings["Love/Romance:"] = "Amor/romance:";
+$a->strings["Work/employment:"] = "Trabalho/emprego:";
+$a->strings["School/education:"] = "Escola/educação:";
+$a->strings["Click here to upgrade."] = "Clique aqui para atualização (upgrade).";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Essa ação excede o limite definido para o seu plano de assinatura.";
+$a->strings["This action is not available under your subscription plan."] = "Essa ação não está disponível em seu plano de assinatura.";
+$a->strings["End this session"] = "Terminar esta sessão";
+$a->strings["Your posts and conversations"] = "Suas publicações e conversas";
+$a->strings["Your profile page"] = "Sua página de perfil";
+$a->strings["Your photos"] = "Suas fotos";
+$a->strings["Your videos"] = "Seus vídeos";
+$a->strings["Your events"] = "Seus eventos";
+$a->strings["Personal notes"] = "Suas anotações pessoais";
+$a->strings["Your personal notes"] = "Suas anotações pessoais";
+$a->strings["Sign in"] = "Entrar";
+$a->strings["Home Page"] = "Página pessoal";
+$a->strings["Create an account"] = "Criar uma conta";
+$a->strings["Help and documentation"] = "Ajuda e documentação";
+$a->strings["Apps"] = "Aplicativos";
+$a->strings["Addon applications, utilities, games"] = "Complementos, utilitários, jogos";
+$a->strings["Search site content"] = "Pesquisar conteúdo no site";
+$a->strings["Conversations on this site"] = "Conversas neste site";
+$a->strings["Directory"] = "Diretório";
+$a->strings["People directory"] = "Diretório de pessoas";
+$a->strings["Information"] = "Informação";
+$a->strings["Information about this friendica instance"] = "Informação sobre esta instância do friendica";
+$a->strings["Conversations from your friends"] = "Conversas dos seus amigos";
+$a->strings["Network Reset"] = "Reiniciar Rede";
+$a->strings["Load Network page with no filters"] = "Carregar página Rede sem filtros";
+$a->strings["Friend Requests"] = "Requisições de Amizade";
+$a->strings["See all notifications"] = "Ver todas notificações";
+$a->strings["Mark all system notifications seen"] = "Marcar todas as notificações de sistema como vistas";
+$a->strings["Private mail"] = "Mensagem privada";
+$a->strings["Inbox"] = "Recebidas";
+$a->strings["Outbox"] = "Enviadas";
+$a->strings["Manage"] = "Gerenciar";
+$a->strings["Manage other pages"] = "Gerenciar outras páginas";
+$a->strings["Account settings"] = "Configurações da conta";
+$a->strings["Manage/Edit Profiles"] = "Administrar/Editar Perfis";
+$a->strings["Manage/edit friends and contacts"] = "Gerenciar/editar amigos e contatos";
+$a->strings["Site setup and configuration"] = "Configurações do site";
+$a->strings["Navigation"] = "Navegação";
+$a->strings["Site map"] = "Mapa do Site";
+$a->strings["User not found."] = "Usuário não encontrado.";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "O limite diário de postagem de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem semanal de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "O limite de postagem mensal de %d mensagens foi atingido. O post foi rejeitado.";
+$a->strings["There is no status with this id."] = "Não existe status com esse id.";
+$a->strings["There is no conversation with this id."] = "Não existe conversas com esse id.";
+$a->strings["Invalid request."] = "Solicitação inválida.";
+$a->strings["Invalid item."] = "Ítem inválido.";
+$a->strings["Invalid action. "] = "Ação inválida.";
+$a->strings["DB error"] = "Erro do Banco de Dados";
+$a->strings["An invitation is required."] = "É necessário um convite.";
+$a->strings["Invitation could not be verified."] = "Não foi possível verificar o convite.";
+$a->strings["Invalid OpenID url"] = "A URL do OpenID é inválida";
+$a->strings["Please enter the required information."] = "Por favor, forneça a informação solicitada.";
+$a->strings["Please use a shorter name."] = "Por favor, use um nome mais curto.";
+$a->strings["Name too short."] = "O nome é muito curto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Isso não parece ser o seu nome completo (Nome Sobrenome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "O domínio do seu e-mail não está entre os permitidos neste site.";
+$a->strings["Not a valid email address."] = "Não é um endereço de e-mail válido.";
+$a->strings["Cannot use that email."] = "Não é possível usar esse e-mail.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "A sua identificação pode conter somente os caracteres \"a-z\", \"0-9\", \"-\", e \"_\", além disso, deve começar com uma letra.";
+$a->strings["Nickname is already registered. Please choose another."] = "Esta identificação já foi registrada. Por favor, escolha outra.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Essa identificação já foi registrada e não pode ser reutilizada. Por favor, escolha outra.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRO GRAVE: Não foi possível gerar as chaves de segurança.";
+$a->strings["An error occurred during registration. Please try again."] = "Ocorreu um erro durante o registro. Por favor, tente novamente.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Ocorreu um erro na criação do seu perfil padrão. Por favor, tente novamente.";
+$a->strings["Friends"] = "Amigos";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tCaro %1\$s,\n\t\t\tObrigado por se cadastrar em %2\$s. Sua conta foi criada.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tOs dados de login são os seguintes:\n\t\t\tLocal do Site:\t%3\$s\n\t\t\tNome de Login:\t%1\$s\n\t\t\tSenha:\t%5\$s\n\n\t\tVocê pode alterar sua senha na página de \"Configurações\" da sua conta após fazer o login\n\n\t\tPor favor, dedique alguns minutos na página para rever as outras configurações da sua conta.\n\n\t\tTalvez você também queira incluir algumas informações básicas adicionais ao seu perfil padrão\n\t\t(na página de \"Perfis\") para que outras pessoas possam encontrá-lo com facilidade.\n\n\t\tRecomendamos que inclua seu nome completo, adicione uma foto do perfil,\n\t\tadicionar algumas \"palavras-chave\" (muito útil para fazer novas amizades) - e\n\t\ttalvez em que pais você mora; se você não quiser ser mais específico \n\t\tdo que isso.\n\n\t\tNós respeitamos plenamente seu direito à privacidade, e nenhum desses itens são necessários.\n\t\tSe você é novo por aqui e não conheço ninguém, eles podem ajuda-lo a fazer novas e interessantes amizades.\n\n\n\t\tObrigado e bem-vindo a %2\$s.";
+$a->strings["Sharing notification from Diaspora network"] = "Notificação de compartilhamento da rede Diaspora";
+$a->strings["Attachments:"] = "Anexos:";
+$a->strings["Do you really want to delete this item?"] = "Você realmente deseja deletar esse item?";
+$a->strings["Archives"] = "Arquivos";
+$a->strings["Male"] = "Masculino";
+$a->strings["Female"] = "Feminino";
+$a->strings["Currently Male"] = "Atualmente masculino";
+$a->strings["Currently Female"] = "Atualmente feminino";
+$a->strings["Mostly Male"] = "Masculino a maior parte do tempo";
+$a->strings["Mostly Female"] = "Feminino a maior parte do tempo";
+$a->strings["Transgender"] = "Transgênero";
+$a->strings["Intersex"] = "Intersexual";
+$a->strings["Transsexual"] = "Transexual";
+$a->strings["Hermaphrodite"] = "Hermafrodita";
+$a->strings["Neuter"] = "Neutro";
+$a->strings["Non-specific"] = "Não específico";
+$a->strings["Other"] = "Outro";
+$a->strings["Undecided"] = "Indeciso";
+$a->strings["Males"] = "Homens";
+$a->strings["Females"] = "Mulheres";
+$a->strings["Gay"] = "Gays";
+$a->strings["Lesbian"] = "Lésbicas";
+$a->strings["No Preference"] = "Sem preferência";
+$a->strings["Bisexual"] = "Bissexuais";
+$a->strings["Autosexual"] = "Autossexuais";
+$a->strings["Abstinent"] = "Abstêmios";
+$a->strings["Virgin"] = "Virgens";
+$a->strings["Deviant"] = "Desviantes";
+$a->strings["Fetish"] = "Fetiches";
+$a->strings["Oodles"] = "Insaciável";
+$a->strings["Nonsexual"] = "Não sexual";
+$a->strings["Single"] = "Solteiro(a)";
+$a->strings["Lonely"] = "Solitário(a)";
+$a->strings["Available"] = "Disponível";
+$a->strings["Unavailable"] = "Não disponível";
+$a->strings["Has crush"] = "Tem uma paixão";
+$a->strings["Infatuated"] = "Apaixonado";
+$a->strings["Dating"] = "Saindo com alguém";
+$a->strings["Unfaithful"] = "Infiel";
+$a->strings["Sex Addict"] = "Viciado(a) em sexo";
+$a->strings["Friends/Benefits"] = "Amigos/Benefícios";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Envolvido(a)";
+$a->strings["Married"] = "Casado(a)";
+$a->strings["Imaginarily married"] = "Casado imaginariamente";
+$a->strings["Partners"] = "Parceiros";
+$a->strings["Cohabiting"] = "Coabitando";
+$a->strings["Common law"] = "Direito comum";
+$a->strings["Happy"] = "Feliz";
+$a->strings["Not looking"] = "Não estou procurando";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Traído(a)";
+$a->strings["Separated"] = "Separado(a)";
+$a->strings["Unstable"] = "Instável";
+$a->strings["Divorced"] = "Divorciado(a)";
+$a->strings["Imaginarily divorced"] = "Divorciado imaginariamente";
+$a->strings["Widowed"] = "Viúvo(a)";
+$a->strings["Uncertain"] = "Incerto(a)";
+$a->strings["It's complicated"] = "É complicado";
+$a->strings["Don't care"] = "Não importa";
+$a->strings["Ask me"] = "Pergunte-me";
+$a->strings["Friendica Notification"] = "Notificação Friendica";
+$a->strings["Thank You,"] = "Obrigado,";
+$a->strings["%s Administrator"] = "%s Administrador";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nova mensagem recebida em %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s lhe enviou uma mensagem privativa em %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s lhe enviou %2\$s.";
+$a->strings["a private message"] = "uma mensagem privada";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Favor visitar %s para ver e/ou responder às suas mensagens privadas.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s comentou uma [url=%2\$s] %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s comentou na %4\$s de [url=%2\$s]%3\$s [/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s comentou [url=%2\$s]sua %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notify] Comentário na conversa #%1\$d por %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s comentou um item/conversa que você está seguindo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Favor visitar %s para ver e/ou responder à conversa.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s publicou no mural do seu perfil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s publicou no mural do seu perfil em %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s publicou para [url=%2\$s]seu mural[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s etiquetou você";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s etiquetou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]etiquetou você[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s compartilhado uma nova publicação";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s compartilhou uma nova publicação em %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]compartilhou uma publicação[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s cutucou você";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s cutucou você em %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]cutucou você[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notify] %s etiquetou sua publicação";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s etiquetou sua publicação em %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s etiquetou [url=%2\$s]sua publicação[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notify] Você recebeu uma apresentação";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Você recebeu uma apresentação de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Você recebeu [url=%1\$s]uma apresentação[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Você pode visitar o perfil deles em %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Favor visitar %s para aprovar ou rejeitar a apresentação.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Notificação] Uma nova pessoa está compartilhando com você";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s está compartilhando com você via %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Notificação] Você tem um novo seguidor";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Você tem um novo seguidor em %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notify] Você recebeu uma sugestão de amigo";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Você recebeu uma sugestão de amigo de '%1\$s' em %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Você recebeu [url=%1\$s]uma sugestão de amigo[/url] de %2\$s em %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Favor visitar %s para aprovar ou rejeitar a sugestão.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Notificação] Conexão aceita";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' sua solicitação de conexão foi aceita em %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s Foi aceita [url=%1\$s] a conexão solicitada[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Você agora são amigos em comum e podem trocar atualizações de status, fotos e e-mail\n\tsem restrições.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Por favor, visite %s se você desejar fazer quaisquer alterações a este relacionamento.";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' optou por aceitá-lo um \"fã\", o que restringe algumas formas de comunicação - como mensagens privadas e algumas interações de perfil. Se esta é uma página de celebridade ou de uma comunidade, essas configurações foram aplicadas automaticamente.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' pode optar no futuro por estender isso para um relacionamento bidirecional ou superior permissivo.";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica: Notificação do Sistema] solicitação de cadastro";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Você recebeu um pedido de cadastro de '%1\$s' em %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Você recebeu uma [url=%1\$s]solicitação de cadastro[/url] de %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nome completo:\t%1\$s\\nLocal do Site:\t%2\$s\\nNome de Login:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Por favor, visite %s para aprovar ou rejeitar a solicitação.";
+$a->strings["Embedded content"] = "Conteúdo incorporado";
+$a->strings["Embedding disabled"] = "A incorporação está desabilitada";
+$a->strings["Error decoding account file"] = "Erro ao decodificar arquivo de conta";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erro! Nenhum arquivo de dados de versão! Esse não é um arquivo de conta do Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Erro! Não consigo conferir o apelido (nickname)";
+$a->strings["User '%s' already exists on this server!"] = "User '%s' já existe nesse servidor!";
+$a->strings["User creation error"] = "Erro na criação do usuário";
+$a->strings["User profile creation error"] = "Erro na criação do perfil do Usuário";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contato não foi importado",
+       1 => "%d contatos não foram importados",
+);
+$a->strings["Done. You can now login with your username and password"] = "Feito. Você agora pode entrar com seu nome de usuário e senha";
+$a->strings["toggle mobile"] = "habilita mobile";
+$a->strings["Theme settings"] = "Configurações do tema";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configure o nível de redimensionamento para imagens em publicações e comentários (largura e altura)";
+$a->strings["Set font-size for posts and comments"] = "Escolha o tamanho da fonte para publicações e comentários";
+$a->strings["Set theme width"] = "Configure a largura do tema";
+$a->strings["Color scheme"] = "Esquema de cores";
+$a->strings["Set line-height for posts and comments"] = "Escolha comprimento da linha para publicações e comentários";
+$a->strings["Set colour scheme"] = "Configure o esquema de cores";
+$a->strings["Alignment"] = "Alinhamento";
+$a->strings["Left"] = "Esquerda";
+$a->strings["Center"] = "Centro";
+$a->strings["Posts font size"] = "Tamanho da fonte para publicações";
+$a->strings["Textareas font size"] = "Tamanho da fonte para campos texto";
+$a->strings["Set resolution for middle column"] = "Escolha a resolução para a coluna do meio";
+$a->strings["Set color scheme"] = "Configure o esquema de cores";
+$a->strings["Set zoomfactor for Earth Layer"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Set longitude (X) for Earth Layers"] = "Configure longitude (X) para Camadas da Terra";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Configure latitude (Y) para Camadas da Terra";
+$a->strings["Community Pages"] = "Páginas da Comunidade";
+$a->strings["Earth Layers"] = "Camadas da Terra";
+$a->strings["Community Profiles"] = "Profiles Comunitários";
+$a->strings["Help or @NewHere ?"] = "Ajuda ou @NewHere ?";
+$a->strings["Connect Services"] = "Conectar serviços";
+$a->strings["Find Friends"] = "Encontrar amigos";
+$a->strings["Last users"] = "Últimos usuários";
+$a->strings["Last photos"] = "Últimas fotos";
+$a->strings["Last likes"] = "Últimas gostadas";
+$a->strings["Your contacts"] = "Seus contatos";
+$a->strings["Your personal photos"] = "Suas fotos pessoais";
+$a->strings["Local Directory"] = "Diretório Local";
+$a->strings["Set zoomfactor for Earth Layers"] = "Configure o zoom para Camadas da Terra";
+$a->strings["Show/hide boxes at right-hand column:"] = "Mostre/esconda caixas na coluna à direita:";
+$a->strings["Set style"] = "escolha estilo";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Variações";
index a9d26a89f04d0237da40fb249eb276d0e8d7928d..e98ee5584d73cb5f95b6076e121a411ae27afac3 100644 (file)
@@ -40,3 +40,8 @@
        <li class='admin link button {{$admin.logs.2}}'><a href='{{$admin.logs.0}}'>{{$admin.logs.1}}</a></li>
 </ul>
 
+<h4>{{$diagnosticstxt}}</h4>
+<ul class'admin linklist'>
+       <li class='admin link {{$admin.diagnostics_probe.2}}'><a href="{{$admin.diagnostics_probe.0}}">{{$admin.diagnostics_probe.1}}</a></li>
+       <li class='admin link {{$admin.diagnostics_webfinger.2}}'><a href="{{$admin.diagnostics_webfinger.0}}">{{$admin.diagnostics_webfinger.1}}</a></li>
+</ul>
index 166b35e7d43d1dddaa5d9da8c11414c88687d94e..24ff751bea86a97ed4bcaf08bd49b5dfb87233f2 100644 (file)
@@ -46,6 +46,7 @@
 
        {{include file="field_input.tpl" field=$sitename}}
        {{include file="field_input.tpl" field=$hostname}}
+       {{include file="field_input.tpl" field=$sender_email}}
        {{include file="field_textarea.tpl" field=$banner}}
        {{include file="field_textarea.tpl" field=$info}}
        {{include file="field_select.tpl" field=$language}}
index 6874a4df8f966e3d6988844569538bc47208cc0b..972ad2e7cbf224b2ab5250d40bed52033c676bbc 100644 (file)
@@ -408,7 +408,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
        }}
 
        // last 12 users
-       if($close_lastusers != "1") {
+       if(($close_lastusers != "1") AND !get_config('diabook','disable_features')) {
        $aside['$lastusers_title'] = t('Last users');
        $aside['$lastusers_items'] = array();
        $sql_extra = "";
@@ -437,7 +437,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
        }}
 
        // last 10 liked items
-       if($close_lastlikes != "1") {
+       if(($close_lastlikes != "1") AND !get_config('diabook','disable_features')) {
        $aside['$like_title'] = t('Last likes');
        $aside['$like_items'] = array();
        $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM
@@ -482,7 +482,7 @@ if ($color=="dark") $color_path = "/diabook-dark/";
        }}
 
        // last 12 photos
-       if($close_lastphotos != "1") {
+       if(($close_lastphotos != "1")  AND !get_config('diabook','disable_features')) {
        $aside['$photos_title'] = t('Last photos');
        $aside['$photos_items'] = array();
        $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM
diff --git a/view/theme/vier/LICENSE b/view/theme/vier/LICENSE
new file mode 100644 (file)
index 0000000..3ffc567
--- /dev/null
@@ -0,0 +1,661 @@
+GNU AFFERO GENERAL PUBLIC LICENSE
+                       Version 3, 19 November 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU Affero General Public License is a free, copyleft license for
+software and other kinds of works, specifically designed to ensure
+cooperation with the community in the case of network server software.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+our General Public Licenses are intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  Developers that use our General Public Licenses protect your rights
+with two steps: (1) assert copyright on the software, and (2) offer
+you this License which gives you legal permission to copy, distribute
+and/or modify the software.
+
+  A secondary benefit of defending all users' freedom is that
+improvements made in alternate versions of the program, if they
+receive widespread use, become available for other developers to
+incorporate.  Many developers of free software are heartened and
+encouraged by the resulting cooperation.  However, in the case of
+software used on network servers, this result may fail to come about.
+The GNU General Public License permits making a modified version and
+letting the public access it on a server without ever releasing its
+source code to the public.
+
+  The GNU Affero General Public License is designed specifically to
+ensure that, in such cases, the modified source code becomes available
+to the community.  It requires the operator of a network server to
+provide the source code of the modified version running there to the
+users of that server.  Therefore, public use of a modified version, on
+a publicly accessible server, gives the public access to the source
+code of the modified version.
+
+  An older license, called the Affero General Public License and
+published by Affero, was designed to accomplish similar goals.  This is
+a different license, not a version of the Affero GPL, but Affero has
+released a new version of the Affero GPL which permits relicensing under
+this license.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU Affero General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Remote Network Interaction; Use with the GNU General Public License.
+
+  Notwithstanding any other provision of this License, if you modify the
+Program, your modified version must prominently offer all users
+interacting with it remotely through a computer network (if your version
+supports such interaction) an opportunity to receive the Corresponding
+Source of your version by providing access to the Corresponding Source
+from a network server at no charge, through some standard or customary
+means of facilitating copying of software.  This Corresponding Source
+shall include the Corresponding Source for any work covered by version 3
+of the GNU General Public License that is incorporated pursuant to the
+following paragraph.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the work with which it is combined will remain governed by version
+3 of the GNU General Public License.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU Affero General Public License from time to time.  Such new versions
+will be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU Affero General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU Affero General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU Affero General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU Affero General Public License as published
+    by the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU Affero General Public License for more details.
+
+    You should have received a copy of the GNU Affero General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source.  For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code.  There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU AGPL, see
+<http://www.gnu.org/licenses/>.
\ No newline at end of file
diff --git a/view/theme/vier/README.md b/view/theme/vier/README.md
new file mode 100644 (file)
index 0000000..38cc0db
--- /dev/null
@@ -0,0 +1,4 @@
+vier
+====
+
+Friendica theme "vier"
index c1b851105a2b98021f0c0efcc14bb1be0fb4be7e..4b6e01db98144a44445e138e1ac552fc9755a666 100644 (file)
@@ -320,6 +320,7 @@ li.icon.icon-large:before {
 .icon-sitemap:before              { content: "\f0e8"; }
 .icon-umbrella:before             { content: "\f0e9"; }
 .icon-paste:before                { content: "\f0ea"; }
+.icon-sliders:before              { content: "\f1de"; }
 
 .icon-user-md:before              { content: "\f200"; }
 
index 5e6b4743905c316aaec859cb76c9d91c656236ed..d71ab2177bbaf4889bf818b85bbb81086c043dc4 100644 (file)
@@ -1,11 +1,4 @@
-*{ 
-       box-shadow: 0 0 0 0 !important;
-       border-color: #EAEAEA !important;
-}
-
-nav { background-color: #27333F !important; }
-aside { background-color: #EAEEF4 !important }
-
+*{ box-shadow: 0 0 0 0 !important;} 
 body, section { background-color: #ffffff !important;}
 #profile-jot-form { background-color: #ffffff !important;}
 .dspr, .twit, .pump, .dfrn { background-color: #ffffff !important;}
@@ -18,4 +11,4 @@ div.pager, ul.tabs {
 
 aside {
   border-right: 1px solid #D2D2D2;
-}
\ No newline at end of file
+}
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 31f2a9fe49d4496ab15de3472525719c0dd9a685..1d39d95e8b1110a47a08a36e1e7b5cdea9913c87 100644 (file)
@@ -246,10 +246,6 @@ div.pager {
   float: left;
 }
 
-#contacts-actions {
-  clear: both;
-}
-
 #contact-edit-drop-link-end {
   /* clear: both; */
 }
@@ -539,6 +535,7 @@ nav {
 
 nav .icon {
   color: #ccc;
+  padding:0;
 }
 
 nav a:active,
@@ -674,8 +671,11 @@ nav #nav-help-link,
 nav #nav-search-link,
 nav #nav-directory-link,
 nav #nav-apps-link,
+nav #nav-apps-link,
+nav #nav-login-link,
 nav #nav-notifications-linkmenu,
 nav #nav-site-linkmenu,
+nav #nav-contacts-linkmenu,
 nav #nav-user-linklabel {
   float: right;
 }
@@ -688,6 +688,7 @@ nav #nav-search-link .menu-popup,
 nav #nav-directory-link .menu-popup,
 nav #nav-apps-link .menu-popup,
 nav #nav-notifications-linkmenu .menu-popup,
+nav #nav-contacts-linkmenu .menu-popup,
 nav #nav-site-linkmenu .menu-popup {
   right: 0px;
   left: auto;
@@ -710,6 +711,10 @@ nav #nav-apps-link.selected {
   border-bottom-style: none;
 }
 
+nav #nav-notifications-linkmenu.on .icon-bell:before{
+  content: "\f0f3";
+}
+
 /* nav #nav-community-link { */
 nav ul {
   margin-left: 210px;
@@ -736,6 +741,10 @@ nav #nav-user-linkmenu {
        padding: 5px 10px; */
 }
 
+#mail-update {
+  top: 56px;
+}
+
 .notify-seen {
         background: none repeat scroll 0 0 #DDDDDD;
         }
@@ -905,7 +914,6 @@ aside .vcard dd {
 aside #profile-photo-wrapper img {
   width: 175px;
 }
-
 aside #profile-extra-links ul {
   padding: 0px;
   margin: 0px;
@@ -1995,7 +2003,6 @@ ul.tabs li .active, span.pager_current a {
 .comment-edit-bb a {
   color: #888;
   padding: 0px 5px 1px 5px;
-  cursor: pointer;
 }
 
 .comment-edit-bb a:hover {
@@ -2030,6 +2037,7 @@ ul.tabs li .active, span.pager_current a {
 .field .onoff {
   float: left;
   width: 80px;
+  margin-right:1em;
 }
 .field .onoff a {
   display: block;
@@ -2037,24 +2045,28 @@ ul.tabs li .active, span.pager_current a {
   background-image: url("../../../images/onoff.jpg");
   background-repeat: no-repeat;
   padding: 4px 2px 2px 2px;
+  font-size:14px;
   height: 16px;
+  line-height:16px;
   text-decoration: none;
+  text-align: center;
+  text-transform: uppercase;
+  border-radius:4px;
 }
 .field .onoff .off {
-  border-color: #666666;
-  padding-left: 40px;
+  border-color: #B0B0B0;
+  padding-left: 36px;
   background-position: left center;
   background-color: #cccccc;
-  color: #666666;
-  text-align: right;
+  color: #9C9C9C;
 }
 .field .onoff .on {
-  border-color: #204A87;
-  padding-right: 40px;
+  font-weight:bold;
+  border-color: #8EB8EE;
+  padding-right: 36px;
   background-position: right center;
   background-color: #D7E3F1;
-  color: #204A87;
-  text-align: left;
+  color: #36c;
 }
 .field .hidden {
   display: none!important;
@@ -2074,12 +2086,11 @@ aside form .field label {
         margin-bottom: 15px;
 }
 
-#profile-edit-links ul { margin: 20px; padding-bottom: 20px; list-style: none; }
+#profile-edit-links ul { margin: 0; padding:0 0 20px 0; list-style: none; }
 
 #profile-edit-links li {
   float: left;
   list-style: none;
-  margin-left: 10px;
 }
 
 .profile-edit-side-div {
@@ -2093,8 +2104,9 @@ aside form .field label {
 } */
 
 #register-form label,
-#profile-edit-form label {
-        width: 300px; float: left;
+#profile-edit-wrapper label {
+  width: 200px;
+  float: left;
 }
 
 .required {
@@ -2731,3 +2743,91 @@ a.mail-list-link {
 .mail-conv-delete-icon {
         border: none;
 }
+
+.icon.tilted-icon{
+  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
+  -webkit-transform: rotate(-20deg);
+  -moz-transform: rotate(-20deg);
+  -ms-transform: rotate(-20deg);
+  -o-transform: rotate(-20deg);
+  transform: rotate(-20deg);
+  font-size:115%; /* 5% less than normal icons, because the tilt takes up vertical space */
+  padding-top:1px;
+}
+
+#profile-edit-wrapper {
+    line-height: 30px;
+}
+#profile-edit-wrapper .field{
+  margin-bottom:0;
+  padding-bottom:0;
+}
+#profile-edit-wrapper input[type=text],
+#profile-edit-wrapper select{
+  width:250px;
+}
+#profile-edit-wrapper #profile-edit-dob select{
+  width:auto;
+}
+#profile-edit-wrapper,
+#profile-edit-wrapper .toggle-section-content{
+  margin-bottom:15px;
+}
+.profile-edit-submit-wrapper{
+  margin-top:15px;
+}
+#profile-edit-default-desc{
+  display:inline-block;
+  padding:15px;
+  width:auto;
+  border:1px solid #511919;
+}
+#profile-edit-wrapper .toggle-section-content{
+  background:#ededed;
+  max-width:599px;
+  padding:5px;
+}
+
+.btn{
+  outline:none;
+  -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
+  -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
+  box-shadow:inset 0px 1px 0px 0px #ffffff;
+  background-color:#ededed;
+  -webkit-border-top-left-radius:0px;
+  -moz-border-radius-topleft:0px;
+  border-top-left-radius:0px;
+  -webkit-border-top-right-radius:0px;
+  -moz-border-radius-topright:0px;
+  border-top-right-radius:0px;
+  -webkit-border-bottom-right-radius:0px;
+  -moz-border-radius-bottomright:0px;
+  border-bottom-right-radius:0px;
+  -webkit-border-bottom-left-radius:0px;
+  -moz-border-radius-bottomleft:0px;
+  border-bottom-left-radius:0px;
+  text-indent:0;
+  border:1px solid #dcdcdc;
+  display:inline-block;
+  color:#777777;
+  font-family:Arial;
+  font-size:15px;
+  font-weight:bold;
+  font-style:normal;
+  height:40px;
+  line-height:40px;
+  padding:0 15px;
+  text-align:center;
+  text-shadow:1px 1px 0px #ffffff;
+}
+  .btn:hover{
+    background-color:#e6e6e6;
+    text-decoration:none;
+  }
+  .btn:active{
+    position:relative;
+    top:1px;
+  }
+.profile-view-actions{
+  float:right;
+}
index 9f6311b2bc14f76a3fd652935cbd5848d5d02bb8..ec1be842c6fa2d45aadbe08fe92ef9659d7c2e1a 100644 (file)
@@ -7,89 +7,80 @@
 </header>
 <nav>
        <ul>
-               {{if $nav.community}}
-                       <li id="nav-community-link" class="nav-menu {{$sel.community}}">
-                               <a class="{{$nav.community.2}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
+               {{if $nav.home}}
+                       <li id="nav-home-link" class="nav-menu {{$sel.home}}">
+                               <a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
+                               <span id="home-update" class="nav-notify"></span>
                        </li>
                {{/if}}
-               
                {{if $nav.network}}
                        <li id="nav-network-link" class="nav-menu {{$sel.network}}">
                                <a class="{{$nav.network.2}}" href="{{$nav.network.0}}" title="{{$nav.network.3}}" >{{$nav.network.1}}</a>
                                <span id="net-update" class="nav-notify"></span>
                        </li>
                {{/if}}
-               {{if $nav.home}}
-                       <li id="nav-home-link" class="nav-menu {{$sel.home}}">
-                               <a class="{{$nav.home.2}}" href="{{$nav.home.0}}" title="{{$nav.home.3}}" >{{$nav.home.1}}</a>
-                               <span id="home-update" class="nav-notify"></span>
+               {{if $nav.community}}
+                       <li id="nav-community-link" class="nav-menu {{$sel.community}}">
+                               <a class="{{$nav.community.2}}" href="{{$nav.community.0}}" title="{{$nav.community.3}}" >{{$nav.community.1}}</a>
                        </li>
                {{/if}}
-               {{if $nav.messages}}
-                       <li id="nav-messages-linkmenu" class="nav-menu">
-                               <a href="{{$nav.messages.0}}" rel="#nav-messages-menu" title="{{$nav.messages.1}}">{{$nav.messages.1}}
-                               <span id="mail-update" class="nav-notify"></span></a>
-                               <ul id="nav-messages-menu" class="menu-popup">
-                                       <li id="nav-messages-see-all"><a href="{{$nav.messages.0}}">{{$nav.messages.1}}</a></li>
-                                        <li id="nav-messages-see-all"><a href="{{$nav.messages.new.0}}">{{$nav.messages.new.1}}</a></li>
-                               </ul>
-                        </li>           
-                {{/if}}
-
-               <li id="nav-site-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-site-menu"><span class="icon s22 gear"></span></a>
+               
+               <li id="nav-site-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-site-menu"><span class="icon s22 icon-question"></span></a>
                        <ul id="nav-site-menu" class="menu-popup">
-                               {{if $nav.admin}}<li><a class="{{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a></li>{{/if}}
-                               {{if $nav.settings}}<li><a class="{{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a></li>{{/if}}
-                               {{if $nav.manage}}<li><a class="{{$nav.manage.2}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a></li>{{/if}}                         
-                               <li><a class="{{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a></li>
-                               {{if $nav.help}} <li><a class="{{$nav.help.2}}" target="friendica-help" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a></li>{{/if}}
-                               <!-- {{if $nav.delegations}}<li><a class="{{$nav.delegations.2}}" href="{{$nav.delegations.0}}" title="{{$nav.delegations.3}}">{{$nav.delegations.1}}</a></li>{{/if}} -->
+                               {{if $nav.help}} <li><a class="{{$nav.help.2}}" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a></li>{{/if}}
                                <li><a class="{{$nav.about.2}}" href="{{$nav.about.0}}" title="{{$nav.about.3}}" >{{$nav.about.1}}</a></li>
-
-                               {{if $nav.logout}}<li><a class="menu-sep {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a></li>{{/if}}
-                               {{if $nav.login}}<li><a class="{{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a><li>{{/if}}
-                       </ul>           
+                               <li><a class="{{$nav.directory.2}}" href="{{$nav.directory.0}}" title="{{$nav.directory.3}}" >{{$nav.directory.1}}</a></li>
+                       </ul>
                </li>
+
                {{if $nav.notifications}}
-                       <li  id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}"><span class="icon s22 notify"></span></a>
+                       <li  id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="{{$nav.notifications.0}}" rel="#nav-notifications-menu" title="{{$nav.notifications.1}}"><span class="icon s22 icon-bell tilted-icon"></span></a>
                                <span id="notify-update" class="nav-notify"></span>
                                <ul id="nav-notifications-menu" class="menu-popup">
                                        <li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">{{$nav.notifications.mark.1}}</a></li>
                                        <li id="nav-notifications-see-all"><a href="{{$nav.notifications.all.0}}">{{$nav.notifications.all.1}}</a></li>
                                        <li class="empty">{{$emptynotifications}}</li>
                                </ul>
-                       </li>           
-               {{/if}}         
-               
-<!--           
-               {{if $nav.help}} 
-               <li id="nav-help-link" class="nav-menu {{$sel.help}}">
-                       <a class="{{$nav.help.2}}" target="friendica-help" href="{{$nav.help.0}}" title="{{$nav.help.3}}" >{{$nav.help.1}}</a>
-               </li>
+                       </li>
                {{/if}}
--->
-
+               
                {{if $userinfo}}
-                       <li id="nav-user-linklabel" class="nav-menu"><a href="#" rel="#nav-user-menu" title="{{$sitelocation}}">{{$userinfo.name}}
-                       <span id="intro-update" class="nav-notify"></span></a>
-                       <li id="nav-user-linkmenu" class="nav-menu-icon"><a href="#" rel="#nav-user-menu" title="{{$sitelocation}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"></a>
+                       <li id="nav-user-linklabel" class="nav-menu">
+                               <a href="#" rel="#nav-user-menu" title="{{$sitelocation}}">{{$userinfo.name}}<span id="intro-update" class="nav-notify"></span></a>
+                       </li>
+                       <li id="nav-user-linkmenu" class="nav-menu-icon">
+                               <a href="#" rel="#nav-user-menu" title="{{$sitelocation}}"><img src="{{$userinfo.icon}}" alt="{{$userinfo.name}}"></a>
                                <ul id="nav-user-menu" class="menu-popup">
-                                       {{if $nav.notifications}}<li><a class="{{$nav.notifications.2}}" href="{{$nav.notifications.0}}" title="{{$nav.notifications.3}}" >{{$nav.introductions.1}}</a><span id="intro-update-li" class="nav-notify"></span></li>{{/if}}
-                                       {{if $nav.contacts}}<li><a class="{{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a></li>{{/if}}      
-                                       {{if $nav.messages}}<li><a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >{{$nav.messages.1}}</a></li>{{/if}}
-                                       {{foreach $nav.usermenu as $usermenu}}
-                                               <li><a class="{{$usermenu.2}}" href="{{$usermenu.0}}" title="{{$usermenu.3}}">{{$usermenu.1}}</a></li>
-                                       {{/foreach}}
+                                       {{if $nav.introductions}}<li><a class="{{$nav.introductions.2}}" href="{{$nav.introductions.0}}" title="{{$nav.introductions.3}}" >{{$nav.introductions.1}}</a><span id="intro-update-li" class="nav-notify"></span></li>{{/if}}
+                                       {{if $nav.contacts}}<li><a class="{{$nav.contacts.2}}" href="{{$nav.contacts.0}}" title="{{$nav.contacts.3}}" >{{$nav.contacts.1}}</a></li>{{/if}}
+                                       {{if $nav.messages}}<li><a class="{{$nav.messages.2}}" href="{{$nav.messages.0}}" title="{{$nav.messages.3}}" >{{$nav.messages.1}}</a><span id="mail-update" class="nav-notify"></span></a></li>{{/if}}
+                                       {{if $nav.manage}}<li><a class="{{$nav.manage.2}}" href="{{$nav.manage.0}}" title="{{$nav.manage.3}}">{{$nav.manage.1}}</a></li>{{/if}}                         
+                                       {{if $nav.usermenu.1}}<li><a class="{{$nav.usermenu.1.2}}" href="{{$nav.usermenu.1.0}}" title="{{$nav.usermenu.1.3}}">{{$nav.usermenu.1.1}}</a></li>{{/if}}
+                                       {{if $nav.settings}}<li><a class="{{$nav.settings.2}}" href="{{$nav.settings.0}}" title="{{$nav.settings.3}}">{{$nav.settings.1}}</a></li>{{/if}}
+                                       {{if $nav.logout}}<li><a class="menu-sep {{$nav.logout.2}}" href="{{$nav.logout.0}}" title="{{$nav.logout.3}}" >{{$nav.logout.1}}</a></li>{{/if}}
                                </ul>
                        </li>
                {{/if}}
+
+               {{if $nav.login}}
+                       <li id="nav-login-link" class="nav-menu">
+                               <a class="{{$nav.login.2}}" href="{{$nav.login.0}}" title="{{$nav.login.3}}" >{{$nav.login.1}}</a>
+                       <li>
+               {{/if}}
                
                {{if $nav.search}}
-                <li id="search-box">
-                        <form method="get" action="{{$nav.search.0}}">
-                               <input id="search-text" class="nav-menu-search" type="text" value="" name="search">
-                        </form>
-                </li>
+                       <li id="search-box">
+                               <form method="get" action="{{$nav.search.0}}">
+                                       <input id="search-text" class="nav-menu-search" type="text" value="" name="search">
+                               </form>
+                       </li>
+               {{/if}}
+
+               {{if $nav.admin}}
+                       <li id="nav-admin-link" class="nav-menu">
+                               <!-- <a class="{{$nav.admin.2}}" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" >{{$nav.admin.1}}</a> -->
+                               <a class="{{$nav.admin.2}} icon-sliders" href="{{$nav.admin.0}}" title="{{$nav.admin.3}}" ></a>
+                       </li>
                {{/if}}
                
                {{if $nav.apps}}
diff --git a/view/theme/vier/templates/profile-hide-friends.tpl b/view/theme/vier/templates/profile-hide-friends.tpl
new file mode 100644 (file)
index 0000000..80e6dcb
--- /dev/null
@@ -0,0 +1,3 @@
+<div id="profile-edit-hide-friends-wrapper">
+       {{include file="field_yesno.tpl" field=$yesno}}
+</div>
diff --git a/view/theme/vier/templates/profile_advanced.tpl b/view/theme/vier/templates/profile_advanced.tpl
new file mode 100644 (file)
index 0000000..809aa4c
--- /dev/null
@@ -0,0 +1,176 @@
+{{if $profile.edit}}
+  <div class="profile-view-actions">
+    <a class="btn" href="{{$profile.edit.0}}" id="profile-view-edit-link" title="{{$profile.edit.3}}">{{$profile.edit.1}}</a>
+  </div>
+{{/if}}
+
+<h2>{{$title}}</h2>
+
+<dl id="aprofile-fullname" class="aprofile">
+ <dt>{{$profile.fullname.0}}</dt>
+ <dd>{{$profile.fullname.1}}</dd>
+</dl>
+
+{{if $profile.gender}}
+<dl id="aprofile-gender" class="aprofile">
+ <dt>{{$profile.gender.0}}</dt>
+ <dd>{{$profile.gender.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.birthday}}
+<dl id="aprofile-birthday" class="aprofile">
+ <dt>{{$profile.birthday.0}}</dt>
+ <dd>{{$profile.birthday.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.age}}
+<dl id="aprofile-age" class="aprofile">
+ <dt>{{$profile.age.0}}</dt>
+ <dd>{{$profile.age.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.marital}}
+<dl id="aprofile-marital" class="aprofile">
+ <dt><span class="heart">&hearts;</span>  {{$profile.marital.0}}</dt>
+ <dd>{{$profile.marital.1}}{{if $profile.marital.with}} ({{$profile.marital.with}}){{/if}}{{if $profile.howlong}} {{$profile.howlong}}{{/if}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.sexual}}
+<dl id="aprofile-sexual" class="aprofile">
+ <dt>{{$profile.sexual.0}}</dt>
+ <dd>{{$profile.sexual.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.pub_keywords}}
+<dl id="aprofile-tags" class="aprofile">
+ <dt>{{$profile.pub_keywords.0}}</dt>
+ <dd>{{$profile.pub_keywords.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.homepage}}
+<dl id="aprofile-homepage" class="aprofile">
+ <dt>{{$profile.homepage.0}}</dt>
+ <dd>{{$profile.homepage.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.hometown}}
+<dl id="aprofile-hometown" class="aprofile">
+ <dt>{{$profile.hometown.0}}</dt>
+ <dd>{{$profile.hometown.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.politic}}
+<dl id="aprofile-politic" class="aprofile">
+ <dt>{{$profile.politic.0}}</dt>
+ <dd>{{$profile.politic.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.religion}}
+<dl id="aprofile-religion" class="aprofile">
+ <dt>{{$profile.religion.0}}</dt>
+ <dd>{{$profile.religion.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.about}}
+<dl id="aprofile-about" class="aprofile">
+ <dt>{{$profile.about.0}}</dt>
+ <dd>{{$profile.about.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.interest}}
+<dl id="aprofile-interest" class="aprofile">
+ <dt>{{$profile.interest.0}}</dt>
+ <dd>{{$profile.interest.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.likes}}
+<dl id="aprofile-likes" class="aprofile">
+ <dt>{{$profile.likes.0}}</dt>
+ <dd>{{$profile.likes.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.dislikes}}
+<dl id="aprofile-dislikes" class="aprofile">
+ <dt>{{$profile.dislikes.0}}</dt>
+ <dd>{{$profile.dislikes.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.contact}}
+<dl id="aprofile-contact" class="aprofile">
+ <dt>{{$profile.contact.0}}</dt>
+ <dd>{{$profile.contact.1}}</dd>
+</dl>
+{{/if}}
+
+
+{{if $profile.music}}
+<dl id="aprofile-music" class="aprofile">
+ <dt>{{$profile.music.0}}</dt>
+ <dd>{{$profile.music.1}}</dd>
+</dl>
+{{/if}}
+
+
+{{if $profile.book}}
+<dl id="aprofile-book" class="aprofile">
+ <dt>{{$profile.book.0}}</dt>
+ <dd>{{$profile.book.1}}</dd>
+</dl>
+{{/if}}
+
+
+{{if $profile.tv}}
+<dl id="aprofile-tv" class="aprofile">
+ <dt>{{$profile.tv.0}}</dt>
+ <dd>{{$profile.tv.1}}</dd>
+</dl>
+{{/if}}
+
+
+{{if $profile.film}}
+<dl id="aprofile-film" class="aprofile">
+ <dt>{{$profile.film.0}}</dt>
+ <dd>{{$profile.film.1}}</dd>
+</dl>
+{{/if}}
+
+
+{{if $profile.romance}}
+<dl id="aprofile-romance" class="aprofile">
+ <dt>{{$profile.romance.0}}</dt>
+ <dd>{{$profile.romance.1}}</dd>
+</dl>
+{{/if}}
+
+
+{{if $profile.work}}
+<dl id="aprofile-work" class="aprofile">
+ <dt>{{$profile.work.0}}</dt>
+ <dd>{{$profile.work.1}}</dd>
+</dl>
+{{/if}}
+
+{{if $profile.education}}
+<dl id="aprofile-education" class="aprofile">
+ <dt>{{$profile.education.0}}</dt>
+ <dd>{{$profile.education.1}}</dd>
+</dl>
+{{/if}}
+
+
+
+
diff --git a/view/theme/vier/templates/profile_edit.tpl b/view/theme/vier/templates/profile_edit.tpl
new file mode 100644 (file)
index 0000000..db512eb
--- /dev/null
@@ -0,0 +1,315 @@
+<script>
+        $(document).ready(function() {
+                
+                $('.toggle-section-content').hide();
+                $('.js-section-toggler').click(function(){
+                        $('.toggle-section-content').hide();
+                        $(this).next('.toggle-section-content').toggle();
+                });
+
+        });
+</script>
+
+<h1>{{$banner}}</h1>
+
+<div id="profile-edit-links">
+<ul>
+  <li><a class="btn" href="profile/{{$profile_id}}/view?tab=profile" id="profile-edit-view-link" title="{{$viewprof}}">{{$viewprof}}</a></li>
+  {{if $multi_profiles}}
+    <li><a class="btn" href="{{$profile_clone_link}}" id="profile-edit-clone-link" title="{{$cr_prof}}">{{$cl_prof}}</a></li>
+    <li><a class="btn" href="{{$profile_drop_link}}" id="profile-edit-drop-link" title="{{$del_prof}}" {{$disabled}} >{{$del_prof}}</a></li>
+  {{/if}}
+</ul>
+</div>
+<div id="profile-edit-links-end"></div>
+
+{{$default}}
+
+<div id="profile-edit-wrapper" >
+
+<form enctype="multipart/form-data" action="profile_photo" method="post">
+  <input type='hidden' name='form_security_token' value='{{$form_security_token_photo}}'>
+  <input type="hidden" name="profile" value="{{$profile_name}}" />
+  
+  <!-- Profile picture -->
+  <div class="toggle-section js-toggle-section">
+    <a class="section-caption js-section-toggler" href="javascript:;">{{$lbl_picture_section}} &raquo;</a>
+    <div class="js-section toggle-section-content hidden">
+      
+      <div id="profile-photo-upload-wrapper">
+        <label id="profile-photo-upload-label" for="profile-photo-upload">{{$lbl_profile_photo}}:</label>
+        <input name="userfile" type="file" id="profile-photo-upload" size="48" />
+      </div>
+
+      <div class="profile-edit-submit-wrapper" >
+        <input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" />
+      </div>
+      <div class="profile-edit-submit-end"></div>
+    
+    </div>
+  </div>
+  
+</form>
+
+<form id="profile-edit-form" name="form1" action="profiles/{{$profile_id}}" method="post" >
+  <input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
+  
+  <!-- Basic information -->
+  <div class="toggle-section js-toggle-section">
+    <a class="section-caption js-section-toggler" href="javascript:;">{{$lbl_basic_section}} &raquo;</a>
+    <div class="js-section toggle-section-content hidden">
+      
+      {{if $multi_profiles}}
+        <div id="profile-edit-profile-name-wrapper" >
+          <label id="profile-edit-profile-name-label" for="profile-edit-profile-name" >{{$lbl_profname}} </label>
+          <input type="text" size="32" name="profile_name" id="profile-edit-profile-name" value="{{$profile_name}}" /><div class="required">*</div>
+        </div>
+        <div id="profile-edit-profile-name-end"></div>
+      {{else}}
+        <input type="hidden" name="profile_name" id="profile-edit-profile-name" value="{{$profile_name}}" />
+      {{/if}}
+      
+      <div id="profile-edit-name-wrapper" >
+        <label id="profile-edit-name-label" for="profile-edit-name" >{{$lbl_fullname}} </label>
+        <input type="text" size="32" name="name" id="profile-edit-name" value="{{$name}}" />
+      </div>
+      <div id="profile-edit-name-end"></div>
+      
+      <div id="profile-edit-gender-wrapper" >
+        <label id="profile-edit-gender-label" for="gender-select" >{{$lbl_gender}} </label>
+        {{$gender}}
+      </div>
+      <div id="profile-edit-gender-end"></div>
+      
+      <div id="profile-edit-pdesc-wrapper" >
+        <label id="profile-edit-pdesc-label" for="profile-edit-pdesc" >{{$lbl_title}} </label>
+        <input type="text" size="32" name="pdesc" id="profile-edit-pdesc" value="{{$pdesc}}" />
+      </div>
+      <div id="profile-edit-pdesc-end"></div>
+      
+      <div id="profile-edit-homepage-wrapper" >
+        <label id="profile-edit-homepage-label" for="profile-edit-homepage" >{{$lbl_homepage}} </label>
+        <input type="text" size="32" name="homepage" id="profile-edit-homepage" value="{{$homepage}}" />
+      </div>
+      <div id="profile-edit-homepage-end"></div>
+      
+      <div id="profile-edit-dob-wrapper" >
+        <label id="profile-edit-dob-label" for="dob-select" >{{$lbl_bd}}</label>
+        <div id="profile-edit-dob" >
+          {{$dob}} {{$age}}
+        </div>
+      </div>
+      <div id="profile-edit-dob-end"></div>
+      
+      {{$hide_friends}}
+      
+      <div id="about-jot-wrapper">
+        <div id="about-jot-desc">{{$lbl_about}}</div>
+        <textarea rows="10" cols="72" id="profile-about-text" name="about" style="width:599px;">{{$about}}</textarea>
+      </div>
+      <div id="about-jot-end"></div>
+      
+      <div id="contact-jot-wrapper" >
+        <div id="contact-jot-desc">{{$lbl_social}}</div>
+        <textarea rows="10" cols="72" id="contact-jot-text" name="contact" style="width:599px;">{{$contact}}</textarea>
+      </div>
+      <div id="contact-jot-end"></div>
+      
+      <div id="profile-edit-pubkeywords-wrapper" >
+        <label id="profile-edit-pubkeywords-label" for="profile-edit-pubkeywords" >{{$lbl_pubkey}} </label>
+        <input type="text" size="32" name="pub_keywords" id="profile-edit-pubkeywords" title="{{$lbl_ex2}}" value="{{$pub_keywords}}" />
+      </div>
+      <div id="profile-edit-pubkeywords-desc">{{$lbl_pubdsc}}</div>
+      <div id="profile-edit-pubkeywords-end"></div>
+      
+      <div id="profile-edit-prvkeywords-wrapper" >
+        <label id="profile-edit-prvkeywords-label" for="profile-edit-prvkeywords" >{{$lbl_prvkey}} </label>
+        <input type="text" size="32" name="prv_keywords" id="profile-edit-prvkeywords" title="{{$lbl_ex2}}" value="{{$prv_keywords}}" />
+      </div>
+      <div id="profile-edit-prvkeywords-desc">{{$lbl_prvdsc}}</div>
+      <div id="profile-edit-prvkeywords-end"></div>
+      
+      <div class="profile-edit-submit-wrapper" >
+        <input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" />
+      </div>
+      <div class="profile-edit-submit-end"></div>
+    
+    </div>
+  </div>
+  
+  <!-- About you -->
+  <div class="toggle-section js-toggle-section">
+    <a class="section-caption js-section-toggler" href="javascript:;">{{$lbl_about_section}} &raquo;</a>
+    <div class="js-section toggle-section-content hidden">
+      
+      <div><b>{{$lbl_location_section}}</b></div>
+      
+      <div id="profile-edit-address-wrapper" >
+        <label id="profile-edit-address-label" for="profile-edit-address" >{{$lbl_address}} </label>
+        <input type="text" size="32" name="address" id="profile-edit-address" value="{{$address}}" />
+      </div>
+      <div id="profile-edit-address-end"></div>
+      
+      <div id="profile-edit-locality-wrapper" >
+        <label id="profile-edit-locality-label" for="profile-edit-locality" >{{$lbl_city}} </label>
+        <input type="text" size="32" name="locality" id="profile-edit-locality" value="{{$locality}}" />
+      </div>
+      <div id="profile-edit-locality-end"></div>
+      
+      <div id="profile-edit-postal-code-wrapper" >
+        <label id="profile-edit-postal-code-label" for="profile-edit-postal-code" >{{$lbl_zip}} </label>
+        <input type="text" size="32" name="postal_code" id="profile-edit-postal-code" value="{{$postal_code}}" />
+      </div>
+      <div id="profile-edit-postal-code-end"></div>
+      
+      <div id="profile-edit-country-name-wrapper" >
+        <label id="profile-edit-country-name-label" for="profile-edit-country-name" >{{$lbl_country}} </label>
+        <select name="country_name" id="profile-edit-country-name" onChange="Fill_States('{{$region}}');">
+          <option selected="selected" >{{$country_name}}</option>
+        </select>
+      </div>
+      <div id="profile-edit-country-name-end"></div>
+      
+      <div id="profile-edit-region-wrapper" >
+        <label id="profile-edit-region-label" for="profile-edit-region" >{{$lbl_region}} </label>
+        <select name="region" id="profile-edit-region" onChange="Update_Globals();" >
+          <option selected="selected" >{{$region}}</option>
+        </select>
+      </div>
+      <div id="profile-edit-region-end"></div>
+      
+      <div id="profile-edit-hometown-wrapper" >
+        <label id="profile-edit-hometown-label" for="profile-edit-hometown" >{{$lbl_hometown}} </label>
+        <input type="text" size="32" name="hometown" id="profile-edit-hometown" value="{{$hometown}}" />
+      </div>
+      <div id="profile-edit-hometown-end"></div>
+      
+      <br>
+      
+      <div><b>{{$lbl_preferences_section}}</b></div>
+      
+      <div id="profile-edit-sexual-wrapper" >
+        <label id="profile-edit-sexual-label" for="sexual-select" >{{$lbl_sexual}} </label>
+        {{$sexual}}
+      </div>
+      <div id="profile-edit-sexual-end"></div>
+      
+      <div id="profile-edit-politic-wrapper" >
+        <label id="profile-edit-politic-label" for="profile-edit-politic" >{{$lbl_politic}} </label>
+        <input type="text" size="32" name="politic" id="profile-edit-politic" value="{{$politic}}" />
+      </div>
+      <div id="profile-edit-politic-end"></div>
+      
+      <div id="profile-edit-religion-wrapper" >
+        <label id="profile-edit-religion-label" for="profile-edit-religion" >{{$lbl_religion}} </label>
+        <input type="text" size="32" name="religion" id="profile-edit-religion" value="{{$religion}}" />
+      </div>
+      <div id="profile-edit-religion-end"></div>
+      
+      <div id="likes-jot-wrapper">
+        <div id="likes-jot-desc">{{$lbl_likes}}</div>
+        <textarea rows="10" cols="72" id="likes-jot-text" name="likes" style="width:599px;">{{$likes}}</textarea>
+      </div>
+      <div id="likes-jot-end"></div>
+      
+      <div id="dislikes-jot-wrapper">
+        <div id="dislikes-jot-desc">{{$lbl_dislikes}}</div>
+        <textarea rows="10" cols="72" id="dislikes-jot-text" name="dislikes" style="width:599px;">{{$dislikes}}</textarea>
+      </div>
+      <div id="dislikes-jot-end"></div>
+      
+      <div class="profile-edit-submit-wrapper" >
+        <input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" />
+      </div>
+      <div class="profile-edit-submit-end"></div>
+      
+    </div>
+  </div>
+  
+  <!-- Status -->
+  <div class="toggle-section js-toggle-section">
+    <a class="section-caption js-section-toggler" href="javascript:;">{{$lbl_status_section}} &raquo;</a>
+    <div class="js-section toggle-section-content hidden">
+      
+      <div id="profile-edit-marital-wrapper" >
+        <label id="profile-edit-marital-label" for="profile-edit-marital" >{{$lbl_marital}} </label>
+        {{$marital}}
+      </div>
+      <label id="profile-edit-with-label" for="profile-edit-with" > {{$lbl_with}} </label>
+      <input type="text" size="32" name="with" id="profile-edit-with" title="{{$lbl_ex1}}" value="{{$with}}" />
+      <label id="profile-edit-howlong-label" for="profile-edit-howlong" > {{$lbl_howlong}} </label>
+      <input type="text" size="32" name="howlong" id="profile-edit-howlong" title="{{$lbl_howlong}}" value="{{$howlong}}" />
+      <div id="profile-edit-marital-end"></div>
+      
+      <div id="romance-jot-wrapper" >
+        <div id="romance-jot-desc">{{$lbl_love}}</div>
+        <textarea rows="10" cols="72" id="romance-jot-text" name="romance" style="width:599px;">{{$romance}}</textarea>
+      </div>
+      <div id="romance-jot-end"></div>
+      
+      <div id="work-jot-wrapper">
+        <div id="work-jot-desc">{{$lbl_work}}</div>
+        <textarea rows="10" cols="72" id="work-jot-text" name="work" style="width:599px;">{{$work}}</textarea>
+      </div>
+      <div id="work-jot-end"></div>
+      
+      <div id="education-jot-wrapper" >
+        <div id="education-jot-desc">{{$lbl_school}}</div>
+        <textarea rows="10" cols="72" id="education-jot-text" name="education" style="width:599px;">{{$education}}</textarea>
+      </div>
+      <div id="education-jot-end"></div>
+      
+      <div class="profile-edit-submit-wrapper" >
+        <input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" />
+      </div>
+      <div class="profile-edit-submit-end"></div>
+      
+    </div>
+  </div>
+  
+  <!-- Interests -->
+  <div class="toggle-section js-toggle-section">
+    <a class="section-caption js-section-toggler" href="javascript:;">{{$lbl_interests_section}} &raquo;</a>
+    <div class="js-section toggle-section-content hidden">
+      
+      <div id="interest-jot-wrapper">
+        <div id="interest-jot-desc">{{$lbl_hobbies}}</div>
+        <textarea rows="10" cols="72" id="interest-jot-text" name="interest" style="width:599px;">{{$interest}}</textarea>
+      </div>
+      <div id="interest-jot-end"></div>
+      
+      <div id="music-jot-wrapper">
+        <div id="music-jot-desc">{{$lbl_music}}</div>
+        <textarea rows="10" cols="72" id="music-jot-text" name="music" style="width:599px;">{{$music}}</textarea>
+      </div>
+      <div id="music-jot-end"></div>
+
+      <div id="book-jot-wrapper">
+        <div id="book-jot-desc">{{$lbl_book}}</div>
+        <textarea rows="10" cols="72" id="book-jot-text" name="book" style="width:599px;">{{$book}}</textarea>
+      </div>
+      <div id="book-jot-end"></div>
+      
+      <div id="tv-jot-wrapper">
+        <div id="tv-jot-desc">{{$lbl_tv}}</div>
+        <textarea rows="10" cols="72" id="tv-jot-text" name="tv" style="width:599px;">{{$tv}}</textarea>
+      </div>
+      <div id="tv-jot-end"></div>
+      
+      <div id="film-jot-wrapper">
+        <div id="film-jot-desc">{{$lbl_film}}</div>
+        <textarea rows="10" cols="72" id="film-jot-text" name="film" style="width:599px;">{{$film}}</textarea>
+      </div>
+      <div id="film-jot-end"></div>
+      
+      <div class="profile-edit-submit-wrapper" >
+        <input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" />
+      </div>
+      <div class="profile-edit-submit-end"></div>
+      
+    </div>
+  </div>
+  
+</form>
+</div>
+<script type="text/javascript">Fill_Country('{{$country_name}}');Fill_States('{{$region}}');</script>
index 61166ef9009ad83358a74ed1a5c62d697c5d5071..9d0c65601ab6e52a1e4215bbcb67bdb9979177b8 100644 (file)
@@ -1,22 +1,10 @@
-
 <div class="vcard h-card">
 
        <div class="tool">
                <div class="fn label p-name">{{$profile.name}}</div>
                {{if $profile.edit}}
                        <div class="action">
-                       <a class="icon s16 edit ttright" href="#" rel="#profiles-menu" title="{{$profile.edit.3}}"><span>{{$profile.edit.1}}</span></a>
-                       <ul id="profiles-menu" class="menu-popup">
-                               {{foreach $profile.menu.entries as $e}}
-                               <li>
-                                       <a href="profiles/{{$e.id}}"><img class="u-photo" src='{{$e.photo}}'>{{$e.profile_name}}</a>
-                               </li>
-                               {{/foreach}}
-                               <li><a href="profile_photo" >{{$profile.menu.chg_photo}}</a></li>
-                               <li><a href="profiles/new" id="profile-listing-new-link">{{$profile.menu.cr_new}}</a></li>
-                               <li><a href="profiles" >{{$profile.edit.3}}</a></li>
-                                                               
-                       </ul>
+                               <a class="icon s16 edit ttright" href="{{$profile.edit.0}}" title="{{$profile.edit.3}}"><span>{{$profile.edit.1}}</span></a>
                        </div>
                {{else}}
                        {{if $profile.menu}}
@@ -25,6 +13,7 @@
                {{/if}}
        </div>
 
+
        {{if $profile.picdate}}
                <div id="profile-photo-wrapper"><img class="photo" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}" /></div>
        {{else}}
index 14210d2424649117e35bffa0043c1a2c9c73926a..91e34e78247bae5c6bbb28faaf47760ef39676ec 100644 (file)
@@ -1,9 +1,10 @@
 <?php
 /**
  * Name: Vier
- * Version: 1.1
+ * Version: 1.2
  * Author: Fabio <http://kirgroup.com/profile/fabrixxm>
  * Author: Ike <http://pirati.ca/profile/heluecht>
+ * Author: Beanow <https://fc.oscp.info/profile/beanow>
  * Maintainer: Ike <http://pirati.ca/profile/heluecht>
  * Description: "Vier" is a very compact and modern theme. It uses the font awesome font library: http://fortawesome.github.com/Font-Awesome/
  */