]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #2960 from Hypolite/issue/#2955
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 22 Nov 2016 07:13:36 +0000 (08:13 +0100)
committerGitHub <noreply@github.com>
Tue, 22 Nov 2016 07:13:36 +0000 (08:13 +0100)
ping.php Fix confusion between count vars and array vars

39 files changed:
Vagrantfile
boot.php
convert_innodb.sql [deleted file]
database.sql
doc/Vagrant.md
include/Contact.php
include/api.php
include/cache.php
include/conversation.php
include/dbstructure.php
include/delivery.php
include/dfrn.php
include/diaspora.php
include/identity.php
include/socgraph.php
include/text.php
mod/admin.php
mod/item.php
mod/network.php
mod/ping.php
mod/proxy.php
mod/register.php
mod/settings.php
mod/viewcontacts.php
update.php
util/convert_innodb.sql [new file with mode: 0644]
util/messages.po
util/vagrant_provision.sh
view/global.css
view/lang/de/messages.po
view/lang/de/strings.php
view/lang/es/messages.po
view/lang/es/strings.php
view/templates/admin_summary.tpl
view/templates/admin_users.tpl
view/templates/register.tpl
view/templates/settings_display.tpl
view/theme/frio/css/style.css
view/theme/frio/templates/settings_display.tpl

index 0c16fa6b8c93c260b7feee3f7822b77ba7143011..ff38151520a3dc5241d869734344df28f4568d95 100644 (file)
@@ -1,31 +1,55 @@
 
-server_ip = "192.168.22.10"
+server_ip_trusty = "192.168.22.10"
+server_ip_xenial = "192.168.22.11"
 server_memory = "1024" # MB
 server_timezone = "UTC"
 
 public_folder = "/vagrant"
 
 Vagrant.configure(2) do |config|
-
+######################################################################
   # Set server to Ubuntu 14.04
-  config.vm.box = "ubuntu/trusty64"
+  config.vm.define "trusty" do |trusty|
+    trusty.vm.box = "ubuntu/trusty64"
+
+    # Disable automatic box update checking. If you disable this, then
+    # boxes will only be checked for updates when the user runs
+    # `vagrant box outdated`. This is not recommended.
+    # config.vm.box_check_update = false
+
+    # Create a hostname, don't forget to put it to the `hosts` file
+    # This will point to the server's default virtual host
+    # TO DO: Make this work with virtualhost along-side xip.io URL
+    trusty.vm.hostname = "friendica-trusty.dev"
+
+    # Create a static IP
+    trusty.vm.network :private_network, ip: server_ip_trusty
+  end
+
+######################################################################
+  # Set server to Ubuntu 16.04
+  config.vm.define "xenial" do |xenial|
+    xenial.vm.box = "boxcutter/ubuntu1604"
 
-  # Disable automatic box update checking. If you disable this, then
-  # boxes will only be checked for updates when the user runs
-  # `vagrant box outdated`. This is not recommended.
-  # config.vm.box_check_update = false
+    # Disable automatic box update checking. If you disable this, then
+    # boxes will only be checked for updates when the user runs
+    # `vagrant box outdated`. This is not recommended.
+    # config.vm.box_check_update = false
 
-  # Create a hostname, don't forget to put it to the `hosts` file
-  # This will point to the server's default virtual host
-  # TO DO: Make this work with virtualhost along-side xip.io URL
-  config.vm.hostname = "friendica.dev"
+    # Create a hostname, don't forget to put it to the `hosts` file
+    # This will point to the server's default virtual host
+    # TO DO: Make this work with virtualhost along-side xip.io URL
+    xenial.vm.hostname = "friendica-xenial.dev"
 
-  # Create a static IP
-  config.vm.network :private_network, ip: server_ip
+    # Create a static IP
+    xenial.vm.network :private_network, ip: server_ip_xenial
+  end
 
+######################################################################
   # Share a folder between host and guest
   config.vm.synced_folder "./", "/vagrant/", owner: "www-data", group: "vagrant"
 
+
   # Provider-specific configuration so you can fine-tune various
   # backing providers for Vagrant. These expose provider-specific options.
   config.vm.provider "virtualbox" do |vb|
index 7e76df87e36c0b2fed34f19e39ea5b31a257fdee..b44c063f8a6ee0c4c1ff3c5d24b7e32375eaf0cb 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -38,7 +38,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Asparagus');
 define ( 'FRIENDICA_VERSION',      '3.5.1-dev' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1208      );
+define ( 'DB_UPDATE_VERSION',      1209      );
 
 /**
  * @brief Constant with a HTML line break.
@@ -609,6 +609,7 @@ class App {
                $this->performance["markstart"] = microtime(true);
 
                $this->callstack["database"] = array();
+               $this->callstack["database_write"] = array();
                $this->callstack["network"] = array();
                $this->callstack["file"] = array();
                $this->callstack["rendering"] = array();
diff --git a/convert_innodb.sql b/convert_innodb.sql
deleted file mode 100644 (file)
index 9eeb67f..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-ALTER TABLE `profile` DROP INDEX `pub_keywords` ; 
-ALTER TABLE `profile` DROP INDEX `prv_keywords` ;
-
-ALTER TABLE `item` DROP INDEX `title` ;
-ALTER TABLE `item` DROP INDEX `body` ;
-ALTER TABLE `item` DROP INDEX `allow_cid` ;
-ALTER TABLE `item` DROP INDEX `allow_gid` ;
-ALTER TABLE `item` DROP INDEX `deny_cid` ;
-ALTER TABLE `item` DROP INDEX `deny_gid` ;
-ALTER TABLE `item` DROP INDEX `tag` ;
-ALTER TABLE `item` DROP INDEX `file` ;
-
-
-SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;') 
-FROM information_schema.tables 
-WHERE engine = 'MyISAM';
-
index c5fd49ba011446974ed85da26e4714944be95931..7cbe4858a803061c14127776409672b67c844454 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
 -- Friendica 3.5.1-dev (Asparagus)
--- DB_UPDATE_VERSION 1205
+-- DB_UPDATE_VERSION 1208
 -- ------------------------------------------
 
 
@@ -59,7 +59,8 @@ CREATE TABLE IF NOT EXISTS `cache` (
        `expire_mode` int(11) NOT NULL DEFAULT 0,
        `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
         PRIMARY KEY(`k`(191)),
-        INDEX `updated` (`updated`)
+        INDEX `updated` (`updated`),
+        INDEX `expire_mode_updated` (`expire_mode`,`updated`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -174,6 +175,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
        `ffi_keyword_blacklist` mediumtext,
         PRIMARY KEY(`id`),
         INDEX `uid` (`uid`),
+        INDEX `addr_uid` (`addr`,`uid`),
         INDEX `nurl` (`nurl`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -201,7 +203,8 @@ CREATE TABLE IF NOT EXISTS `deliverq` (
        `cmd` varchar(32) NOT NULL DEFAULT '',
        `item` int(11) NOT NULL DEFAULT 0,
        `contact` int(11) NOT NULL DEFAULT 0,
-        PRIMARY KEY(`id`)
+        PRIMARY KEY(`id`),
+        UNIQUE INDEX `cmd_item_contact` (`cmd`,`item`,`contact`)
 ) DEFAULT CHARSET=utf8mb4;
 
 --
@@ -656,7 +659,7 @@ CREATE TABLE IF NOT EXISTS `notify` (
        `verb` varchar(255) NOT NULL DEFAULT '',
        `otype` varchar(16) NOT NULL DEFAULT '',
        `name_cache` tinytext,
-       `msg_name` mediumtext,
+       `msg_cache` mediumtext,
         PRIMARY KEY(`id`),
         INDEX `uid` (`uid`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -739,7 +742,9 @@ CREATE TABLE IF NOT EXISTS `photo` (
        `deny_cid` mediumtext,
        `deny_gid` mediumtext,
         PRIMARY KEY(`id`),
-        INDEX `uid` (`uid`),
+        INDEX `uid_contactid` (`uid`,`contact-id`),
+        INDEX `uid_profile` (`uid`,`profile`),
+        INDEX `uid_album_created` (`uid`,`album`,`created`),
         INDEX `resource-id` (`resource-id`),
         INDEX `guid` (`guid`)
 ) DEFAULT CHARSET=utf8mb4;
@@ -894,6 +899,7 @@ CREATE TABLE IF NOT EXISTS `register` (
        `uid` int(11) unsigned NOT NULL DEFAULT 0,
        `password` varchar(255) NOT NULL DEFAULT '',
        `language` varchar(16) NOT NULL DEFAULT '',
+       `note` text,
         PRIMARY KEY(`id`)
 ) DEFAULT CHARSET=utf8mb4;
 
@@ -974,6 +980,7 @@ CREATE TABLE IF NOT EXISTS `term` (
         INDEX `type_term` (`type`,`term`),
         INDEX `uid_otype_type_term_global_created` (`uid`,`otype`,`type`,`term`,`global`,`created`),
         INDEX `otype_type_term_tid` (`otype`,`type`,`term`,`tid`),
+        INDEX `uid_otype_type_url` (`uid`,`otype`,`type`,`url`),
         INDEX `guid` (`guid`)
 ) DEFAULT CHARSET=utf8mb4;
 
index 4bc9e6c54d985ba3f57a0dd6711eed42afb8e64c..ec706e5c386531830d9b7118041368397de9e1d8 100644 (file)
@@ -8,7 +8,11 @@ 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 14.04) for you that you can just run inside VirtualBox and start to work directly on Friendica.
+Vagrant creates a virtual machine for you that you can just run inside VirtualBox and start to work directly on Friendica.
+You can choose between two different Ubuntu Linux versions:
+
+1. Ubuntu Trusty (14.04) with PHP 5.5.9 and MySQL 5.5.53
+2. Ubuntu Xenial (16.04) with PHP 7.0 and MySQL 5.7.16
 
 What you need to do:
 
@@ -16,21 +20,27 @@ What you need to do:
 Please use an up-to-date vagrant version from https://www.vagrantup.com/downloads.html.
 2. Git clone your Friendica repository.
 Inside, you'll find a "Vagrantfile" and some scripts in the utils folder.
-3. Run "vagrant up" from inside the friendica clone.
+3. Choose the Ubuntu version you'll need und run "vagrant up <ubuntu-version>" from inside the friendica clone:
+        $> vagrant up trusty
+        $> vagrant up xenial
 Be patient: When it runs for the first time, it downloads an Ubuntu Server image.
-4. Run "vagrant ssh" to log into the virtual machine to log in to the VM.
-5. Open 192.168.22.10 in a browser.
+4. Run "vagrant ssh <ubuntu-version>" to log into the virtual machine to log in to the VM:
+        $> vagrant ssh trusty
+        $> vagrant ssh xenial
+5. Open you test installation in a browser.
+If you selected an Ubuntu Trusty go to 192.168.22.10.
+If you started a Xenial machine go to 192.168.22.11.
 The mysql database is called "friendica", the mysql user and password both are "root".
 6. Work on Friendica's code in your git clone on your machine (not in the VM).
 Your local working directory is set up as a shared directory with the VM (/vagrant).
 7. Check the changes in your browser in the VM.
-Debug via the "vagrant ssh" login.
+Debug via the "vagrant ssh <ubuntu-version>" login.
 Find the Friendica log file /vagrant/logfile.out.
 8. Commit and push your changes directly back to Github.
 
 If you want to stop vagrant after finishing your work, run the following command
 
-               $> vagrant halt
+               $> vagrant halt <ubuntu-version>
 
 in the development directory.
 
@@ -44,10 +54,3 @@ You will then have the following accounts to login:
   * 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/).
-
-**Important notice:**
-If you already had an Ubuntu 12.04 Vagrant VM, please run 
-
-       $> vagrant destroy
-
-before starting the new 14.04 machine.
index 23b5bbe5b82be3d8207c9dbf87f70c240736b5f3..949feb3564e695057a2313eff75fbbaa01b7d602 100644 (file)
@@ -145,7 +145,6 @@ function terminate_friendship($user,$self,$contact) {
 // This provides for the possibility that their database is temporarily messed
 // up or some other transient event and that there's a possibility we could recover from it.
 
-if(! function_exists('mark_for_death')) {
 function mark_for_death($contact) {
 
        if($contact['archive'])
@@ -156,14 +155,24 @@ function mark_for_death($contact) {
                                dbesc(datetime_convert()),
                                intval($contact['id'])
                );
-       }
-       else {
+
+               if ($contact['url'] != '') {
+                       q("UPDATE `contact` SET `term-date` = '%s'
+                               WHERE `nurl` = '%s' AND `term-date` <= '1000-00-00'",
+                                       dbesc(datetime_convert()),
+                                       dbesc(normalise_link($contact['url']))
+                       );
+               }
+       } else {
 
                /// @todo
                /// We really should send a notification to the owner after 2-3 weeks
                /// so they won't be surprised when the contact vanishes and can take
                /// remedial action if this was a serious mistake or glitch
 
+               /// @todo
+               /// Check for contact vitality via probing
+
                $expiry = $contact['term-date'] . ' + 32 days ';
                if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) {
 
@@ -171,26 +180,45 @@ function mark_for_death($contact) {
                        // archive them rather than delete
                        // though if the owner tries to unarchive them we'll start the whole process over again
 
-                       q("update contact set `archive` = 1 where id = %d",
+                       q("UPDATE `contact` SET `archive` = 1 WHERE `id` = %d",
                                intval($contact['id'])
                        );
-                       q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact['id']), intval($contact['uid']));
-
-                       //contact_remove($contact['id']);
 
+                       if ($contact['url'] != '') {
+                               q("UPDATE `contact` SET `archive` = 1 WHERE `nurl` = '%s'",
+                                       dbesc(normalise_link($contact['url']))
+                               );
+                       }
                }
        }
 
-}}
+}
 
-if(! function_exists('unmark_for_death')) {
 function unmark_for_death($contact) {
+
+       $r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` > '%s'",
+               intval($contact['id']),
+               dbesc('1000-00-00 00:00:00')
+       );
+
+       // We don't need to update, we never marked this contact as dead
+       if (!dbm::is_result($r)) {
+               return;
+       }
+
        // It's a miracle. Our dead contact has inexplicably come back to life.
        q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d",
                dbesc('0000-00-00 00:00:00'),
                intval($contact['id'])
        );
-}}
+
+       if ($contact['url'] != '') {
+               q("UPDATE `contact` SET `term-date` = '%s' WHERE `nurl` = '%s'",
+                       dbesc('0000-00-00 00:00:00'),
+                       dbesc(normalise_link($contact['url']))
+               );
+       }
+}
 
 /**
  * @brief Get contact data for a given profile link
index 123a4b9cfe8b425e5e450b746684e4364f10df8a..1de9bfdbde5a06f121beb6eb959736cfeadff8a3 100644 (file)
                // count friends
                $r = q("SELECT count(*) as `count` FROM `contact`
                                WHERE  `uid` = %d AND `rel` IN ( %d, %d )
-                               AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0",
+                               AND `self`=0 AND `blocked`=0 AND `hidden`=0",
                                intval($uinfo[0]['uid']),
                                intval(CONTACT_IS_SHARING),
                                intval(CONTACT_IS_FRIEND)
 
                $r = q("SELECT count(*) as `count` FROM `contact`
                                WHERE  `uid` = %d AND `rel` IN ( %d, %d )
-                               AND `self`=0 AND `blocked`=0 AND `pending`=0 AND `hidden`=0",
+                               AND `self`=0 AND `blocked`=0 AND `hidden`=0",
                                intval($uinfo[0]['uid']),
                                intval(CONTACT_IS_FOLLOWER),
                                intval(CONTACT_IS_FRIEND)
                        `contact`.`id` AS `cid`
                        FROM `item`
                        STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                        WHERE `item`.`uid` = %d AND `verb` = '%s'
                        AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
                        $sql_extra
                        `user`.`nickname`, `user`.`hidewall`
                        FROM `item`
                        STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                        STRAIGHT_JOIN `user` ON `user`.`uid` = `item`.`uid`
                                AND NOT `user`.`hidewall`
                        WHERE `verb` = '%s' AND `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
                        `contact`.`id` AS `cid`
                        FROM `item`
                        INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                        WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
                        AND `item`.`uid` = %d AND `item`.`verb` = '%s'
                        $sql_extra",
                        `contact`.`id` AS `cid`
                        FROM `item`
                        STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                        WHERE `item`.`parent` = %d AND `item`.`visible`
                        AND NOT `item`.`moderated` AND NOT `item`.`deleted`
                        AND `item`.`uid` = %d AND `item`.`verb` = '%s'
                        `contact`.`id` AS `cid`
                        FROM `item`
                        INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                        WHERE `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
                        AND NOT `item`.`private` AND `item`.`allow_cid` = '' AND `item`.`allow`.`gid` = ''
                        AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
                        `contact`.`id` AS `cid`
                        FROM `item` FORCE INDEX (`uid_id`)
                        STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                        WHERE `item`.`uid` = %d AND `verb` = '%s'
                        AND NOT (`item`.`author-link` IN ('https://%s', 'http://%s'))
                        AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
                        `contact`.`id` AS `cid`
                        FROM `item` FORCE INDEX (`uid_contactid_id`)
                        STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND `contact`.`uid` = `item`.`uid`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                        WHERE `item`.`uid` = %d AND `verb` = '%s'
                        AND `item`.`contact-id` = %d
                        AND `item`.`visible` AND NOT `item`.`moderated` AND NOT `item`.`deleted`
                                AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
                                AND `item`.`starred` = 1
                                AND `contact`.`id` = `item`.`contact-id`
-                               AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
+                               AND NOT `contact`.`blocked`
                                $sql_extra
                                AND `item`.`id`>%d
                                ORDER BY `item`.`id` DESC LIMIT %d ,%d ",
                if ($user_info['self'] == 0)
                        $sql_extra = " AND false ";
 
-               $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 $sql_extra",
+               $r = q("SELECT `nurl` FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `blocked` $sql_extra",
                        intval(api_user())
                );
 
index b8016ac4574c37ff73b280dd63101adeb04d4aa6..e8af8f9de119ef543415f2b93523790ca9e6aa87 100644 (file)
@@ -84,9 +84,14 @@ class Cache {
                $memcache = self::memcache();
                if (is_object($memcache)) {
                        // We fetch with the hostname as key to avoid problems with other applications
-                       $value = $memcache->get(get_app()->get_hostname().":".$key);
-                       if (!is_bool($value)) {
-                               return unserialize($value);
+                       $cached = $memcache->get(get_app()->get_hostname().":".$key);
+                       $value = @unserialize($cached);
+
+                       // Only return a value if the serialized value is valid.
+                       // We also check if the db entry is a serialized
+                       // boolean 'false' value (which we want to return).
+                       if ($cached === serialize(false) || $value !== false) {
+                               return $value;
                        }
 
                        return null;
@@ -100,7 +105,15 @@ class Cache {
                );
 
                if (dbm::is_result($r)) {
-                       return unserialize($r[0]['v']);
+                       $cached = $r[0]['v'];
+                       $value = @unserialize($cached);
+
+                       // Only return a value if the serialized value is valid.
+                       // We also check if the db entry is a serialized
+                       // boolean 'false' value (which we want to return).
+                       if ($cached === serialize(false) || $value !== false) {
+                               return $value;
+                       }
                }
 
                return null;
index eba2abdd41142dda2adcc6feb048a2f92abee115..434a2eb858c1c283185ae25692965e5042291acc 100644 (file)
@@ -439,7 +439,7 @@ These Fields are not added below (yet). They are here to for bug search.
 function item_joins() {
 
        return "STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND
-               NOT `contact`.`blocked` AND NOT `contact`.`pending`
+               NOT `contact`.`blocked`
                LEFT JOIN `contact` AS `author` ON `author`.`id`=`item`.`author-id`
                LEFT JOIN `contact` AS `owner` ON `owner`.`id`=`item`.`owner-id`";
 }
@@ -885,7 +885,7 @@ function best_link_url($item,&$sparkle,$ssl_state = false) {
        $clean_url = normalise_link($item['author-link']);
 
        if (local_user()) {
-               $r = q("SELECT `id` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` = '%s' AND NOT `pending` LIMIT 1",
+               $r = q("SELECT `id` FROM `contact` WHERE `network` = '%s' AND `uid` = %d AND `nurl` = '%s' LIMIT 1",
                        dbesc(NETWORK_DFRN), intval(local_user()), dbesc(normalise_link($clean_url)));
                if ($r) {
                        $best_url = 'redir/'.$r[0]['id'];
index bd4a07eb56e73a9c63bb4cb468409da66d62ebfc..94e8da4a44fbda632652204ecc4afe53f1acf1bf 100644 (file)
@@ -1280,6 +1280,7 @@ function db_definition($charset) {
                                        "uid" => array("type" => "int(11) unsigned", "not null" => "1", "default" => "0"),
                                        "password" => array("type" => "varchar(255)", "not null" => "1", "default" => ""),
                                        "language" => array("type" => "varchar(16)", "not null" => "1", "default" => ""),
+                                       "note" => array("type" => "text"),
                                        ),
                        "indexes" => array(
                                        "PRIMARY" => array("id"),
index 7c0ba63a6b41b9649cf30e925df64cf089e6ccd8..8fce98774250cdaeeaccda7bd841671cbda1a7ed 100644 (file)
@@ -381,7 +381,14 @@ function delivery_run(&$argv, &$argc){
                                if ($deliver_status == (-1)) {
                                        logger('notifier: delivery failed: queuing message');
                                        add_to_queue($contact['id'],NETWORK_DFRN,$atom);
+
+                                       // The message could not be delivered. We mark the contact as "dead"
+                                       mark_for_death($contact);
+                               } else {
+                                       // We successfully delivered a message, the contact is alive
+                                       unmark_for_death($contact);
                                }
+
                                break;
 
                        case NETWORK_OSTATUS:
index e048e66085c6acfb1a49d0d8e5b740381ccb8a1e..67cef59d956ccbe037a060e272ba9f83a1439c97 100644 (file)
@@ -134,7 +134,7 @@ class dfrn {
                                        break; // NOTREACHED
                        }
 
-                       $r = q("SELECT * FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `contact`.`uid` = %d $sql_extra LIMIT 1",
+                       $r = q("SELECT * FROM `contact` WHERE NOT `blocked` AND `contact`.`uid` = %d $sql_extra LIMIT 1",
                                intval($owner_id)
                        );
 
index 10f1be93d24823b8849dcc0190adf69348e7a1e0..f2d48486788bf68145cd3dcbb22b07395b4d91f5 100644 (file)
@@ -999,17 +999,21 @@ class diaspora {
         */
        private function author_contact_by_url($contact, $person, $uid) {
 
-               $r = q("SELECT `id`, `network` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
+               $r = q("SELECT `id`, `network`, `url` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d LIMIT 1",
                        dbesc(normalise_link($person["url"])), intval($uid));
                if ($r) {
                        $cid = $r[0]["id"];
                        $network = $r[0]["network"];
+
+                       // We are receiving content from a user that is about to be terminated
+                       // This means the user is vital, so we remove a possible termination date.
+                       unmark_for_death($contact);
                } else {
                        $cid = $contact["id"];
                        $network = NETWORK_DIASPORA;
                }
 
-               return (array("cid" => $cid, "network" => $network));
+               return array("cid" => $cid, "network" => $network);
        }
 
        /**
@@ -2633,7 +2637,13 @@ class diaspora {
                        } else {
                                // queue message for redelivery
                                add_to_queue($contact["id"], NETWORK_DIASPORA, $slap, $public_batch);
+
+                               // The message could not be delivered. We mark the contact as "dead"
+                               mark_for_death($contact);
                        }
+               } elseif (($return_code >= 200) AND ($return_code <= 299)) {
+                       // We successfully delivered a message, the contact is alive
+                       unmark_for_death($contact);
                }
 
                return(($return_code) ? $return_code : (-1));
index a30d81cf3a4d371a4b44c31cc5089d40e6945e85..288f93aaf97e0aa54875a9b73977a89e063d9e2f 100644 (file)
@@ -371,7 +371,7 @@ function profile_sidebar($profile, $block = 0) {
                        if(count($r))
                                $updated =  date("c", strtotime($r[0]['updated']));
 
-                       $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
+                       $r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `hidden` AND NOT `archive`
                                        AND `network` IN ('%s', '%s', '%s', '')",
                                intval($profile['uid']),
                                dbesc(NETWORK_DFRN),
index 349869c40624dc5e81306d1af5318709603c6cb3..421a68cc9ef9212aad785505f179c2814cec5dab 100644 (file)
@@ -1079,10 +1079,12 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
                return array();
        }
 
-       $list = Cache::get("suggestion_query:".$uid.":".$start.":".$limit);
-       if (!is_null($list)) {
-               return $list;
-       }
+// Uncommented because the result of the queries are to big to store it in the cache.
+// We need to decide if we want to change the db column type or if we want to delete it.
+//     $list = Cache::get("suggestion_query:".$uid.":".$start.":".$limit);
+//     if (!is_null($list)) {
+//             return $list;
+//     }
 
        $network = array(NETWORK_DFRN);
 
@@ -1116,7 +1118,10 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
        );
 
        if (count($r) && count($r) >= ($limit -1)) {
-               Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES);
+// Uncommented because the result of the queries are to big to store it in the cache.
+// We need to decide if we want to change the db column type or if we want to delete it.
+//             Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES);
+
                return $r;
        }
 
@@ -1147,7 +1152,9 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
        while (sizeof($list) > ($limit))
                array_pop($list);
 
-       Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $list, CACHE_FIVE_MINUTES);
+// Uncommented because the result of the queries are to big to store it in the cache.
+// We need to decide if we want to change the db column type or if we want to delete it.
+//     Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $list, CACHE_FIVE_MINUTES);
        return $list;
 }
 
index 83eab192702d6224bc013cd7c8350ae0dd8e8e44..63e583d69f8c539b8d1c3cd5c49f1fec6cb8928c 100644 (file)
@@ -874,8 +874,8 @@ function contact_block() {
        if((! is_array($a->profile)) || ($a->profile['hide-friends']))
                return $o;
        $r = q("SELECT COUNT(*) AS `total` FROM `contact`
-                       WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0
-                               AND `hidden` = 0 AND `archive` = 0
+                       WHERE `uid` = %d AND NOT `self` AND NOT `blocked`
+                               AND NOT `hidden` AND NOT `archive`
                                AND `network` IN ('%s', '%s', '%s')",
                        intval($a->profile['uid']),
                        dbesc(NETWORK_DFRN),
@@ -892,7 +892,7 @@ function contact_block() {
        } else {
                // Splitting the query in two parts makes it much faster
                $r = q("SELECT `id` FROM `contact`
-                               WHERE `uid` = %d AND NOT `self` AND NOT `blocked` AND NOT `pending`
+                               WHERE `uid` = %d AND NOT `self` AND NOT `blocked`
                                        AND NOT `hidden` AND NOT `archive`
                                AND `network` IN ('%s', '%s', '%s') ORDER BY RAND() LIMIT %d",
                                intval($a->profile['uid']),
index 9eb86720dfd04c779914498689a01778429c9640..7114ca7be7731673aa008dd9ffa6d86e5edd745a 100644 (file)
@@ -428,6 +428,20 @@ function admin_page_queue(&$a) {
  * @return string
  */
 function admin_page_summary(&$a) {
+       global $db;
+       // are there MyISAM tables in the DB? If so, trigger a warning message
+       $r = q("SELECT `engine` FROM `information_schema`.`tables` WHERE `engine`='myisam' LIMIT 1");
+       $showwarning = false;
+       $warningtext = array();
+       if (dbm::is_result($r)) {
+               $showwarning = true;
+               $warningtext[] = sprintf(t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href="%s">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />'), 'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html');
+       }
+       // MySQL >= 5.7.4 doesn't support the IGNORE keyword in ALTER TABLE statements
+       if ((version_compare($db->server_info(), '5.7.4') >= 0) AND
+               !(strpos($db->server_info(), 'MariaDB') !== false)) {
+               $warningtext[] = t('You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB.');
+       }
        $r = q("SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`");
        $accounts = array(
                array(t('Normal Account'), 0),
@@ -478,7 +492,9 @@ function admin_page_summary(&$a) {
                '$platform' => FRIENDICA_PLATFORM,
                '$codename' => FRIENDICA_CODENAME,
                '$build' =>  get_config('system','build'),
-               '$plugins' => array(t('Active plugins'), $a->plugins)
+               '$plugins' => array(t('Active plugins'), $a->plugins),
+               '$showwarning' => $showwarning,
+               '$warningtext' => $warningtext
        ));
 }
 
@@ -1388,6 +1404,7 @@ function admin_page_users(&$a){
                '$h_deleted' => t('User waiting for permanent deletion'),
                '$th_pending' => array(t('Request date'), t('Name'), t('Email')),
                '$no_pending' =>  t('No registrations.'),
+               '$pendingnotetext' => t('Note from the user'),
                '$approve' => t('Approve'),
                '$deny' => t('Deny'),
                '$delete' => t('Delete'),
index 29a210135567ff326f6fd5222372c2b9406fa523..0deade41811fb4e0811f0063736c0df47c664403 100644 (file)
@@ -744,6 +744,9 @@ function item_post(&$a) {
 
        if($preview) {
                require_once('include/conversation.php');
+               // We set the datarray ID to -1 because in preview mode the dataray
+               // doesn't have an ID.
+               $datarray["id"] = -1;
                $o = conversation($a,array(array_merge($contact_record,$datarray)),'search', false, true);
                logger('preview: ' . $o);
                echo json_encode(array('preview' => $o));
index 559bad0a3e332208c6795898135007f7674ced82..d522598f5af80bfc354c2b6ffec0581d136c3448 100644 (file)
@@ -395,10 +395,10 @@ function network_content(&$a, $update = 0) {
 
                if($group) {
                        if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
-                               notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
-                                                                       'Warning: This group contains %s members from an insecure network.',
-                                                                       $t), $t ) . EOL);
-                               notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
+                               notice(sprintf(tt("Warning: This group contains %s member from a network that doesn't allow non public messages.",
+                                               "Warning: This group contains %s members from a network that doesn't allow non public messages.",
+                                               $t), $t).EOL);
+                               notice(t("Messages in this group won't be send to these receivers.").EOL);
                        }
                }
 
@@ -453,6 +453,7 @@ function network_content(&$a, $update = 0) {
        if ($nouveau OR strlen($file) OR $update) {
                $sql_table = "`item`";
                $sql_parent = "`parent`";
+               $sql_post_table = " INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`";
        }
 
        $sql_nets = (($nets) ? sprintf(" and $sql_table.`network` = '%s' ", dbesc($nets)) : '');
@@ -487,9 +488,9 @@ function network_content(&$a, $update = 0) {
                                $gcontact_str_self = $self[0]["gid"];
                        }
 
-                       $sql_post_table = " INNER JOIN `item` AS `temp1` ON `temp1`.`id` = ".$sql_table.".".$sql_parent;
-                       $sql_extra3 .= " AND ($sql_table.`contact-id` IN ($contact_str) ";
-                       $sql_extra3 .= " OR ($sql_table.`contact-id` = '$contact_str_self' AND `temp1`.`allow_gid` LIKE '".protect_sprintf('%<'.intval($group).'>%')."' AND `temp1`.`private`))";
+                       $sql_post_table .= " INNER JOIN `item` AS `temp1` ON `temp1`.`id` = ".$sql_table.".".$sql_parent;
+                       $sql_extra3 .= " AND (`thread`.`contact-id` IN ($contact_str) ";
+                       $sql_extra3 .= " OR (`thread`.`contact-id` = '$contact_str_self' AND `temp1`.`allow_gid` LIKE '".protect_sprintf('%<'.intval($group).'>%')."' AND `temp1`.`private`))";
                } else {
                        $sql_extra3 .= " AND false ";
                        info( t('Group is empty'));
@@ -503,7 +504,7 @@ function network_content(&$a, $update = 0) {
        elseif($cid) {
 
                $r = qu("SELECT `id`,`name`,`network`,`writable`,`nurl`, `forum`, `prv`, `contact-type`, `addr`, `thumb`, `location` FROM `contact` WHERE `id` = %d
-                               AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
+                               AND NOT `blocked` LIMIT 1",
                        intval($cid)
                );
                if(count($r)) {
@@ -569,7 +570,7 @@ function network_content(&$a, $update = 0) {
                if($tag) {
                        $sql_extra = "";
 
-                       $sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
+                       $sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
                                        dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval(local_user()));
                        $sql_order = "`item`.`id`";
                        $order_mode = "id";
@@ -583,7 +584,7 @@ function network_content(&$a, $update = 0) {
                }
        }
        if(strlen($file)) {
-               $sql_post_table = sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
+               $sql_post_table .= sprintf("INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
                                dbesc(protect_sprintf($file)), intval(TERM_OBJ_POST), intval(TERM_FILE), intval(local_user()));
                $sql_order = "`item`.`id`";
                $order_mode = "id";
@@ -602,7 +603,7 @@ function network_content(&$a, $update = 0) {
                if(get_config('system', 'old_pager')) {
                        $r = qu("SELECT COUNT(*) AS `total`
                                FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = $sql_table.`contact-id`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                                WHERE $sql_table.`uid` = %d AND $sql_table.`visible` AND NOT $sql_table.`deleted`
                                $sql_extra2 $sql_extra3
                                $sql_extra $sql_nets ",
@@ -680,7 +681,7 @@ function network_content(&$a, $update = 0) {
 
                        $r = qu("SELECT `item`.`parent` AS `item_id`, `item`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
                                FROM $sql_table $sql_post_table INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                                WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted` $sql_extra4
                                AND NOT `item`.`moderated` AND `item`.`unseen`
                                $sql_extra3 $sql_extra $sql_nets
@@ -690,7 +691,7 @@ function network_content(&$a, $update = 0) {
                } else {
                        $r = qu("SELECT `thread`.`iid` AS `item_id`, `thread`.`network` AS `item_network`, `contact`.`uid` AS `contact_uid`
                                FROM $sql_table $sql_post_table STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
-                               AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
+                               AND NOT `contact`.`blocked`
                                WHERE `thread`.`uid` = %d AND `thread`.`visible` AND NOT `thread`.`deleted`
                                AND NOT `thread`.`moderated`
                                $sql_extra2 $sql_extra3 $sql_extra $sql_nets
index fd42673c52518d3f2bf3ae7dfe8c9c589ea7aad7..60b5017b48dc6c2eac8801a1dcbb20e55edc2b4f 100644 (file)
@@ -83,7 +83,7 @@ function ping_init(&$a) {
                                // Find out how unseen network posts are spread across groups
                                $group_counts = groups_count_unseen();
                                if (dbm::is_result($group_counts)) {
-                                       foreach ($groups_counts as $group_count) {
+                                       foreach ($group_counts as $group_count) {
                                                if ($group_count['count'] > 0) {
                                                        $groups_unseen[] = $group_count;
                                                }
index a4fbdd24408183e3fc7eaa7794d58cdc2f612623..de2810dd78e87ba1ae6294a5d4c5b5047401c1bd 100644 (file)
@@ -233,66 +233,87 @@ function proxy_init() {
        killme();
 }
 
-function proxy_url($url, $writemode = false, $size = "") {
-       global $_SERVER;
-
+/**
+ * @brief Transform a remote URL into a local one
+ *
+ * This function only performs the URL replacement on http URL and if the
+ * provided URL isn't local, "the isn't deactivated" (sic) and if the config
+ * system.proxy_disabled is set to false.
+ *
+ * @param string $url       The URL to proxyfy
+ * @param bool   $writemode Returns a local path the remote URL should be saved to
+ * @param string $size      One of the PROXY_SIZE_* constants
+ *
+ * @return string The proxyfied URL or relative path
+ */
+function proxy_url($url, $writemode = false, $size = '') {
        $a = get_app();
 
        if (substr($url, 0, strlen('http')) !== 'http') {
-               return($url);
+               return $url;
        }
 
        // Only continue if it isn't a local image and the isn't deactivated
        if (proxy_is_local_image($url)) {
-               $url = str_replace(normalise_link($a->get_baseurl())."/", $a->get_baseurl()."/", $url);
-               return($url);
+               $url = str_replace(normalise_link($a->get_baseurl()) . '/', $a->get_baseurl() . '/', $url);
+               return $url;
        }
 
-       if (get_config("system", "proxy_disabled"))
-               return($url);
+       if (get_config('system', 'proxy_disabled')) {
+               return $url;
+       }
+
+       // Image URL may have encoded ampersands for display which aren't desirable for proxy
+       $url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');
 
        // Creating a sub directory to reduce the amount of files in the cache directory
-       $basepath = $a->get_basepath()."/proxy";
+       $basepath = $a->get_basepath() . '/proxy';
 
-       $path = substr(hash("md5", $url), 0, 2);
+       $shortpath = hash('md5', $url);
+       $longpath = substr($shortpath, 0, 2);
 
-       if (is_dir($basepath) and $writemode)
-               if (!is_dir($basepath."/".$path)) {
-                       mkdir($basepath."/".$path);
-                       chmod($basepath."/".$path, 0777);
+       if (is_dir($basepath) and $writemode) {
+               if (!is_dir($basepath . '/' . $longpath)) {
+                       mkdir($basepath . '/' . $longpath);
+                       chmod($basepath . '/' . $longpath, 0777);
                }
+       }
 
-       $path .= "/".strtr(base64_encode($url), '+/', '-_');
+       $longpath .= '/' . strtr(base64_encode($url), '+/', '-_');
 
        // Checking for valid extensions. Only add them if they are safe
-       $pos = strrpos($url, ".");
+       $pos = strrpos($url, '.');
        if ($pos) {
-               $extension = strtolower(substr($url, $pos+1));
-               $pos = strpos($extension, "?");
-               if ($pos)
+               $extension = strtolower(substr($url, $pos + 1));
+               $pos = strpos($extension, '?');
+               if ($pos) {
                        $extension = substr($extension, 0, $pos);
+               }
        }
 
-       $extensions = array("jpg", "jpeg", "gif", "png");
-
-       if (in_array($extension, $extensions))
-               $path .= ".".$extension;
+       $extensions = array('jpg', 'jpeg', 'gif', 'png');
+       if (in_array($extension, $extensions)) {
+               $shortpath .= '.' . $extension;
+               $longpath .= '.' . $extension;
+       }
 
-       $proxypath = $a->get_baseurl()."/proxy/".$path;
+       $proxypath = $a->get_baseurl() . '/proxy/' . $longpath;
 
-       if ($size != "")
-               $size = ":".$size;
+       if ($size != '') {
+               $size = ':' . $size;
+       }
 
        // Too long files aren't supported by Apache
        // Writemode in combination with long files shouldn't be possible
-       if ((strlen($proxypath) > 250) AND $writemode)
-               return (hash("md5", $url));
-       elseif (strlen($proxypath) > 250)
-               return ($a->get_baseurl()."/proxy/".hash("md5", $url)."?url=".urlencode($url));
-       elseif ($writemode)
-               return ($path);
-       else
-               return ($proxypath.$size);
+       if ((strlen($proxypath) > 250) AND $writemode) {
+               return $shortpath;
+       } elseif (strlen($proxypath) > 250) {
+               return $a->get_baseurl() . '/proxy/' . $shortpath . '?url=' . urlencode($url);
+       } elseif ($writemode) {
+               return $longpath;
+       } else {
+               return $proxypath . $size;
+       }
 }
 
 /**
index 42127ce81c4872ee7afffb1f1f45e1d072ad1af0..f0348ef4e5c6b1d61fd26a5c2f1c6473870adca1 100644 (file)
@@ -113,12 +113,13 @@ function register_post(&$a) {
                }
 
                $hash = random_string();
-               $r = q("INSERT INTO `register` ( `hash`, `created`, `uid`, `password`, `language` ) VALUES ( '%s', '%s', %d, '%s', '%s' ) ",
+               $r = q("INSERT INTO `register` ( `hash`, `created`, `uid`, `password`, `language`, `note` ) VALUES ( '%s', '%s', %d, '%s', '%s', '%s' ) ",
                        dbesc($hash),
                        dbesc(datetime_convert()),
                        intval($user['uid']),
                        dbesc($result['password']),
-                       dbesc($lang)
+                       dbesc($lang),
+                       dbesc($_POST['permonlybox'])
                );
 
                // invite system
@@ -262,6 +263,8 @@ function register_content(&$a) {
        $o = replace_macros($o, array(
                '$oidhtml' => $oidhtml,
                '$invitations' => get_config('system','invitation_only'),
+               '$permonly' => $a->config['register_policy'] == REGISTER_APPROVE,
+               '$permonlybox' => array('permonlybox', t('Note for the admin'), '', t('Leave a message for the admin, why you want to join this node')),
                '$invite_desc' => t('Membership on this site is by invitation only.'),
                '$invite_label' => t('Your invitation ID: '),
                '$invite_id' => $invite_id,
index a20b999edc28249a3842a11fd982c51206527849..663acd69f0267c974e5bb26776ea65a66261ca1e 100644 (file)
@@ -301,6 +301,7 @@ function settings_post(&$a) {
                $infinite_scroll   = x($_POST, 'infinite_scroll')   ? intval($_POST['infinite_scroll'])    : 0;
                $no_auto_update    = x($_POST, 'no_auto_update')    ? intval($_POST['no_auto_update'])     : 0;
                $bandwidth_saver   = x($_POST, 'bandwidth_saver')   ? intval($_POST['bandwidth_saver'])    : 0;
+               $nowarn_insecure   = x($_POST, 'nowarn_insecure')   ? intval($_POST['nowarn_insecure'])    : 0;
                $browser_update    = x($_POST, 'browser_update')    ? intval($_POST['browser_update'])     : 0;
                if ($browser_update != -1) {
                        $browser_update = $browser_update * 1000;
@@ -321,6 +322,7 @@ function settings_post(&$a) {
                        set_pconfig(local_user(),'system','mobile_theme',$mobile_theme);
                }
 
+               set_pconfig(local_user(), 'system', 'nowarn_insecure'         , $nowarn_insecure);
                set_pconfig(local_user(), 'system', 'update_interval'         , $browser_update);
                set_pconfig(local_user(), 'system', 'itemspage_network'       , $itemspage_network);
                set_pconfig(local_user(), 'system', 'itemspage_mobile_network', $itemspage_mobile_network);
@@ -951,6 +953,8 @@ function settings_content(&$a) {
                $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
                $mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
 
+               $nowarn_insecure = intval(get_pconfig(local_user(), 'system', 'nowarn_insecure'));
+
                $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
                if (intval($browser_update) != -1)
                        $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
@@ -995,6 +999,7 @@ function settings_content(&$a) {
 
                        '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes, true),
                        '$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, false),
+                       '$nowarn_insecure' => array('nowarn_insecure',  t('Suppress warning of insecure networks'), $nowarn_insecure, t("Should the system suppress the warning that the current group contains members of networks that can't receive non public postings.")),
                        '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds. Enter -1 to disable it.')),
                        '$itemspage_network'   => array('itemspage_network',  t("Number of items to display per page:"), $itemspage_network, t('Maximum of 100 items')),
                        '$itemspage_mobile_network'   => array('itemspage_mobile_network',  t("Number of items to display per page when viewed from mobile device:"), $itemspage_mobile_network, t('Maximum of 100 items')),
index 19dd8b7f95184a1f7b2ccef5f254748222eba355..6fb3b37fd5dc5be9618d25a7cbcf9eca31717081 100644 (file)
@@ -47,7 +47,7 @@ function viewcontacts_content(&$a) {
        }
 
        $r = q("SELECT COUNT(*) AS `total` FROM `contact`
-               WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
+               WHERE `uid` = %d AND NOT `blocked` AND NOT `hidden` AND NOT `archive`
                        AND `network` IN ('%s', '%s', '%s')",
                intval($a->profile['uid']),
                dbesc(NETWORK_DFRN),
@@ -58,7 +58,7 @@ function viewcontacts_content(&$a) {
                $a->set_pager_total($r[0]['total']);
 
        $r = q("SELECT * FROM `contact`
-               WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
+               WHERE `uid` = %d AND NOT `blocked` AND NOT `hidden` AND NOT `archive`
                        AND `network` IN ('%s', '%s', '%s')
                ORDER BY `name` ASC LIMIT %d, %d",
                intval($a->profile['uid']),
index fa03ddd1ac5057decff72f64dc26b893b17d1ba1..76007ad3aa0d3ac9860ea68a81c6c49303db2832 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define('UPDATE_VERSION' , 1208);
+define('UPDATE_VERSION' , 1209);
 
 /**
  *
diff --git a/util/convert_innodb.sql b/util/convert_innodb.sql
new file mode 100644 (file)
index 0000000..6b065f3
--- /dev/null
@@ -0,0 +1,4 @@
+
+SELECT CONCAT('ALTER TABLE ',table_schema,'.',table_name,' engine=InnoDB;') 
+FROM information_schema.tables 
+WHERE engine = 'MyISAM';
index 3eab988820edba0d86c7faad286e6137ab8b6819..e053781a15cd5c50f423cd39dd3c7311de101235 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-11-10 15:43+0100\n"
+"POT-Creation-Date: 2016-11-20 21:45+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"
@@ -51,8 +51,8 @@ msgstr ""
 msgid "Enter name or interest"
 msgstr ""
 
-#: include/contact_widgets.php:32 include/conversation.php:981
-#: include/Contact.php:347 mod/follow.php:103 mod/allfriends.php:66
+#: include/contact_widgets.php:32 include/Contact.php:375
+#: include/conversation.php:981 mod/follow.php:103 mod/allfriends.php:66
 #: mod/contacts.php:602 mod/dirfind.php:204 mod/match.php:72
 #: mod/suggest.php:83
 msgid "Connect/Follow"
@@ -67,12 +67,11 @@ msgid "Find"
 msgstr ""
 
 #: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527
+#: view/theme/vier/theme.php:203
 msgid "Friend Suggestions"
 msgstr ""
 
 #: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-#: view/theme/diabook/theme.php:526
 msgid "Similar Interests"
 msgstr ""
 
@@ -81,7 +80,6 @@ msgid "Random Profile"
 msgstr ""
 
 #: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-#: view/theme/diabook/theme.php:528
 msgid "Invite Friends"
 msgstr ""
 
@@ -113,8 +111,8 @@ msgstr[0] ""
 msgstr[1] ""
 
 #: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2188 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:970
+#: include/items.php:2223 mod/content.php:624 object/Item.php:432
+#: view/theme/vier/theme.php:260 boot.php:971
 msgid "show more"
 msgstr ""
 
@@ -451,138 +449,6 @@ msgstr ""
 msgid "add"
 msgstr ""
 
-#: include/user.php:39 mod/settings.php:371
-msgid "Passwords do not match. Password unchanged."
-msgstr ""
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr ""
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr ""
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr ""
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr ""
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr ""
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr ""
-
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr ""
-
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr ""
-
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr ""
-
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr ""
-
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr ""
-
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr ""
-
-#: include/user.php:157
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr ""
-
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr ""
-
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr ""
-
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr ""
-
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr ""
-
-#: include/user.php:345 include/user.php:352 include/user.php:359
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
-#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
-#: mod/photos.php:1819 view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr ""
-
-#: include/user.php:387
-#, 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/user.php:391
-#, 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/user.php:423 mod/admin.php:1184
-#, php-format
-msgid "Registration details for %s"
-msgstr ""
-
 #: include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
 msgstr ""
@@ -607,19 +473,19 @@ msgstr ""
 msgid "Reputable, has my trust"
 msgstr ""
 
-#: include/contact_selectors.php:56 mod/admin.php:862
+#: include/contact_selectors.php:56 mod/admin.php:887
 msgid "Frequently"
 msgstr ""
 
-#: include/contact_selectors.php:57 mod/admin.php:863
+#: include/contact_selectors.php:57 mod/admin.php:888
 msgid "Hourly"
 msgstr ""
 
-#: include/contact_selectors.php:58 mod/admin.php:864
+#: include/contact_selectors.php:58 mod/admin.php:889
 msgid "Twice daily"
 msgstr ""
 
-#: include/contact_selectors.php:59 mod/admin.php:865
+#: include/contact_selectors.php:59 mod/admin.php:890
 msgid "Daily"
 msgstr ""
 
@@ -644,12 +510,12 @@ msgid "RSS/Atom"
 msgstr ""
 
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1367 mod/admin.php:1380 mod/admin.php:1392 mod/admin.php:1410
+#: mod/admin.php:1392 mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1436
 msgid "Email"
 msgstr ""
 
 #: include/contact_selectors.php:80 mod/dfrn_request.php:869
-#: mod/settings.php:840
+#: mod/settings.php:842
 msgid "Diaspora"
 msgstr ""
 
@@ -701,10 +567,6 @@ msgstr ""
 msgid "Hubzilla/Redmatrix"
 msgstr ""
 
-#: include/network.php:595
-msgid "view full size"
-msgstr ""
-
 #: include/acl_selectors.php:327
 msgid "Post to Email"
 msgstr ""
@@ -714,7 +576,7 @@ msgstr ""
 msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr ""
 
-#: include/acl_selectors.php:333 mod/settings.php:1176
+#: include/acl_selectors.php:333 mod/settings.php:1181
 msgid "Hide your profile details from unknown viewers?"
 msgstr ""
 
@@ -723,12 +585,10 @@ msgid "Visible to everybody"
 msgstr ""
 
 #: include/acl_selectors.php:339 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
 msgid "show"
 msgstr ""
 
 #: include/acl_selectors.php:340 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
 msgid "don't show"
 msgstr ""
 
@@ -751,25 +611,23 @@ msgstr ""
 
 #: include/like.php:163 include/conversation.php:130
 #: include/conversation.php:266 include/text.php:1808 mod/subthread.php:87
-#: mod/tagger.php:62 view/theme/diabook/theme.php:471
+#: mod/tagger.php:62
 msgid "photo"
 msgstr ""
 
-#: include/like.php:163 include/diaspora.php:1402 include/conversation.php:125
+#: include/like.php:163 include/conversation.php:125
 #: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
-#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
+#: include/conversation.php:270 include/diaspora.php:1406 mod/subthread.php:87
+#: mod/tagger.php:62
 msgid "status"
 msgstr ""
 
 #: include/like.php:165 include/conversation.php:122
 #: include/conversation.php:258 include/text.php:1806
-#: view/theme/diabook/theme.php:463
 msgid "event"
 msgstr ""
 
-#: include/like.php:182 include/diaspora.php:1398 include/conversation.php:141
-#: view/theme/diabook/theme.php:480
+#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1402
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr ""
@@ -798,9 +656,9 @@ msgstr ""
 msgid "[no subject]"
 msgstr ""
 
-#: include/message.php:145 include/Photo.php:1045 include/Photo.php:1061
-#: include/Photo.php:1069 include/Photo.php:1094 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
+#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
+#: include/Photo.php:1064 include/Photo.php:1089 mod/item.php:477
+#: mod/wall_upload.php:218 mod/wall_upload.php:232 mod/wall_upload.php:239
 msgid "Wall Photos"
 msgstr ""
 
@@ -852,89 +710,6 @@ msgstr[1] ""
 msgid "Done. You can now login with your username and password"
 msgstr ""
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr ""
-
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:402
-#: view/theme/frio/theme.php:253
-msgid "Network"
-msgstr ""
-
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:845
-msgid "Personal"
-msgstr ""
-
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161 view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr ""
-
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
-msgstr ""
-
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:245
-#, php-format
-msgid "%s commented on %s's post"
-msgstr ""
-
-#: include/NotificationsManager.php:244
-#, php-format
-msgid "%s created a new post"
-msgstr ""
-
-#: include/NotificationsManager.php:258
-#, php-format
-msgid "%s liked %s's post"
-msgstr ""
-
-#: include/NotificationsManager.php:269
-#, php-format
-msgid "%s disliked %s's post"
-msgstr ""
-
-#: include/NotificationsManager.php:280
-#, php-format
-msgid "%s is attending %s's event"
-msgstr ""
-
-#: include/NotificationsManager.php:291
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr ""
-
-#: include/NotificationsManager.php:302
-#, php-format
-msgid "%s may attend %s's event"
-msgstr ""
-
-#: include/NotificationsManager.php:317
-#, php-format
-msgid "%s is now friends with %s"
-msgstr ""
-
-#: include/NotificationsManager.php:750
-msgid "Friend Suggestion"
-msgstr ""
-
-#: include/NotificationsManager.php:783
-msgid "Friend/Connect Request"
-msgstr ""
-
-#: include/NotificationsManager.php:783
-msgid "New Follower"
-msgstr ""
-
-#: include/diaspora.php:1954
-msgid "Sharing notification from Diaspora network"
-msgstr ""
-
-#: include/diaspora.php:2854
-msgid "Attachments:"
-msgstr ""
-
 #: include/features.php:63
 msgid "General Features"
 msgstr ""
@@ -1138,29 +913,6 @@ msgstr ""
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr ""
 
-#: include/delivery.php:439
-msgid "(no subject)"
-msgstr ""
-
-#: include/delivery.php:450 include/enotify.php:43
-msgid "noreply"
-msgstr ""
-
-#: include/api.php:1019
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:1039
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
-#: include/api.php:1060
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr ""
-
 #: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
 msgid "Image/photo"
 msgstr ""
@@ -1178,1662 +930,1783 @@ msgstr ""
 msgid "Encrypted content"
 msgstr ""
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
+#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
+msgid "Miscellaneous"
 msgstr ""
 
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
+#: include/datetime.php:183 include/identity.php:629
+msgid "Birthday:"
 msgstr ""
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
+#: include/datetime.php:185 mod/profiles.php:728
+msgid "Age: "
 msgstr ""
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:473
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: include/datetime.php:187
+msgid "YYYY-MM-DD or MM-DD"
 msgstr ""
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
+#: include/datetime.php:341
+msgid "never"
 msgstr ""
 
-#: include/conversation.php:239 mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
+#: include/datetime.php:347
+msgid "less than a second ago"
 msgstr ""
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
+#: include/datetime.php:350
+msgid "year"
 msgstr ""
 
-#: include/conversation.php:303
-msgid "post/item"
+#: include/datetime.php:350
+msgid "years"
 msgstr ""
 
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
+#: mod/events.php:389
+msgid "month"
 msgstr ""
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
+#: include/datetime.php:351
+msgid "months"
 msgstr ""
 
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
+#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
+#: mod/events.php:390
+msgid "week"
 msgstr ""
 
-#: include/conversation.php:586 include/conversation.php:1477
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/datetime.php:352
+msgid "weeks"
+msgstr ""
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
+#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
+#: mod/events.php:391
+msgid "day"
 msgstr ""
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
+#: include/datetime.php:353
+msgid "days"
 msgstr ""
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
+#: include/datetime.php:354
+msgid "hour"
 msgstr ""
 
-#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/admin.php:1384 mod/contacts.php:808
-#: mod/contacts.php:1016 mod/photos.php:1682 mod/settings.php:739
-#: object/Item.php:134
-msgid "Delete"
+#: include/datetime.php:354
+msgid "hours"
 msgstr ""
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
+#: include/datetime.php:355
+msgid "minute"
 msgstr ""
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
+#: include/datetime.php:355
+msgid "minutes"
 msgstr ""
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
+#: include/datetime.php:356
+msgid "second"
 msgstr ""
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
+#: include/datetime.php:356
+msgid "seconds"
+msgstr ""
+
+#: include/datetime.php:365
 #, php-format
-msgid "%s from %s"
+msgid "%1$d %2$s ago"
 msgstr ""
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
+#: include/datetime.php:572
+#, php-format
+msgid "%s's birthday"
 msgstr ""
 
-#: include/conversation.php:791 include/conversation.php:1261
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1570 object/Item.php:406
-msgid "Please wait"
+#: include/datetime.php:573 include/dfrn.php:1108
+#, php-format
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: include/conversation.php:870
-msgid "remove"
+#: include/enotify.php:24
+msgid "Friendica Notification"
 msgstr ""
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
+#: include/enotify.php:27
+msgid "Thank You,"
 msgstr ""
 
-#: include/conversation.php:966
-msgid "Follow Thread"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
 msgstr ""
 
-#: include/conversation.php:967 include/Contact.php:390
-msgid "View Status"
+#: include/enotify.php:32
+#, php-format
+msgid "%1$s, %2$s Administrator"
 msgstr ""
 
-#: include/conversation.php:968 include/conversation.php:984
-#: include/Contact.php:333 include/Contact.php:346 include/Contact.php:391
-#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
-#: mod/match.php:71 mod/suggest.php:82
-msgid "View Profile"
+#: include/enotify.php:43 include/delivery.php:457
+msgid "noreply"
 msgstr ""
 
-#: include/conversation.php:969 include/Contact.php:392
-msgid "View Photos"
+#: include/enotify.php:70
+#, php-format
+msgid "%s <!item_type!>"
 msgstr ""
 
-#: include/conversation.php:970 include/Contact.php:393
-msgid "Network Posts"
+#: include/enotify.php:83
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
 msgstr ""
 
-#: include/conversation.php:971 include/Contact.php:394
-msgid "View Contact"
+#: include/enotify.php:85
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
 msgstr ""
 
-#: include/conversation.php:972 include/Contact.php:396
-msgid "Send PM"
+#: include/enotify.php:86
+#, php-format
+msgid "%1$s sent you %2$s."
 msgstr ""
 
-#: include/conversation.php:976 include/Contact.php:397
-msgid "Poke"
+#: include/enotify.php:86
+msgid "a private message"
 msgstr ""
 
-#: include/conversation.php:1094
+#: include/enotify.php:88
 #, php-format
-msgid "%s likes this."
+msgid "Please visit %s to view and/or reply to your private messages."
 msgstr ""
 
-#: include/conversation.php:1097
+#: include/enotify.php:134
 #, php-format
-msgid "%s doesn't like this."
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
 msgstr ""
 
-#: include/conversation.php:1100
+#: include/enotify.php:141
 #, php-format
-msgid "%s attends."
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
 msgstr ""
 
-#: include/conversation.php:1103
+#: include/enotify.php:149
 #, php-format
-msgid "%s doesn't attend."
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
 msgstr ""
 
-#: include/conversation.php:1106
+#: include/enotify.php:159
 #, php-format
-msgid "%s attends maybe."
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
 msgstr ""
 
-#: include/conversation.php:1116
-msgid "and"
+#: include/enotify.php:161
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
 msgstr ""
 
-#: include/conversation.php:1122
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
 #, php-format
-msgid ", and %d other people"
+msgid "Please visit %s to view and/or reply to the conversation."
 msgstr ""
 
-#: include/conversation.php:1131
+#: include/enotify.php:171
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+msgid "[Friendica:Notify] %s posted to your profile wall"
 msgstr ""
 
-#: include/conversation.php:1132
+#: include/enotify.php:173
 #, php-format
-msgid "%s like this."
+msgid "%1$s posted to your profile wall at %2$s"
 msgstr ""
 
-#: include/conversation.php:1135
+#: include/enotify.php:174
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
 msgstr ""
 
-#: include/conversation.php:1136
+#: include/enotify.php:185
 #, php-format
-msgid "%s don't like this."
+msgid "[Friendica:Notify] %s tagged you"
 msgstr ""
 
-#: include/conversation.php:1139
+#: include/enotify.php:187
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
+msgid "%1$s tagged you at %2$s"
 msgstr ""
 
-#: include/conversation.php:1140
+#: include/enotify.php:188
 #, php-format
-msgid "%s attend."
+msgid "%1$s [url=%2$s]tagged you[/url]."
 msgstr ""
 
-#: include/conversation.php:1143
+#: include/enotify.php:199
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
+msgid "[Friendica:Notify] %s shared a new post"
 msgstr ""
 
-#: include/conversation.php:1144
+#: include/enotify.php:201
 #, php-format
-msgid "%s don't attend."
+msgid "%1$s shared a new post at %2$s"
 msgstr ""
 
-#: include/conversation.php:1147
+#: include/enotify.php:202
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgid "%1$s [url=%2$s]shared a post[/url]."
 msgstr ""
 
-#: include/conversation.php:1148
+#: include/enotify.php:213
 #, php-format
-msgid "%s anttend maybe."
+msgid "[Friendica:Notify] %1$s poked you"
 msgstr ""
 
-#: include/conversation.php:1187 include/conversation.php:1205
-msgid "Visible to <strong>everybody</strong>"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
 msgstr ""
 
-#: include/conversation.php:1188 include/conversation.php:1206
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
 msgstr ""
 
-#: include/conversation.php:1189 include/conversation.php:1207
-msgid "Please enter a video link/URL:"
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Please enter an audio link/URL:"
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
 msgstr ""
 
-#: include/conversation.php:1191 include/conversation.php:1209
-msgid "Tag term:"
+#: include/enotify.php:234
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
 msgstr ""
 
-#: include/conversation.php:1192 include/conversation.php:1210
-#: mod/filer.php:30
-msgid "Save to Folder:"
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
 msgstr ""
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Where are you right now?"
+#: include/enotify.php:247
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
 msgstr ""
 
-#: include/conversation.php:1194
-msgid "Delete item(s)?"
+#: include/enotify.php:248
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: include/conversation.php:1242 mod/photos.php:1569
-msgid "Share"
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
 msgstr ""
 
-#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
 msgstr ""
 
-#: include/conversation.php:1244 mod/editpost.php:111
-msgid "upload photo"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
 msgstr ""
 
-#: include/conversation.php:1245 mod/editpost.php:112
-msgid "Attach file"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
 msgstr ""
 
-#: include/conversation.php:1246 mod/editpost.php:113
-msgid "attach file"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
 msgstr ""
 
-#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
+#: include/enotify.php:273 include/enotify.php:274
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
 msgstr ""
 
-#: include/conversation.php:1248 mod/editpost.php:115
-msgid "web link"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
 msgstr ""
 
-#: include/conversation.php:1249 mod/editpost.php:116
-msgid "Insert video link"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: include/conversation.php:1250 mod/editpost.php:117
-msgid "video link"
+#: include/enotify.php:288
+#, php-format
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
 msgstr ""
 
-#: include/conversation.php:1251 mod/editpost.php:118
-msgid "Insert audio link"
+#: include/enotify.php:293
+msgid "Name:"
 msgstr ""
 
-#: include/conversation.php:1252 mod/editpost.php:119
-msgid "audio link"
+#: include/enotify.php:294
+msgid "Photo:"
 msgstr ""
 
-#: include/conversation.php:1253 mod/editpost.php:120
-msgid "Set your location"
+#: include/enotify.php:297
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
 msgstr ""
 
-#: include/conversation.php:1254 mod/editpost.php:121
-msgid "set location"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
 msgstr ""
 
-#: include/conversation.php:1255 mod/editpost.php:122
-msgid "Clear browser location"
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
 msgstr ""
 
-#: include/conversation.php:1256 mod/editpost.php:123
-msgid "clear location"
+#: include/enotify.php:308 include/enotify.php:322
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
 msgstr ""
 
-#: include/conversation.php:1258 mod/editpost.php:137
-msgid "Set title"
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
 msgstr ""
 
-#: include/conversation.php:1260 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
+#: include/enotify.php:314
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/conversation.php:1262 mod/editpost.php:125
-msgid "Permission settings"
+#: include/enotify.php:326
+#, 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/conversation.php:1263 mod/editpost.php:154
-msgid "permissions"
+#: include/enotify.php:328
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
 msgstr ""
 
-#: include/conversation.php:1271 mod/editpost.php:134
-msgid "Public post"
+#: include/enotify.php:330
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
 msgstr ""
 
-#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
-#: mod/photos.php:1725 object/Item.php:729
-msgid "Preview"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
 msgstr ""
 
-#: include/conversation.php:1280 include/items.php:1917 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
-#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
-#: mod/contacts.php:445 mod/photos.php:235 mod/photos.php:322
-#: mod/suggest.php:32 mod/videos.php:128 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Cancel"
+#: include/enotify.php:342
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
 msgstr ""
 
-#: include/conversation.php:1286
-msgid "Post to Groups"
+#: include/enotify.php:343
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
 msgstr ""
 
-#: include/conversation.php:1287
-msgid "Post to Contacts"
+#: include/enotify.php:347
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 msgstr ""
 
-#: include/conversation.php:1288
-msgid "Private post"
+#: include/enotify.php:350
+#, php-format
+msgid "Please visit %s to approve or reject the request."
 msgstr ""
 
-#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
+#: include/event.php:441
+msgid "Sun"
 msgstr ""
 
-#: include/conversation.php:1294 mod/editpost.php:153
-msgid "Browser"
+#: include/event.php:442
+msgid "Mon"
 msgstr ""
 
-#: include/conversation.php:1449
-msgid "View all"
+#: include/event.php:443
+msgid "Tue"
 msgstr ""
 
-#: include/conversation.php:1471
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] ""
-msgstr[1] ""
+#: include/event.php:444
+msgid "Wed"
+msgstr ""
 
-#: include/conversation.php:1474
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] ""
-msgstr[1] ""
+#: include/event.php:445
+msgid "Thu"
+msgstr ""
 
-#: include/conversation.php:1480
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] ""
-msgstr[1] ""
+#: include/event.php:446
+msgid "Fri"
+msgstr ""
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
+#: include/event.php:447
+msgid "Sat"
 msgstr ""
 
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
+#: include/event.php:448 include/text.php:1130 mod/settings.php:972
+msgid "Sunday"
 msgstr ""
 
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
+#: include/event.php:449 include/text.php:1130 mod/settings.php:972
+msgid "Monday"
 msgstr ""
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
+#: include/event.php:450 include/text.php:1130
+msgid "Tuesday"
 msgstr ""
 
-#: include/datetime.php:341
-msgid "never"
+#: include/event.php:451 include/text.php:1130
+msgid "Wednesday"
 msgstr ""
 
-#: include/datetime.php:347
-msgid "less than a second ago"
+#: include/event.php:452 include/text.php:1130
+msgid "Thursday"
 msgstr ""
 
-#: include/datetime.php:350
-msgid "year"
+#: include/event.php:453 include/text.php:1130
+msgid "Friday"
 msgstr ""
 
-#: include/datetime.php:350
-msgid "years"
+#: include/event.php:454 include/text.php:1130
+msgid "Saturday"
 msgstr ""
 
-#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
-#: mod/events.php:389
-msgid "month"
+#: include/event.php:455
+msgid "Jan"
 msgstr ""
 
-#: include/datetime.php:351
-msgid "months"
+#: include/event.php:456
+msgid "Feb"
 msgstr ""
 
-#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
-#: mod/events.php:390
-msgid "week"
+#: include/event.php:457
+msgid "Mar"
 msgstr ""
 
-#: include/datetime.php:352
-msgid "weeks"
+#: include/event.php:458
+msgid "Apr"
 msgstr ""
 
-#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
-#: mod/events.php:391
-msgid "day"
+#: include/event.php:459 include/event.php:471 include/text.php:1134
+msgid "May"
 msgstr ""
 
-#: include/datetime.php:353
-msgid "days"
+#: include/event.php:460
+msgid "Jun"
 msgstr ""
 
-#: include/datetime.php:354
-msgid "hour"
+#: include/event.php:461
+msgid "Jul"
 msgstr ""
 
-#: include/datetime.php:354
-msgid "hours"
+#: include/event.php:462
+msgid "Aug"
 msgstr ""
 
-#: include/datetime.php:355
-msgid "minute"
+#: include/event.php:463
+msgid "Sept"
+msgstr ""
+
+#: include/event.php:464
+msgid "Oct"
+msgstr ""
+
+#: include/event.php:465
+msgid "Nov"
+msgstr ""
+
+#: include/event.php:466
+msgid "Dec"
+msgstr ""
+
+#: include/event.php:467 include/text.php:1134
+msgid "January"
+msgstr ""
+
+#: include/event.php:468 include/text.php:1134
+msgid "February"
+msgstr ""
+
+#: include/event.php:469 include/text.php:1134
+msgid "March"
+msgstr ""
+
+#: include/event.php:470 include/text.php:1134
+msgid "April"
+msgstr ""
+
+#: include/event.php:472 include/text.php:1134
+msgid "June"
+msgstr ""
+
+#: include/event.php:473 include/text.php:1134
+msgid "July"
+msgstr ""
+
+#: include/event.php:474 include/text.php:1134
+msgid "August"
+msgstr ""
+
+#: include/event.php:475 include/text.php:1134
+msgid "September"
+msgstr ""
+
+#: include/event.php:476 include/text.php:1134
+msgid "October"
+msgstr ""
+
+#: include/event.php:477 include/text.php:1134
+msgid "November"
+msgstr ""
+
+#: include/event.php:478 include/text.php:1134
+msgid "December"
+msgstr ""
+
+#: include/event.php:479 mod/cal.php:283 mod/events.php:388
+msgid "today"
+msgstr ""
+
+#: include/event.php:483
+msgid "all-day"
+msgstr ""
+
+#: include/event.php:485
+msgid "No events to display"
+msgstr ""
+
+#: include/event.php:574
+msgid "l, F j"
+msgstr ""
+
+#: include/event.php:593
+msgid "Edit event"
+msgstr ""
+
+#: include/event.php:615 include/text.php:1536 include/text.php:1543
+msgid "link to source"
+msgstr ""
+
+#: include/event.php:850
+msgid "Export"
+msgstr ""
+
+#: include/event.php:851
+msgid "Export calendar as ical"
+msgstr ""
+
+#: include/event.php:852
+msgid "Export calendar as csv"
+msgstr ""
+
+#: include/follow.php:77 mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
 msgstr ""
 
-#: include/datetime.php:355
-msgid "minutes"
+#: include/follow.php:82
+msgid "Connect URL missing."
 msgstr ""
 
-#: include/datetime.php:356
-msgid "second"
+#: include/follow.php:109
+msgid ""
+"This site is not configured to allow communications with other networks."
 msgstr ""
 
-#: include/datetime.php:356
-msgid "seconds"
+#: include/follow.php:110 include/follow.php:130
+msgid "No compatible communication protocols or feeds were discovered."
 msgstr ""
 
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
+#: include/follow.php:128
+msgid "The profile address specified does not provide adequate information."
 msgstr ""
 
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
+#: include/follow.php:132
+msgid "An author or name was not found."
 msgstr ""
 
-#: include/datetime.php:573 include/dfrn.php:1108
-#, php-format
-msgid "Happy Birthday %s"
+#: include/follow.php:134
+msgid "No browser URL could be matched to this address."
 msgstr ""
 
-#: include/dbstructure.php:26
-#, php-format
+#: include/follow.php:136
 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."
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
+#: include/follow.php:137
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
+#: include/follow.php:143
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
 msgstr ""
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
+#: include/follow.php:153
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
 msgstr ""
 
-#: include/dfrn.php:1107
-#, php-format
-msgid "%s\\'s birthday"
+#: include/follow.php:254
+msgid "Unable to retrieve contact information."
 msgstr ""
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
+#: include/follow.php:287
+msgid "following"
 msgstr ""
 
-#: include/enotify.php:27
-msgid "Thank You,"
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
 msgstr ""
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
 msgstr ""
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
+#: include/nav.php:40 include/text.php:1015
+msgid "@name, !forum, #tags, content"
 msgstr ""
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1787
+msgid "Logout"
 msgstr ""
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+#: include/nav.php:78 view/theme/frio/theme.php:243
+msgid "End this session"
 msgstr ""
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
+#: mod/contacts.php:833 view/theme/frio/theme.php:246
+msgid "Status"
 msgstr ""
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
+msgid "Your posts and conversations"
 msgstr ""
 
-#: include/enotify.php:86
-msgid "a private message"
+#: include/nav.php:82 include/identity.php:605 include/identity.php:691
+#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
+#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
+msgid "Profile"
 msgstr ""
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: include/nav.php:82 view/theme/frio/theme.php:247
+msgid "Your profile page"
 msgstr ""
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
+#: view/theme/frio/theme.php:248
+msgid "Photos"
 msgstr ""
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: include/nav.php:83 view/theme/frio/theme.php:248
+msgid "Your photos"
 msgstr ""
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: include/nav.php:84 include/identity.php:738 include/identity.php:741
+#: view/theme/frio/theme.php:249
+msgid "Videos"
 msgstr ""
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your videos"
 msgstr ""
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
+#: include/nav.php:85 include/nav.php:149 include/identity.php:750
+#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
+#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
+msgid "Events"
 msgstr ""
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your events"
 msgstr ""
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
+#: include/nav.php:86
+msgid "Personal notes"
 msgstr ""
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: include/nav.php:86
+msgid "Your personal notes"
 msgstr ""
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1788
+msgid "Login"
 msgstr ""
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
+#: include/nav.php:95
+msgid "Sign in"
 msgstr ""
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
+#: include/nav.php:105 include/nav.php:161
+#: include/NotificationsManager.php:174
+msgid "Home"
 msgstr ""
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
+#: include/nav.php:105
+msgid "Home Page"
 msgstr ""
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
+#: include/nav.php:109 mod/register.php:289 boot.php:1763
+msgid "Register"
 msgstr ""
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
+#: include/nav.php:109
+msgid "Create an account"
 msgstr ""
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
+msgid "Help"
 msgstr ""
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
+#: include/nav.php:115
+msgid "Help and documentation"
 msgstr ""
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
+#: include/nav.php:119
+msgid "Apps"
 msgstr ""
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
 msgstr ""
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
+#: include/nav.php:123 include/text.php:1012 mod/search.php:149
+msgid "Search"
 msgstr ""
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
+#: include/nav.php:123
+msgid "Search site content"
 msgstr ""
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
+#: include/nav.php:126 include/text.php:1020
+msgid "Full Text"
 msgstr ""
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
+#: include/nav.php:127 include/text.php:1021
+msgid "Tags"
 msgstr ""
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
+#: include/nav.php:128 include/nav.php:192 include/identity.php:783
+#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
+#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
+msgid "Contacts"
 msgstr ""
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+#: include/nav.php:143 include/nav.php:145 mod/community.php:36
+msgid "Community"
 msgstr ""
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
+#: include/nav.php:143
+msgid "Conversations on this site"
 msgstr ""
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
+#: include/nav.php:145
+msgid "Conversations on the network"
 msgstr ""
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
+#: include/nav.php:149 include/identity.php:753 include/identity.php:764
+#: view/theme/frio/theme.php:254
+msgid "Events and Calendar"
 msgstr ""
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
+#: include/nav.php:152
+msgid "Directory"
 msgstr ""
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
+#: include/nav.php:152
+msgid "People directory"
 msgstr ""
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
+#: include/nav.php:154
+msgid "Information"
 msgstr ""
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
+#: include/nav.php:154
+msgid "Information about this friendica instance"
 msgstr ""
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
+#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
+#: view/theme/frio/theme.php:253
+msgid "Network"
 msgstr ""
 
-#: include/enotify.php:288
-#, php-format
-msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+#: include/nav.php:158 view/theme/frio/theme.php:253
+msgid "Conversations from your friends"
 msgstr ""
 
-#: include/enotify.php:293
-msgid "Name:"
+#: include/nav.php:159
+msgid "Network Reset"
 msgstr ""
 
-#: include/enotify.php:294
-msgid "Photo:"
+#: include/nav.php:159
+msgid "Load Network page with no filters"
 msgstr ""
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
+#: include/nav.php:166 include/NotificationsManager.php:181
+msgid "Introductions"
 msgstr ""
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
+#: include/nav.php:166
+msgid "Friend Requests"
 msgstr ""
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
 msgstr ""
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+#: include/nav.php:170
+msgid "See all notifications"
 msgstr ""
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
+#: include/nav.php:171 mod/settings.php:902
+msgid "Mark as seen"
 msgstr ""
 
-#: include/enotify.php:314
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: include/enotify.php:326
-#, 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/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
+msgid "Messages"
 msgstr ""
 
-#: include/enotify.php:328
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
+#: include/nav.php:175 view/theme/frio/theme.php:255
+msgid "Private mail"
 msgstr ""
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
+#: include/nav.php:176
+msgid "Inbox"
 msgstr ""
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
+#: include/nav.php:177
+msgid "Outbox"
 msgstr ""
 
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
 msgstr ""
 
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+#: include/nav.php:181
+msgid "Manage"
 msgstr ""
 
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+#: include/nav.php:181
+msgid "Manage other pages"
 msgstr ""
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
 msgstr ""
 
-#: include/event.php:441
-msgid "Sun"
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
 msgstr ""
 
-#: include/event.php:442
-msgid "Mon"
+#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1520
+#: mod/admin.php:1778 mod/settings.php:111 view/theme/frio/theme.php:256
+msgid "Settings"
 msgstr ""
 
-#: include/event.php:443
-msgid "Tue"
+#: include/nav.php:186 view/theme/frio/theme.php:256
+msgid "Account settings"
 msgstr ""
 
-#: include/event.php:444
-msgid "Wed"
+#: include/nav.php:189 include/identity.php:282
+msgid "Profiles"
 msgstr ""
 
-#: include/event.php:445
-msgid "Thu"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: include/event.php:446
-msgid "Fri"
+#: include/nav.php:192 view/theme/frio/theme.php:257
+msgid "Manage/edit friends and contacts"
 msgstr ""
 
-#: include/event.php:447
-msgid "Sat"
+#: include/nav.php:197 mod/admin.php:186
+msgid "Admin"
 msgstr ""
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:968
-msgid "Sunday"
+#: include/nav.php:197
+msgid "Site setup and configuration"
 msgstr ""
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:968
-msgid "Monday"
+#: include/nav.php:200
+msgid "Navigation"
 msgstr ""
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
+#: include/nav.php:200
+msgid "Site map"
 msgstr ""
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
+#: include/oembed.php:252
+msgid "Embedded content"
 msgstr ""
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
+#: include/oembed.php:260
+msgid "Embedding disabled"
 msgstr ""
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
+#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
+#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
+#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
+msgid "Contact Photos"
 msgstr ""
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
+#: include/security.php:22
+msgid "Welcome "
 msgstr ""
 
-#: include/event.php:455
-msgid "Jan"
+#: include/security.php:23
+msgid "Please upload a profile photo."
 msgstr ""
 
-#: include/event.php:456
-msgid "Feb"
+#: include/security.php:26
+msgid "Welcome back "
 msgstr ""
 
-#: include/event.php:457
-msgid "Mar"
+#: include/security.php:373
+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/event.php:458
-msgid "Apr"
+#: include/Contact.php:119
+msgid "stopped following"
 msgstr ""
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
+#: include/Contact.php:361 include/Contact.php:374 include/Contact.php:419
+#: include/conversation.php:968 include/conversation.php:984
+#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
+#: mod/match.php:71 mod/suggest.php:82
+msgid "View Profile"
 msgstr ""
 
-#: include/event.php:460
-msgid "Jun"
+#: include/Contact.php:418 include/conversation.php:967
+msgid "View Status"
 msgstr ""
 
-#: include/event.php:461
-msgid "Jul"
+#: include/Contact.php:420 include/conversation.php:969
+msgid "View Photos"
 msgstr ""
 
-#: include/event.php:462
-msgid "Aug"
+#: include/Contact.php:421 include/conversation.php:970
+msgid "Network Posts"
 msgstr ""
 
-#: include/event.php:463
-msgid "Sept"
+#: include/Contact.php:422 include/conversation.php:971
+msgid "View Contact"
 msgstr ""
 
-#: include/event.php:464
-msgid "Oct"
+#: include/Contact.php:423
+msgid "Drop Contact"
 msgstr ""
 
-#: include/event.php:465
-msgid "Nov"
+#: include/Contact.php:424 include/conversation.php:972
+msgid "Send PM"
 msgstr ""
 
-#: include/event.php:466
-msgid "Dec"
+#: include/Contact.php:425 include/conversation.php:976
+msgid "Poke"
 msgstr ""
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
+#: include/Contact.php:798
+msgid "Organisation"
 msgstr ""
 
-#: include/event.php:468 include/text.php:1134
-msgid "February"
+#: include/Contact.php:801
+msgid "News"
 msgstr ""
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
+#: include/Contact.php:804
+msgid "Forum"
 msgstr ""
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
+#: include/NotificationsManager.php:153
+msgid "System"
 msgstr ""
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
+#: include/NotificationsManager.php:167 mod/profiles.php:703
+#: mod/network.php:846
+msgid "Personal"
 msgstr ""
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
+#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
+#, php-format
+msgid "%s commented on %s's post"
 msgstr ""
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
+#: include/NotificationsManager.php:243
+#, php-format
+msgid "%s created a new post"
 msgstr ""
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
+#: include/NotificationsManager.php:256
+#, php-format
+msgid "%s liked %s's post"
 msgstr ""
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
+#: include/NotificationsManager.php:267
+#, php-format
+msgid "%s disliked %s's post"
 msgstr ""
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s is attending %s's event"
 msgstr ""
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
+#: include/NotificationsManager.php:289
+#, php-format
+msgid "%s is not attending %s's event"
 msgstr ""
 
-#: include/event.php:479 mod/cal.php:283 mod/events.php:388
-msgid "today"
+#: include/NotificationsManager.php:300
+#, php-format
+msgid "%s may attend %s's event"
 msgstr ""
 
-#: include/event.php:483
-msgid "all-day"
+#: include/NotificationsManager.php:315
+#, php-format
+msgid "%s is now friends with %s"
 msgstr ""
 
-#: include/event.php:485
-msgid "No events to display"
+#: include/NotificationsManager.php:748
+msgid "Friend Suggestion"
 msgstr ""
 
-#: include/event.php:574
-msgid "l, F j"
+#: include/NotificationsManager.php:781
+msgid "Friend/Connect Request"
 msgstr ""
 
-#: include/event.php:593
-msgid "Edit event"
+#: include/NotificationsManager.php:781
+msgid "New Follower"
 msgstr ""
 
-#: include/event.php:615 include/text.php:1536 include/text.php:1543
-msgid "link to source"
+#: include/api.php:1018
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/event.php:850
-msgid "Export"
+#: include/api.php:1038
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/event.php:851
-msgid "Export calendar as ical"
+#: include/api.php:1059
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
 msgstr ""
 
-#: include/event.php:852
-msgid "Export calendar as csv"
+#: include/conversation.php:147
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
 msgstr ""
 
-#: include/follow.php:77 mod/dfrn_request.php:507
-msgid "Disallowed profile URL."
+#: include/conversation.php:150
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
 msgstr ""
 
-#: include/follow.php:82
-msgid "Connect URL missing."
+#: include/conversation.php:153
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
 msgstr ""
 
-#: include/follow.php:109
-msgid ""
-"This site is not configured to allow communications with other networks."
+#: include/conversation.php:185 mod/dfrn_confirm.php:473
+#, php-format
+msgid "%1$s is now friends with %2$s"
 msgstr ""
 
-#: include/follow.php:110 include/follow.php:130
-msgid "No compatible communication protocols or feeds were discovered."
+#: include/conversation.php:219
+#, php-format
+msgid "%1$s poked %2$s"
 msgstr ""
 
-#: include/follow.php:128
-msgid "The profile address specified does not provide adequate information."
+#: include/conversation.php:239 mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: include/follow.php:132
-msgid "An author or name was not found."
+#: include/conversation.php:278 mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
 msgstr ""
 
-#: include/follow.php:134
-msgid "No browser URL could be matched to this address."
+#: include/conversation.php:303
+msgid "post/item"
 msgstr ""
 
-#: include/follow.php:136
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+#: include/conversation.php:304
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
 msgstr ""
 
-#: include/follow.php:137
-msgid "Use mailto: in front of address to force email check."
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
+#: mod/photos.php:1607
+msgid "Likes"
 msgstr ""
 
-#: include/follow.php:143
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
+#: mod/photos.php:1607
+msgid "Dislikes"
 msgstr ""
 
-#: include/follow.php:153
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr ""
+#: include/conversation.php:586 include/conversation.php:1477
+#: mod/content.php:373 mod/photos.php:1608
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] ""
+msgstr[1] ""
 
-#: include/follow.php:254
-msgid "Unable to retrieve contact information."
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Not attending"
 msgstr ""
 
-#: include/follow.php:287
-msgid "following"
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Might attend"
 msgstr ""
 
-#: include/identity.php:42
-msgid "Requested account is not available."
+#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
+#: mod/photos.php:1681 object/Item.php:133
+msgid "Select"
 msgstr ""
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
+#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
+#: mod/content.php:759 mod/contacts.php:808 mod/contacts.php:1016
+#: mod/admin.php:1410 mod/photos.php:1682 mod/settings.php:741
+#: object/Item.php:134
+msgid "Delete"
 msgstr ""
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
+#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
+#: mod/content.php:911 object/Item.php:367 object/Item.php:368
+#, php-format
+msgid "View %s's profile @ %s"
 msgstr ""
 
-#: include/identity.php:251
-msgid "Atom feed"
+#: include/conversation.php:765 object/Item.php:355
+msgid "Categories:"
 msgstr ""
 
-#: include/identity.php:282 include/nav.php:189
-msgid "Profiles"
+#: include/conversation.php:766 object/Item.php:356
+msgid "Filed under:"
 msgstr ""
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
+#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
+#: object/Item.php:381
+#, php-format
+msgid "%s from %s"
 msgstr ""
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
+#: include/conversation.php:789 mod/content.php:513
+msgid "View in context"
 msgstr ""
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
+#: include/conversation.php:791 include/conversation.php:1261
+#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
+#: mod/message.php:548 mod/content.php:515 mod/content.php:948
+#: mod/photos.php:1570 object/Item.php:406
+msgid "Please wait"
 msgstr ""
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
+#: include/conversation.php:870
+msgid "remove"
 msgstr ""
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
+#: include/conversation.php:874
+msgid "Delete Selected Items"
 msgstr ""
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
+#: include/conversation.php:966
+msgid "Follow Thread"
 msgstr ""
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
+#: include/conversation.php:1094
+#, php-format
+msgid "%s likes this."
 msgstr ""
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
+#: include/conversation.php:1097
+#, php-format
+msgid "%s doesn't like this."
 msgstr ""
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
+#: include/conversation.php:1100
+#, php-format
+msgid "%s attends."
 msgstr ""
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/contacts.php:632 mod/directory.php:145
-msgid "About:"
+#: include/conversation.php:1103
+#, php-format
+msgid "%s doesn't attend."
 msgstr ""
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
+#: include/conversation.php:1106
+#, php-format
+msgid "%s attends maybe."
 msgstr ""
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
+#: include/conversation.php:1116
+msgid "and"
 msgstr ""
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
+#: include/conversation.php:1122
+#, php-format
+msgid ", and %d other people"
 msgstr ""
 
-#: include/identity.php:452 include/identity.php:536
-msgid "F d"
+#: include/conversation.php:1131
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
 msgstr ""
 
-#: include/identity.php:497 include/identity.php:582
-msgid "[today]"
+#: include/conversation.php:1132
+#, php-format
+msgid "%s like this."
 msgstr ""
 
-#: include/identity.php:509
-msgid "Birthday Reminders"
+#: include/conversation.php:1135
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
 msgstr ""
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
+#: include/conversation.php:1136
+#, php-format
+msgid "%s don't like this."
 msgstr ""
 
-#: include/identity.php:569
-msgid "[No description]"
+#: include/conversation.php:1139
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
 msgstr ""
 
-#: include/identity.php:593
-msgid "Event Reminders"
+#: include/conversation.php:1140
+#, php-format
+msgid "%s attend."
 msgstr ""
 
-#: include/identity.php:594
-msgid "Events this week:"
+#: include/conversation.php:1143
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
 msgstr ""
 
-#: include/identity.php:605 include/identity.php:691 include/identity.php:722
-#: include/nav.php:82 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Profile"
+#: include/conversation.php:1144
+#, php-format
+msgid "%s don't attend."
 msgstr ""
 
-#: include/identity.php:614 mod/settings.php:1274
-msgid "Full Name:"
+#: include/conversation.php:1147
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
 msgstr ""
 
-#: include/identity.php:621
-msgid "j F, Y"
+#: include/conversation.php:1148
+#, php-format
+msgid "%s anttend maybe."
 msgstr ""
 
-#: include/identity.php:622
-msgid "j F"
+#: include/conversation.php:1187 include/conversation.php:1205
+msgid "Visible to <strong>everybody</strong>"
 msgstr ""
 
-#: include/identity.php:633
-msgid "Age:"
+#: include/conversation.php:1188 include/conversation.php:1206
+#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
+#: mod/message.php:299 mod/message.php:442 mod/message.php:450
+msgid "Please enter a link URL:"
 msgstr ""
 
-#: include/identity.php:642
-#, php-format
-msgid "for %1$d %2$s"
+#: include/conversation.php:1189 include/conversation.php:1207
+msgid "Please enter a video link/URL:"
 msgstr ""
 
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
+#: include/conversation.php:1190 include/conversation.php:1208
+msgid "Please enter an audio link/URL:"
 msgstr ""
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
+#: include/conversation.php:1191 include/conversation.php:1209
+msgid "Tag term:"
 msgstr ""
 
-#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
-#: mod/contacts.php:634
-msgid "Tags:"
+#: include/conversation.php:1192 include/conversation.php:1210
+#: mod/filer.php:30
+msgid "Save to Folder:"
 msgstr ""
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
+#: include/conversation.php:1193 include/conversation.php:1211
+msgid "Where are you right now?"
 msgstr ""
 
-#: include/identity.php:655
-msgid "Religion:"
+#: include/conversation.php:1194
+msgid "Delete item(s)?"
 msgstr ""
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
+#: include/conversation.php:1242 mod/photos.php:1569
+msgid "Share"
 msgstr ""
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
+#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
+#: mod/message.php:354 mod/message.php:545
+msgid "Upload photo"
 msgstr ""
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
+#: include/conversation.php:1244 mod/editpost.php:111
+msgid "upload photo"
 msgstr ""
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
+#: include/conversation.php:1245 mod/editpost.php:112
+msgid "Attach file"
 msgstr ""
 
-#: include/identity.php:668
-msgid "Musical interests:"
+#: include/conversation.php:1246 mod/editpost.php:113
+msgid "attach file"
 msgstr ""
 
-#: include/identity.php:670
-msgid "Books, literature:"
+#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
+#: mod/message.php:355 mod/message.php:546
+msgid "Insert web link"
 msgstr ""
 
-#: include/identity.php:672
-msgid "Television:"
+#: include/conversation.php:1248 mod/editpost.php:115
+msgid "web link"
 msgstr ""
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
+#: include/conversation.php:1249 mod/editpost.php:116
+msgid "Insert video link"
 msgstr ""
 
-#: include/identity.php:676
-msgid "Love/Romance:"
+#: include/conversation.php:1250 mod/editpost.php:117
+msgid "video link"
 msgstr ""
 
-#: include/identity.php:678
-msgid "Work/employment:"
+#: include/conversation.php:1251 mod/editpost.php:118
+msgid "Insert audio link"
 msgstr ""
 
-#: include/identity.php:680
-msgid "School/education:"
+#: include/conversation.php:1252 mod/editpost.php:119
+msgid "audio link"
 msgstr ""
 
-#: include/identity.php:684
-msgid "Forums:"
+#: include/conversation.php:1253 mod/editpost.php:120
+msgid "Set your location"
 msgstr ""
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
+#: include/conversation.php:1254 mod/editpost.php:121
+msgid "set location"
 msgstr ""
 
-#: include/identity.php:693 mod/admin.php:931 mod/contacts.php:870
-#: mod/events.php:508
-msgid "Advanced"
+#: include/conversation.php:1255 mod/editpost.php:122
+msgid "Clear browser location"
 msgstr ""
 
-#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:246
-msgid "Status"
+#: include/conversation.php:1256 mod/editpost.php:123
+msgid "clear location"
 msgstr ""
 
-#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
-msgid "Status Messages and Posts"
+#: include/conversation.php:1258 mod/editpost.php:137
+msgid "Set title"
 msgstr ""
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
+#: include/conversation.php:1260 mod/editpost.php:139
+msgid "Categories (comma-separated list)"
 msgstr ""
 
-#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126
-msgid "Photos"
+#: include/conversation.php:1262 mod/editpost.php:125
+msgid "Permission settings"
 msgstr ""
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
+#: include/conversation.php:1263 mod/editpost.php:154
+msgid "permissions"
 msgstr ""
 
-#: include/identity.php:738 include/identity.php:741 include/nav.php:84
-#: view/theme/frio/theme.php:249
-msgid "Videos"
+#: include/conversation.php:1271 mod/editpost.php:134
+msgid "Public post"
 msgstr ""
 
-#: include/identity.php:750 include/identity.php:761 include/nav.php:85
-#: include/nav.php:149 mod/cal.php:275 mod/events.php:379
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-#: view/theme/diabook/theme.php:127
-msgid "Events"
+#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
+#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
+#: mod/photos.php:1725 object/Item.php:729
+msgid "Preview"
 msgstr ""
 
-#: include/identity.php:753 include/identity.php:764 include/nav.php:149
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
+#: include/conversation.php:1280 include/items.php:1952 mod/fbrowser.php:101
+#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
+#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
+#: mod/contacts.php:445 mod/suggest.php:32 mod/photos.php:235
+#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
+#: mod/videos.php:128
+msgid "Cancel"
 msgstr ""
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
+#: include/conversation.php:1286
+msgid "Post to Groups"
 msgstr ""
 
-#: include/identity.php:775
-msgid "Only You Can See This"
+#: include/conversation.php:1287
+msgid "Post to Contacts"
 msgstr ""
 
-#: include/identity.php:783 include/identity.php:786 include/nav.php:128
-#: include/nav.php:192 include/text.php:1022 mod/contacts.php:792
-#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
-#: view/theme/diabook/theme.php:125
-msgid "Contacts"
+#: include/conversation.php:1288
+msgid "Private post"
 msgstr ""
 
-#: include/items.php:1518 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
-msgid "[Name Withheld]"
+#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
+msgid "Message"
 msgstr ""
 
-#: include/items.php:1873 mod/viewsrc.php:15 mod/notice.php:15
-#: mod/admin.php:234 mod/admin.php:1441 mod/admin.php:1675 mod/display.php:103
-#: mod/display.php:279 mod/display.php:478
-msgid "Item not found."
+#: include/conversation.php:1294 mod/editpost.php:153
+msgid "Browser"
 msgstr ""
 
-#: include/items.php:1912
-msgid "Do you really want to delete this item?"
+#: include/conversation.php:1449
+msgid "View all"
 msgstr ""
 
-#: include/items.php:1914 mod/follow.php:110 mod/api.php:105
-#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
-#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
-#: mod/register.php:238 mod/suggest.php:29 mod/settings.php:1158
-#: mod/settings.php:1164 mod/settings.php:1172 mod/settings.php:1176
-#: mod/settings.php:1181 mod/settings.php:1187 mod/settings.php:1193
-#: mod/settings.php:1199 mod/settings.php:1225 mod/settings.php:1226
-#: mod/settings.php:1227 mod/settings.php:1228 mod/settings.php:1229
-msgid "Yes"
+#: include/conversation.php:1471
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1474
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/conversation.php:1480
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] ""
+msgstr[1] ""
+
+#: 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."
 msgstr ""
 
-#: include/items.php:2077 mod/wall_upload.php:77 mod/wall_upload.php:80
-#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
-#: mod/invite.php:101 mod/wall_attach.php:67 mod/wall_attach.php:70
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
-#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
-#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
-#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
-#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
-#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
-#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
-#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
-#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
-#: mod/events.php:190 mod/item.php:198 mod/item.php:210 mod/network.php:4
-#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
-#: mod/suggest.php:58 mod/viewcontacts.php:45 mod/settings.php:22
-#: mod/settings.php:128 mod/settings.php:663 index.php:397
-msgid "Permission denied."
+#: include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
 msgstr ""
 
-#: include/items.php:2182
-msgid "Archives"
+#: include/dbstructure.php:183
+msgid "Errors encountered creating database tables."
 msgstr ""
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
+#: include/dbstructure.php:260
+msgid "Errors encountered performing database changes."
 msgstr ""
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
+#: include/delivery.php:446
+msgid "(no subject)"
 msgstr ""
 
-#: include/nav.php:40 include/text.php:1015
-msgid "@name, !forum, #tags, content"
+#: include/dfrn.php:1107
+#, php-format
+msgid "%s\\'s birthday"
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1778
-msgid "Logout"
+#: include/diaspora.php:1958
+msgid "Sharing notification from Diaspora network"
 msgstr ""
 
-#: include/nav.php:78 view/theme/frio/theme.php:243
-msgid "End this session"
+#: include/diaspora.php:2864
+msgid "Attachments:"
 msgstr ""
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
-#: view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
+#: include/identity.php:42
+msgid "Requested account is not available."
 msgstr ""
 
-#: include/nav.php:82 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Your profile page"
+#: include/identity.php:51 mod/profile.php:21
+msgid "Requested profile is not available."
 msgstr ""
 
-#: include/nav.php:83 view/theme/frio/theme.php:248
-#: view/theme/diabook/theme.php:126
-msgid "Your photos"
+#: include/identity.php:95 include/identity.php:311 include/identity.php:688
+msgid "Edit profile"
 msgstr ""
 
-#: include/nav.php:84 view/theme/frio/theme.php:249
-msgid "Your videos"
+#: include/identity.php:251
+msgid "Atom feed"
 msgstr ""
 
-#: include/nav.php:85 view/theme/frio/theme.php:250
-#: view/theme/diabook/theme.php:127
-msgid "Your events"
+#: include/identity.php:282
+msgid "Manage/edit profiles"
 msgstr ""
 
-#: include/nav.php:86 view/theme/diabook/theme.php:128
-msgid "Personal notes"
+#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
+msgid "Change profile photo"
 msgstr ""
 
-#: include/nav.php:86
-msgid "Your personal notes"
+#: include/identity.php:288 mod/profiles.php:796
+msgid "Create New Profile"
 msgstr ""
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1779
-msgid "Login"
+#: include/identity.php:298 mod/profiles.php:785
+msgid "Profile Image"
 msgstr ""
 
-#: include/nav.php:95
-msgid "Sign in"
+#: include/identity.php:301 mod/profiles.php:787
+msgid "visible to everybody"
 msgstr ""
 
-#: include/nav.php:105
-msgid "Home Page"
+#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
+msgid "Edit visibility"
 msgstr ""
 
-#: include/nav.php:109 mod/register.php:280 boot.php:1754
-msgid "Register"
+#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
+#: mod/directory.php:139
+msgid "Gender:"
 msgstr ""
 
-#: include/nav.php:109
-msgid "Create an account"
+#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
+msgid "Status:"
 msgstr ""
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
+#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
+msgid "Homepage:"
 msgstr ""
 
-#: include/nav.php:115
-msgid "Help and documentation"
+#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
+#: mod/contacts.php:632 mod/directory.php:145
+msgid "About:"
 msgstr ""
 
-#: include/nav.php:119
-msgid "Apps"
+#: include/identity.php:339 mod/contacts.php:630
+msgid "XMPP:"
 msgstr ""
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
+#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
+msgid "Network:"
 msgstr ""
 
-#: include/nav.php:123 include/text.php:1012 mod/search.php:149
-msgid "Search"
+#: include/identity.php:451 include/identity.php:535
+msgid "g A l F d"
 msgstr ""
 
-#: include/nav.php:123
-msgid "Search site content"
+#: include/identity.php:452 include/identity.php:536
+msgid "F d"
+msgstr ""
+
+#: include/identity.php:497 include/identity.php:582
+msgid "[today]"
 msgstr ""
 
-#: include/nav.php:126 include/text.php:1020
-msgid "Full Text"
+#: include/identity.php:509
+msgid "Birthday Reminders"
 msgstr ""
 
-#: include/nav.php:127 include/text.php:1021
-msgid "Tags"
+#: include/identity.php:510
+msgid "Birthdays this week:"
 msgstr ""
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-#: view/theme/diabook/theme.php:129
-msgid "Community"
+#: include/identity.php:569
+msgid "[No description]"
 msgstr ""
 
-#: include/nav.php:143
-msgid "Conversations on this site"
+#: include/identity.php:593
+msgid "Event Reminders"
 msgstr ""
 
-#: include/nav.php:145
-msgid "Conversations on the network"
+#: include/identity.php:594
+msgid "Events this week:"
 msgstr ""
 
-#: include/nav.php:152
-msgid "Directory"
+#: include/identity.php:614 mod/settings.php:1279
+msgid "Full Name:"
 msgstr ""
 
-#: include/nav.php:152
-msgid "People directory"
+#: include/identity.php:621
+msgid "j F, Y"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information"
+#: include/identity.php:622
+msgid "j F"
 msgstr ""
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
+#: include/identity.php:633
+msgid "Age:"
 msgstr ""
 
-#: include/nav.php:158 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
+#: include/identity.php:642
+#, php-format
+msgid "for %1$d %2$s"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Network Reset"
+#: include/identity.php:645 mod/profiles.php:710
+msgid "Sexual Preference:"
 msgstr ""
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
+#: include/identity.php:649 mod/profiles.php:737
+msgid "Hometown:"
 msgstr ""
 
-#: include/nav.php:166
-msgid "Friend Requests"
+#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
+#: mod/contacts.php:634
+msgid "Tags:"
 msgstr ""
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
+#: include/identity.php:653 mod/profiles.php:738
+msgid "Political Views:"
 msgstr ""
 
-#: include/nav.php:170
-msgid "See all notifications"
+#: include/identity.php:655
+msgid "Religion:"
 msgstr ""
 
-#: include/nav.php:171 mod/settings.php:900
-msgid "Mark as seen"
+#: include/identity.php:659
+msgid "Hobbies/Interests:"
 msgstr ""
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
+#: include/identity.php:661 mod/profiles.php:742
+msgid "Likes:"
 msgstr ""
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
-msgid "Messages"
+#: include/identity.php:663 mod/profiles.php:743
+msgid "Dislikes:"
 msgstr ""
 
-#: include/nav.php:175 view/theme/frio/theme.php:255
-msgid "Private mail"
+#: include/identity.php:666
+msgid "Contact information and Social Networks:"
 msgstr ""
 
-#: include/nav.php:176
-msgid "Inbox"
+#: include/identity.php:668
+msgid "Musical interests:"
 msgstr ""
 
-#: include/nav.php:177
-msgid "Outbox"
+#: include/identity.php:670
+msgid "Books, literature:"
 msgstr ""
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
+#: include/identity.php:672
+msgid "Television:"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage"
+#: include/identity.php:674
+msgid "Film/dance/culture/entertainment:"
 msgstr ""
 
-#: include/nav.php:181
-msgid "Manage other pages"
+#: include/identity.php:676
+msgid "Love/Romance:"
 msgstr ""
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
+#: include/identity.php:678
+msgid "Work/employment:"
 msgstr ""
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
+#: include/identity.php:680
+msgid "School/education:"
 msgstr ""
 
-#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1494
-#: mod/admin.php:1752 mod/settings.php:111 view/theme/frio/theme.php:256
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
-msgid "Settings"
+#: include/identity.php:684
+msgid "Forums:"
 msgstr ""
 
-#: include/nav.php:186 view/theme/frio/theme.php:256
-msgid "Account settings"
+#: include/identity.php:692 mod/events.php:507
+msgid "Basic"
 msgstr ""
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
+#: include/identity.php:693 mod/contacts.php:870 mod/events.php:508
+#: mod/admin.php:956
+msgid "Advanced"
 msgstr ""
 
-#: include/nav.php:192 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
+#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
+msgid "Status Messages and Posts"
 msgstr ""
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
+#: include/identity.php:725 mod/contacts.php:844
+msgid "Profile Details"
 msgstr ""
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
+#: include/identity.php:733 mod/photos.php:87
+msgid "Photo Albums"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Navigation"
+#: include/identity.php:772 mod/notes.php:46
+msgid "Personal Notes"
 msgstr ""
 
-#: include/nav.php:200
-msgid "Site map"
+#: include/identity.php:775
+msgid "Only You Can See This"
 msgstr ""
 
-#: include/oembed.php:252
-msgid "Embedded content"
+#: include/items.php:1553 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
+msgid "[Name Withheld]"
 msgstr ""
 
-#: include/oembed.php:260
-msgid "Embedding disabled"
+#: include/items.php:1908 mod/viewsrc.php:15 mod/notice.php:15
+#: mod/display.php:103 mod/display.php:279 mod/display.php:478
+#: mod/admin.php:234 mod/admin.php:1467 mod/admin.php:1701
+msgid "Item not found."
 msgstr ""
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-#: view/theme/diabook/theme.php:499
-msgid "Contact Photos"
+#: include/items.php:1947
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: include/security.php:22
-msgid "Welcome "
+#: include/items.php:1949 mod/follow.php:110 mod/api.php:105
+#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
+#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
+#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
+#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
+#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
+#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+msgid "Yes"
 msgstr ""
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
+#: include/items.php:2112 mod/notes.php:22 mod/uimport.php:23
+#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
+#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
+#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
+#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
+#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
+#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
+#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
+#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
+#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
+#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
+#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
+#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
+#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
+#: mod/events.php:190 mod/suggest.php:58 mod/item.php:198 mod/item.php:210
+#: mod/network.php:4 mod/photos.php:159 mod/photos.php:1072
+#: mod/register.php:42 mod/settings.php:22 mod/settings.php:128
+#: mod/settings.php:665 mod/viewcontacts.php:45 mod/wall_attach.php:67
+#: mod/wall_attach.php:70 mod/wall_upload.php:77 mod/wall_upload.php:80
+#: index.php:397
+msgid "Permission denied."
 msgstr ""
 
-#: include/security.php:26
-msgid "Welcome back "
+#: include/items.php:2217
+msgid "Archives"
 msgstr ""
 
-#: include/security.php:373
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
+#: include/network.php:595
+msgid "view full size"
 msgstr ""
 
 #: include/text.php:304
@@ -3032,47 +2905,174 @@ msgstr ""
 msgid "View on separate page"
 msgstr ""
 
-#: include/text.php:1531
-msgid "view on separate page"
+#: include/text.php:1531
+msgid "view on separate page"
+msgstr ""
+
+#: include/text.php:1810
+msgid "activity"
+msgstr ""
+
+#: include/text.php:1812 mod/content.php:623 object/Item.php:431
+#: object/Item.php:444
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+
+#: include/text.php:1813
+msgid "post"
+msgstr ""
+
+#: include/text.php:1981
+msgid "Item filed"
+msgstr ""
+
+#: include/user.php:39 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr ""
+
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr ""
+
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr ""
+
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr ""
+
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr ""
+
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr ""
+
+#: include/user.php:98
+msgid "Name too short."
+msgstr ""
+
+#: include/user.php:113
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr ""
+
+#: include/user.php:118
+msgid "Your email domain is not among those allowed on this site."
+msgstr ""
+
+#: include/user.php:121
+msgid "Not a valid email address."
+msgstr ""
+
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr ""
+
+#: include/user.php:140
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr ""
+
+#: include/user.php:147 include/user.php:245
+msgid "Nickname is already registered. Please choose another."
+msgstr ""
+
+#: include/user.php:157
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr ""
+
+#: include/user.php:173
+msgid "SERIOUS ERROR: Generation of security keys failed."
 msgstr ""
 
-#: include/text.php:1810
-msgid "activity"
+#: include/user.php:231
+msgid "An error occurred during registration. Please try again."
 msgstr ""
 
-#: include/text.php:1812 mod/content.php:623 object/Item.php:431
-#: object/Item.php:444
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
+#: include/user.php:256 view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr ""
 
-#: include/text.php:1813
-msgid "post"
+#: include/user.php:266
+msgid "An error occurred creating your default profile. Please try again."
 msgstr ""
 
-#: include/text.php:1981
-msgid "Item filed"
+#: include/user.php:345 include/user.php:352 include/user.php:359
+#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
+#: mod/profile_photo.php:210 mod/profile_photo.php:302
+#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
+#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
+#: mod/photos.php:1819
+msgid "Profile Photos"
 msgstr ""
 
-#: include/Contact.php:119
-msgid "stopped following"
+#: include/user.php:390
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for "
+"approval by the administrator.\n"
+"\t"
 msgstr ""
 
-#: include/Contact.php:395
-msgid "Drop Contact"
+#: include/user.php:400
+#, php-format
+msgid "Registration at %s"
 msgstr ""
 
-#: include/Contact.php:770
-msgid "Organisation"
+#: include/user.php:410
+#, 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/Contact.php:773
-msgid "News"
+#: include/user.php:414
+#, 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/Contact.php:776
-msgid "Forum"
+#: include/user.php:446 mod/admin.php:1209
+#, php-format
+msgid "Registration details for %s"
 msgstr ""
 
 #: mod/oexchange.php:25
@@ -3222,7 +3222,7 @@ msgid ""
 "Password reset failed."
 msgstr ""
 
-#: mod/lostpass.php:109 boot.php:1793
+#: mod/lostpass.php:109 boot.php:1802
 msgid "Password Reset"
 msgstr ""
 
@@ -3290,7 +3290,7 @@ msgid ""
 "your email for further instructions."
 msgstr ""
 
-#: mod/lostpass.php:161 boot.php:1781
+#: mod/lostpass.php:161 boot.php:1790
 msgid "Nickname or Email: "
 msgstr ""
 
@@ -3315,25 +3315,6 @@ msgstr ""
 msgid "Page not found."
 msgstr ""
 
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
-#: mod/wall_attach.php:25 mod/wall_attach.php:76
-msgid "Invalid request."
-msgstr ""
-
-#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:786
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr ""
-
-#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:826
-msgid "Unable to process image."
-msgstr ""
-
-#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:853
-msgid "Image upload failed."
-msgstr ""
-
 #: mod/lockview.php:31 mod/lockview.php:39
 msgid "Remote privacy information not available."
 msgstr ""
@@ -3351,13 +3332,13 @@ msgid ""
 "Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: mod/uimport.php:50 mod/register.php:191
+#: mod/uimport.php:50 mod/register.php:198
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
 "Please try again tomorrow."
 msgstr ""
 
-#: mod/uimport.php:64 mod/register.php:286
+#: mod/uimport.php:64 mod/register.php:295
 msgid "Import"
 msgstr ""
 
@@ -3535,10 +3516,8 @@ msgstr ""
 #: mod/install.php:272 mod/install.php:312 mod/photos.php:1104
 #: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
 #: mod/photos.php:1638 mod/photos.php:1724 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80
-#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70
-#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633
-#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59
+#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
+#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
 msgid "Submit"
 msgstr ""
 
@@ -3586,23 +3565,6 @@ msgstr ""
 msgid "Remove"
 msgstr ""
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr ""
-
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr ""
-
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr ""
-
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr ""
-
 #: mod/repair_ostatus.php:14
 msgid "Resubscribing to OStatus contacts"
 msgstr ""
@@ -3709,11 +3671,11 @@ msgstr ""
 
 #: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861
 #: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
-#: mod/register.php:239 mod/settings.php:1158 mod/settings.php:1164
-#: mod/settings.php:1172 mod/settings.php:1176 mod/settings.php:1181
-#: mod/settings.php:1187 mod/settings.php:1193 mod/settings.php:1199
-#: mod/settings.php:1225 mod/settings.php:1226 mod/settings.php:1227
-#: mod/settings.php:1228 mod/settings.php:1229
+#: mod/register.php:246 mod/settings.php:1163 mod/settings.php:1169
+#: mod/settings.php:1177 mod/settings.php:1181 mod/settings.php:1186
+#: mod/settings.php:1192 mod/settings.php:1198 mod/settings.php:1204
+#: mod/settings.php:1230 mod/settings.php:1231 mod/settings.php:1232
+#: mod/settings.php:1233 mod/settings.php:1234
 msgid "No"
 msgstr ""
 
@@ -4017,7 +3979,7 @@ msgstr ""
 msgid "All Contacts"
 msgstr ""
 
-#: mod/group.php:193 mod/content.php:130 mod/network.php:495
+#: mod/group.php:193 mod/content.php:130 mod/network.php:496
 msgid "Group is empty"
 msgstr ""
 
@@ -4313,9 +4275,9 @@ msgid ""
 "entries from this contact."
 msgstr ""
 
-#: mod/crepair.php:165 mod/admin.php:1367 mod/admin.php:1380
-#: mod/admin.php:1392 mod/admin.php:1408 mod/settings.php:678
-#: mod/settings.php:704
+#: mod/crepair.php:165 mod/admin.php:1392 mod/admin.php:1405
+#: mod/admin.php:1418 mod/admin.php:1434 mod/settings.php:680
+#: mod/settings.php:706
 msgid "Name"
 msgstr ""
 
@@ -4500,11 +4462,11 @@ msgid ""
 "bar."
 msgstr ""
 
-#: mod/content.php:119 mod/network.php:468
+#: mod/content.php:119 mod/network.php:469
 msgid "No such group"
 msgstr ""
 
-#: mod/content.php:135 mod/network.php:499
+#: mod/content.php:135 mod/network.php:500
 #, php-format
 msgid "Group: %s"
 msgstr ""
@@ -4555,7 +4517,7 @@ msgstr ""
 
 #: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
 #: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719 boot.php:969
+#: object/Item.php:719 boot.php:970
 msgid "Comment"
 msgstr ""
 
@@ -4591,7 +4553,7 @@ msgstr ""
 msgid "Video"
 msgstr ""
 
-#: mod/content.php:746 mod/settings.php:738 object/Item.php:122
+#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
 #: object/Item.php:124
 msgid "Edit"
 msgstr ""
@@ -4797,6 +4759,15 @@ msgstr ""
 msgid "Unable to process image"
 msgstr ""
 
+#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr ""
+
+#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
+msgid "Unable to process image."
+msgstr ""
+
 #: mod/profile_photo.php:248
 msgid "Upload File:"
 msgstr ""
@@ -4837,6 +4808,10 @@ msgstr ""
 msgid "Image uploaded successfully."
 msgstr ""
 
+#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
+msgid "Image upload failed."
+msgstr ""
+
 #: mod/regmod.php:55
 msgid "Account approved."
 msgstr ""
@@ -4906,7 +4881,7 @@ msgstr ""
 msgid "if applicable"
 msgstr ""
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1382
+#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1408
 msgid "Approve"
 msgstr ""
 
@@ -5268,2194 +5243,2256 @@ msgstr ""
 msgid "Edit/Manage Profiles"
 msgstr ""
 
-#: mod/admin.php:92
-msgid "Theme settings updated."
+#: mod/allfriends.php:43
+msgid "No friends to display."
 msgstr ""
 
-#: mod/admin.php:156 mod/admin.php:926
-msgid "Site"
+#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
+msgid "Access to this profile has been restricted."
 msgstr ""
 
-#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1375 mod/admin.php:1390
-msgid "Users"
+#: mod/cal.php:276 mod/events.php:380
+msgid "View"
 msgstr ""
 
-#: mod/admin.php:158 mod/admin.php:1492 mod/admin.php:1552 mod/settings.php:74
-msgid "Plugins"
+#: mod/cal.php:277 mod/events.php:382
+msgid "Previous"
 msgstr ""
 
-#: mod/admin.php:159 mod/admin.php:1750 mod/admin.php:1800
-msgid "Themes"
+#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
+msgid "Next"
 msgstr ""
 
-#: mod/admin.php:160 mod/settings.php:52
-msgid "Additional features"
+#: mod/cal.php:287 mod/events.php:392
+msgid "list"
 msgstr ""
 
-#: mod/admin.php:161
-msgid "DB updates"
+#: mod/cal.php:297
+msgid "User not found"
 msgstr ""
 
-#: mod/admin.php:162 mod/admin.php:397
-msgid "Inspect Queue"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
 msgstr ""
 
-#: mod/admin.php:163 mod/admin.php:363
-msgid "Federation Statistics"
+#: mod/cal.php:315
+msgid "No exportable data found"
 msgstr ""
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1874
-msgid "Logs"
+#: mod/cal.php:330
+msgid "calendar"
 msgstr ""
 
-#: mod/admin.php:178 mod/admin.php:1942
-msgid "View Logs"
+#: mod/common.php:86
+msgid "No contacts in common."
 msgstr ""
 
-#: mod/admin.php:179
-msgid "probe address"
+#: mod/common.php:134 mod/contacts.php:863
+msgid "Common Friends"
 msgstr ""
 
-#: mod/admin.php:180
-msgid "check webfinger"
+#: mod/community.php:27
+msgid "Not available."
 msgstr ""
 
-#: mod/admin.php:187
-msgid "Plugin Features"
+#: mod/contacts.php:128
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] ""
+msgstr[1] ""
+
+#: mod/contacts.php:159 mod/contacts.php:368
+msgid "Could not access contact record."
 msgstr ""
 
-#: mod/admin.php:189
-msgid "diagnostics"
+#: mod/contacts.php:173
+msgid "Could not locate selected profile."
 msgstr ""
 
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
+#: mod/contacts.php:206
+msgid "Contact updated."
 msgstr ""
 
-#: mod/admin.php:356
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
+#: mod/contacts.php:389
+msgid "Contact has been blocked"
 msgstr ""
 
-#: mod/admin.php:357
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
+#: mod/contacts.php:389
+msgid "Contact has been unblocked"
 msgstr ""
 
-#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925
-#: mod/admin.php:1374 mod/admin.php:1491 mod/admin.php:1551 mod/admin.php:1749
-#: mod/admin.php:1799 mod/admin.php:1873 mod/admin.php:1941
-msgid "Administration"
+#: mod/contacts.php:400
+msgid "Contact has been ignored"
+msgstr ""
+
+#: mod/contacts.php:400
+msgid "Contact has been unignored"
+msgstr ""
+
+#: mod/contacts.php:412
+msgid "Contact has been archived"
+msgstr ""
+
+#: mod/contacts.php:412
+msgid "Contact has been unarchived"
+msgstr ""
+
+#: mod/contacts.php:437
+msgid "Drop contact"
+msgstr ""
+
+#: mod/contacts.php:440 mod/contacts.php:801
+msgid "Do you really want to delete this contact?"
+msgstr ""
+
+#: mod/contacts.php:457
+msgid "Contact has been removed."
 msgstr ""
 
-#: mod/admin.php:369
+#: mod/contacts.php:498
 #, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgid "You are mutual friends with %s"
 msgstr ""
 
-#: mod/admin.php:399
-msgid "ID"
+#: mod/contacts.php:502
+#, php-format
+msgid "You are sharing with %s"
 msgstr ""
 
-#: mod/admin.php:400
-msgid "Recipient Name"
+#: mod/contacts.php:507
+#, php-format
+msgid "%s is sharing with you"
 msgstr ""
 
-#: mod/admin.php:401
-msgid "Recipient Profile"
+#: mod/contacts.php:527
+msgid "Private communications are not available for this contact."
 msgstr ""
 
-#: mod/admin.php:403
-msgid "Created"
+#: mod/contacts.php:530 mod/admin.php:885
+msgid "Never"
 msgstr ""
 
-#: mod/admin.php:404
-msgid "Last Tried"
+#: mod/contacts.php:534
+msgid "(Update was successful)"
 msgstr ""
 
-#: mod/admin.php:405
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
+#: mod/contacts.php:534
+msgid "(Update was not successful)"
+msgstr ""
+
+#: mod/contacts.php:536 mod/contacts.php:973
+msgid "Suggest friends"
+msgstr ""
+
+#: mod/contacts.php:540
+#, php-format
+msgid "Network type: %s"
 msgstr ""
 
-#: mod/admin.php:424 mod/admin.php:1323
-msgid "Normal Account"
+#: mod/contacts.php:553
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: mod/admin.php:425 mod/admin.php:1324
-msgid "Soapbox Account"
+#: mod/contacts.php:556
+msgid "Fetch further information for feeds"
 msgstr ""
 
-#: mod/admin.php:426 mod/admin.php:1325
-msgid "Community/Celebrity Account"
+#: mod/contacts.php:557 mod/admin.php:894
+msgid "Disabled"
 msgstr ""
 
-#: mod/admin.php:427 mod/admin.php:1326
-msgid "Automatic Friend Account"
+#: mod/contacts.php:557
+msgid "Fetch information"
 msgstr ""
 
-#: mod/admin.php:428
-msgid "Blog Account"
+#: mod/contacts.php:557
+msgid "Fetch information and keywords"
 msgstr ""
 
-#: mod/admin.php:429
-msgid "Private Forum"
+#: mod/contacts.php:575
+msgid "Contact"
 msgstr ""
 
-#: mod/admin.php:455
-msgid "Message queues"
+#: mod/contacts.php:578
+msgid "Profile Visibility"
 msgstr ""
 
-#: mod/admin.php:461
-msgid "Summary"
+#: mod/contacts.php:579
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
 msgstr ""
 
-#: mod/admin.php:464
-msgid "Registered users"
+#: mod/contacts.php:580
+msgid "Contact Information / Notes"
 msgstr ""
 
-#: mod/admin.php:466
-msgid "Pending registrations"
+#: mod/contacts.php:581
+msgid "Edit contact notes"
 msgstr ""
 
-#: mod/admin.php:467
-msgid "Version"
+#: mod/contacts.php:587
+msgid "Block/Unblock contact"
 msgstr ""
 
-#: mod/admin.php:472
-msgid "Active plugins"
+#: mod/contacts.php:588
+msgid "Ignore contact"
 msgstr ""
 
-#: mod/admin.php:495
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+#: mod/contacts.php:589
+msgid "Repair URL settings"
 msgstr ""
 
-#: mod/admin.php:798
-msgid "RINO2 needs mcrypt php extension to work."
+#: mod/contacts.php:590
+msgid "View conversations"
 msgstr ""
 
-#: mod/admin.php:806
-msgid "Site settings updated."
+#: mod/contacts.php:596
+msgid "Last update:"
 msgstr ""
 
-#: mod/admin.php:834 mod/settings.php:932
-msgid "No special theme for mobile devices"
+#: mod/contacts.php:598
+msgid "Update public posts"
 msgstr ""
 
-#: mod/admin.php:853
-msgid "No community page"
+#: mod/contacts.php:600 mod/contacts.php:983
+msgid "Update now"
 msgstr ""
 
-#: mod/admin.php:854
-msgid "Public postings from users of this site"
+#: mod/contacts.php:605 mod/contacts.php:805 mod/contacts.php:992
+#: mod/admin.php:1412
+msgid "Unblock"
 msgstr ""
 
-#: mod/admin.php:855
-msgid "Global community page"
+#: mod/contacts.php:605 mod/contacts.php:805 mod/contacts.php:992
+#: mod/admin.php:1411
+msgid "Block"
 msgstr ""
 
-#: mod/admin.php:860 mod/contacts.php:530
-msgid "Never"
+#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
+msgid "Unignore"
 msgstr ""
 
-#: mod/admin.php:861
-msgid "At post arrival"
+#: mod/contacts.php:610
+msgid "Currently blocked"
 msgstr ""
 
-#: mod/admin.php:869 mod/contacts.php:557
-msgid "Disabled"
+#: mod/contacts.php:611
+msgid "Currently ignored"
 msgstr ""
 
-#: mod/admin.php:871
-msgid "Users, Global Contacts"
+#: mod/contacts.php:612
+msgid "Currently archived"
 msgstr ""
 
-#: mod/admin.php:872
-msgid "Users, Global Contacts/fallback"
+#: mod/contacts.php:613
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
 msgstr ""
 
-#: mod/admin.php:876
-msgid "One month"
+#: mod/contacts.php:614
+msgid "Notification for new posts"
 msgstr ""
 
-#: mod/admin.php:877
-msgid "Three months"
+#: mod/contacts.php:614
+msgid "Send a notification of every new post of this contact"
 msgstr ""
 
-#: mod/admin.php:878
-msgid "Half a year"
+#: mod/contacts.php:617
+msgid "Blacklisted keywords"
 msgstr ""
 
-#: mod/admin.php:879
-msgid "One year"
+#: mod/contacts.php:617
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
 msgstr ""
 
-#: mod/admin.php:884
-msgid "Multi user instance"
+#: mod/contacts.php:635
+msgid "Actions"
 msgstr ""
 
-#: mod/admin.php:907
-msgid "Closed"
+#: mod/contacts.php:638
+msgid "Contact Settings"
 msgstr ""
 
-#: mod/admin.php:908
-msgid "Requires approval"
+#: mod/contacts.php:684
+msgid "Suggestions"
 msgstr ""
 
-#: mod/admin.php:909
-msgid "Open"
+#: mod/contacts.php:687
+msgid "Suggest potential friends"
 msgstr ""
 
-#: mod/admin.php:913
-msgid "No SSL policy, links will track page SSL state"
+#: mod/contacts.php:695
+msgid "Show all contacts"
 msgstr ""
 
-#: mod/admin.php:914
-msgid "Force all links to use SSL"
+#: mod/contacts.php:700
+msgid "Unblocked"
 msgstr ""
 
-#: mod/admin.php:915
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: mod/contacts.php:703
+msgid "Only show unblocked contacts"
 msgstr ""
 
-#: mod/admin.php:927 mod/admin.php:1553 mod/admin.php:1801 mod/admin.php:1875
-#: mod/admin.php:2025 mod/settings.php:676 mod/settings.php:786
-#: mod/settings.php:833 mod/settings.php:902 mod/settings.php:992
-#: mod/settings.php:1259
-msgid "Save Settings"
+#: mod/contacts.php:709
+msgid "Blocked"
 msgstr ""
 
-#: mod/admin.php:928 mod/register.php:263
-msgid "Registration"
+#: mod/contacts.php:712
+msgid "Only show blocked contacts"
 msgstr ""
 
-#: mod/admin.php:929
-msgid "File upload"
+#: mod/contacts.php:718
+msgid "Ignored"
 msgstr ""
 
-#: mod/admin.php:930
-msgid "Policies"
+#: mod/contacts.php:721
+msgid "Only show ignored contacts"
 msgstr ""
 
-#: mod/admin.php:932
-msgid "Auto Discovered Contact Directory"
+#: mod/contacts.php:727
+msgid "Archived"
 msgstr ""
 
-#: mod/admin.php:933
-msgid "Performance"
+#: mod/contacts.php:730
+msgid "Only show archived contacts"
 msgstr ""
 
-#: mod/admin.php:934
-msgid "Worker"
+#: mod/contacts.php:736
+msgid "Hidden"
 msgstr ""
 
-#: mod/admin.php:935
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
+#: mod/contacts.php:739
+msgid "Only show hidden contacts"
 msgstr ""
 
-#: mod/admin.php:938
-msgid "Site name"
+#: mod/contacts.php:796
+msgid "Search your contacts"
 msgstr ""
 
-#: mod/admin.php:939
-msgid "Host name"
+#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
+msgid "Update"
 msgstr ""
 
-#: mod/admin.php:940
-msgid "Sender Email"
+#: mod/contacts.php:807 mod/contacts.php:1008
+msgid "Archive"
 msgstr ""
 
-#: mod/admin.php:940
-msgid ""
-"The email address your server shall use to send notification emails from."
+#: mod/contacts.php:807 mod/contacts.php:1008
+msgid "Unarchive"
 msgstr ""
 
-#: mod/admin.php:941
-msgid "Banner/Logo"
+#: mod/contacts.php:810
+msgid "Batch Actions"
 msgstr ""
 
-#: mod/admin.php:942
-msgid "Shortcut icon"
+#: mod/contacts.php:856
+msgid "View all contacts"
 msgstr ""
 
-#: mod/admin.php:942
-msgid "Link to an icon that will be used for browsers."
+#: mod/contacts.php:866
+msgid "View all common friends"
 msgstr ""
 
-#: mod/admin.php:943
-msgid "Touch icon"
+#: mod/contacts.php:873
+msgid "Advanced Contact Settings"
 msgstr ""
 
-#: mod/admin.php:943
-msgid "Link to an icon that will be used for tablets and mobiles."
+#: mod/contacts.php:916
+msgid "Mutual Friendship"
 msgstr ""
 
-#: mod/admin.php:944
-msgid "Additional Info"
+#: mod/contacts.php:920
+msgid "is a fan of yours"
 msgstr ""
 
-#: mod/admin.php:944
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
+#: mod/contacts.php:924
+msgid "you are a fan of"
 msgstr ""
 
-#: mod/admin.php:945
-msgid "System language"
+#: mod/contacts.php:994
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: mod/admin.php:946
-msgid "System theme"
+#: mod/contacts.php:1002
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: mod/admin.php:946
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+#: mod/contacts.php:1010
+msgid "Toggle Archive status"
 msgstr ""
 
-#: mod/admin.php:947
-msgid "Mobile system theme"
+#: mod/contacts.php:1018
+msgid "Delete contact"
 msgstr ""
 
-#: mod/admin.php:947
-msgid "Theme for mobile devices"
+#: mod/directory.php:197 view/theme/vier/theme.php:201
+msgid "Global Directory"
 msgstr ""
 
-#: mod/admin.php:948
-msgid "SSL link policy"
+#: mod/directory.php:199
+msgid "Find on this site"
 msgstr ""
 
-#: mod/admin.php:948
-msgid "Determines whether generated links should be forced to use SSL"
+#: mod/directory.php:201
+msgid "Results for:"
 msgstr ""
 
-#: mod/admin.php:949
-msgid "Force SSL"
+#: mod/directory.php:203
+msgid "Site Directory"
 msgstr ""
 
-#: mod/admin.php:949
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
-"to endless loops."
+#: mod/directory.php:210
+msgid "No entries (some entries may be hidden)."
 msgstr ""
 
-#: mod/admin.php:950
-msgid "Old style 'Share'"
+#: mod/dirfind.php:36
+#, php-format
+msgid "People Search - %s"
 msgstr ""
 
-#: mod/admin.php:950
-msgid "Deactivates the bbcode element 'share' for repeating items."
+#: mod/dirfind.php:47
+#, php-format
+msgid "Forum Search - %s"
 msgstr ""
 
-#: mod/admin.php:951
-msgid "Hide help entry from navigation menu"
+#: mod/dirfind.php:240 mod/match.php:107
+msgid "No matches"
 msgstr ""
 
-#: mod/admin.php:951
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+#: mod/display.php:473
+msgid "Item has been removed."
 msgstr ""
 
-#: mod/admin.php:952
-msgid "Single user instance"
+#: mod/events.php:95 mod/events.php:97
+msgid "Event can not end before it has started."
 msgstr ""
 
-#: mod/admin.php:952
-msgid "Make this instance multi-user or single-user for the named user"
+#: mod/events.php:104 mod/events.php:106
+msgid "Event title and start time are required."
 msgstr ""
 
-#: mod/admin.php:953
-msgid "Maximum image size"
+#: mod/events.php:381
+msgid "Create New Event"
 msgstr ""
 
-#: mod/admin.php:953
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
+#: mod/events.php:482
+msgid "Event details"
 msgstr ""
 
-#: mod/admin.php:954
-msgid "Maximum image length"
+#: mod/events.php:483
+msgid "Starting date and Title are required."
 msgstr ""
 
-#: mod/admin.php:954
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: mod/events.php:484 mod/events.php:485
+msgid "Event Starts:"
 msgstr ""
 
-#: mod/admin.php:955
-msgid "JPEG image quality"
+#: mod/events.php:486 mod/events.php:502
+msgid "Finish date/time is not known or not relevant"
 msgstr ""
 
-#: mod/admin.php:955
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+#: mod/events.php:488 mod/events.php:489
+msgid "Event Finishes:"
 msgstr ""
 
-#: mod/admin.php:957
-msgid "Register policy"
+#: mod/events.php:490 mod/events.php:503
+msgid "Adjust for viewer timezone"
 msgstr ""
 
-#: mod/admin.php:958
-msgid "Maximum Daily Registrations"
+#: mod/events.php:492
+msgid "Description:"
 msgstr ""
 
-#: mod/admin.php:958
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user "
-"registrations to accept per day.  If register is set to closed, this setting "
-"has no effect."
+#: mod/events.php:496 mod/events.php:498
+msgid "Title:"
 msgstr ""
 
-#: mod/admin.php:959
-msgid "Register text"
+#: mod/events.php:499 mod/events.php:500
+msgid "Share this event"
 msgstr ""
 
-#: mod/admin.php:959
-msgid "Will be displayed prominently on the registration page."
+#: mod/install.php:139
+msgid "Friendica Communications Server - Setup"
 msgstr ""
 
-#: mod/admin.php:960
-msgid "Accounts abandoned after x days"
+#: mod/install.php:145
+msgid "Could not connect to database."
 msgstr ""
 
-#: mod/admin.php:960
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: mod/install.php:149
+msgid "Could not create table."
 msgstr ""
 
-#: mod/admin.php:961
-msgid "Allowed friend domains"
+#: mod/install.php:155
+msgid "Your Friendica site database has been installed."
 msgstr ""
 
-#: mod/admin.php:961
+#: mod/install.php:160
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
 msgstr ""
 
-#: mod/admin.php:962
-msgid "Allowed email domains"
+#: mod/install.php:161 mod/install.php:230 mod/install.php:602
+msgid "Please see the file \"INSTALL.txt\"."
 msgstr ""
 
-#: mod/admin.php:962
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
+#: mod/install.php:173
+msgid "Database already in use."
 msgstr ""
 
-#: mod/admin.php:963
-msgid "Block public"
+#: mod/install.php:227
+msgid "System check"
 msgstr ""
 
-#: mod/admin.php:963
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: mod/install.php:232
+msgid "Check again"
 msgstr ""
 
-#: mod/admin.php:964
-msgid "Force publish"
+#: mod/install.php:251
+msgid "Database connection"
 msgstr ""
 
-#: mod/admin.php:964
+#: mod/install.php:252
 msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
+"In order to install Friendica we need to know how to connect to your "
+"database."
 msgstr ""
 
-#: mod/admin.php:965
-msgid "Global directory URL"
+#: mod/install.php:253
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
 msgstr ""
 
-#: mod/admin.php:965
+#: mod/install.php:254
 msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
 msgstr ""
 
-#: mod/admin.php:966
-msgid "Allow threaded items"
+#: mod/install.php:258
+msgid "Database Server Name"
 msgstr ""
 
-#: mod/admin.php:966
-msgid "Allow infinite level threading for items on this site."
+#: mod/install.php:259
+msgid "Database Login Name"
 msgstr ""
 
-#: mod/admin.php:967
-msgid "Private posts by default for new users"
+#: mod/install.php:260
+msgid "Database Login Password"
 msgstr ""
 
-#: mod/admin.php:967
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: mod/install.php:261
+msgid "Database Name"
 msgstr ""
 
-#: mod/admin.php:968
-msgid "Don't include post content in email notifications"
+#: mod/install.php:262 mod/install.php:303
+msgid "Site administrator email address"
 msgstr ""
 
-#: mod/admin.php:968
+#: mod/install.php:262 mod/install.php:303
 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."
+"Your account email address must match this in order to use the web admin "
+"panel."
 msgstr ""
 
-#: mod/admin.php:969
-msgid "Disallow public access to addons listed in the apps menu."
+#: mod/install.php:266 mod/install.php:306
+msgid "Please select a default timezone for your website"
 msgstr ""
 
-#: mod/admin.php:969
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
+#: mod/install.php:293
+msgid "Site settings"
 msgstr ""
 
-#: mod/admin.php:970
-msgid "Don't embed private images in posts"
+#: mod/install.php:307
+msgid "System Language:"
 msgstr ""
 
-#: mod/admin.php:970
+#: mod/install.php:307
 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."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
 msgstr ""
 
-#: mod/admin.php:971
-msgid "Allow Users to set remote_self"
+#: mod/install.php:347
+msgid "Could not find a command line version of PHP in the web server PATH."
 msgstr ""
 
-#: mod/admin.php:971
+#: mod/install.php:348
 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."
+"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='https://"
+"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
+"poller'>'Setup the poller'</a>"
 msgstr ""
 
-#: mod/admin.php:972
-msgid "Block multiple registrations"
+#: mod/install.php:352
+msgid "PHP executable path"
 msgstr ""
 
-#: mod/admin.php:972
-msgid "Disallow users to register additional accounts for use as pages."
+#: mod/install.php:352
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: mod/admin.php:973
-msgid "OpenID support"
+#: mod/install.php:357
+msgid "Command line PHP"
 msgstr ""
 
-#: mod/admin.php:973
-msgid "OpenID support for registration and logins."
+#: mod/install.php:366
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
 msgstr ""
 
-#: mod/admin.php:974
-msgid "Fullname check"
+#: mod/install.php:367
+msgid "Found PHP version: "
 msgstr ""
 
-#: mod/admin.php:974
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: mod/install.php:369
+msgid "PHP cli binary"
 msgstr ""
 
-#: mod/admin.php:975
-msgid "UTF-8 Regular expressions"
+#: mod/install.php:380
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
 msgstr ""
 
-#: mod/admin.php:975
-msgid "Use PHP UTF8 regular expressions"
+#: mod/install.php:381
+msgid "This is required for message delivery to work."
 msgstr ""
 
-#: mod/admin.php:976
-msgid "Community Page Style"
+#: mod/install.php:383
+msgid "PHP register_argc_argv"
 msgstr ""
 
-#: mod/admin.php:976
+#: mod/install.php:404
 msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr ""
-
-#: mod/admin.php:977
-msgid "Posts per user on community page"
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:977
+#: mod/install.php:405
 msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
-
-#: mod/admin.php:978
-msgid "Enable OStatus support"
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
 msgstr ""
 
-#: mod/admin.php:978
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: mod/install.php:407
+msgid "Generate encryption keys"
 msgstr ""
 
-#: mod/admin.php:979
-msgid "OStatus conversation completion interval"
+#: mod/install.php:414
+msgid "libCurl PHP module"
 msgstr ""
 
-#: mod/admin.php:979
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
+#: mod/install.php:415
+msgid "GD graphics PHP module"
 msgstr ""
 
-#: mod/admin.php:980
-msgid "Only import OStatus threads from our contacts"
+#: mod/install.php:416
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: mod/admin.php:980
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option "
-"we only store threads that are started by a contact that is known on our "
-"system."
+#: mod/install.php:417
+msgid "mysqli PHP module"
 msgstr ""
 
-#: mod/admin.php:981
-msgid "OStatus support can only be enabled if threading is enabled."
+#: mod/install.php:418
+msgid "mb_string PHP module"
 msgstr ""
 
-#: mod/admin.php:983
-msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub "
-"directory."
+#: mod/install.php:419
+msgid "mcrypt PHP module"
 msgstr ""
 
-#: mod/admin.php:984
-msgid "Enable Diaspora support"
+#: mod/install.php:420
+msgid "XML PHP module"
 msgstr ""
 
-#: mod/admin.php:984
-msgid "Provide built-in Diaspora network compatibility."
+#: mod/install.php:421
+msgid "iconv module"
 msgstr ""
 
-#: mod/admin.php:985
-msgid "Only allow Friendica contacts"
+#: mod/install.php:425 mod/install.php:427
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: mod/admin.php:985
+#: mod/install.php:425
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+"Error: Apache webserver mod-rewrite module is required but not installed."
 msgstr ""
 
-#: mod/admin.php:986
-msgid "Verify SSL"
+#: mod/install.php:433
+msgid "Error: libCURL PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:986
+#: mod/install.php:437
 msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you "
-"cannot connect (at all) to self-signed SSL sites."
+"Error: GD graphics PHP module with JPEG support required but not installed."
 msgstr ""
 
-#: mod/admin.php:987
-msgid "Proxy user"
+#: mod/install.php:441
+msgid "Error: openssl PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:988
-msgid "Proxy URL"
+#: mod/install.php:445
+msgid "Error: mysqli PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:989
-msgid "Network timeout"
+#: mod/install.php:449
+msgid "Error: mb_string PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:989
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: mod/install.php:453
+msgid "Error: mcrypt PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:990
-msgid "Delivery interval"
+#: mod/install.php:457
+msgid "Error: iconv PHP module required but not installed."
 msgstr ""
 
-#: mod/admin.php:990
+#: mod/install.php:466
 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."
+"If you are using php_cli, please make sure that mcrypt module is enabled in "
+"its config file"
 msgstr ""
 
-#: mod/admin.php:991
-msgid "Poll interval"
+#: mod/install.php:469
+msgid ""
+"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
+"encryption layer."
 msgstr ""
 
-#: mod/admin.php:991
+#: mod/install.php:471
+msgid "mcrypt_create_iv() function"
+msgstr ""
+
+#: mod/install.php:479
+msgid "Error, XML PHP module required but not installed."
+msgstr ""
+
+#: mod/install.php:494
 msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+"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:992
-msgid "Maximum Load Average"
+#: mod/install.php:495
+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/admin.php:992
+#: mod/install.php:496
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+"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/admin.php:993
-msgid "Maximum Load Average (Frontend)"
+#: mod/install.php:497
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation. "
+"Please see the file \"INSTALL.txt\" for instructions."
 msgstr ""
 
-#: mod/admin.php:993
-msgid "Maximum system load before the frontend quits service - default 50."
+#: mod/install.php:500
+msgid ".htconfig.php is writable"
 msgstr ""
 
-#: mod/admin.php:994
-msgid "Maximum table size for optimization"
+#: mod/install.php:510
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
 msgstr ""
 
-#: mod/admin.php:994
+#: mod/install.php:511
 msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
+"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/admin.php:995
-msgid "Minimum level of fragmentation"
+#: mod/install.php:512
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has "
+"write access to this folder."
 msgstr ""
 
-#: mod/admin.php:995
+#: mod/install.php:513
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
+"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/admin.php:997
-msgid "Periodical check of global contacts"
+#: mod/install.php:516
+msgid "view/smarty3 is writable"
 msgstr ""
 
-#: mod/admin.php:997
+#: mod/install.php:532
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
+"Url rewrite in .htaccess is not working. Check your server configuration."
 msgstr ""
 
-#: mod/admin.php:998
-msgid "Days between requery"
+#: mod/install.php:534
+msgid "Url rewrite is working"
 msgstr ""
 
-#: mod/admin.php:998
-msgid "Number of days after which a server is requeried for his contacts."
+#: mod/install.php:551
+msgid "ImageMagick PHP extension is installed"
 msgstr ""
 
-#: mod/admin.php:999
-msgid "Discover contacts from other servers"
+#: mod/install.php:553
+msgid "ImageMagick supports GIF"
 msgstr ""
 
-#: mod/admin.php:999
+#: mod/install.php:561
 msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
+"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/admin.php:1000
-msgid "Timeframe for fetching global contacts"
+#: mod/install.php:600
+msgid "<h1>What next</h1>"
 msgstr ""
 
-#: mod/admin.php:1000
+#: mod/install.php:601
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
 msgstr ""
 
-#: mod/admin.php:1001
-msgid "Search the local directory"
+#: mod/maintenance.php:9
+msgid "System down for maintenance"
 msgstr ""
 
-#: mod/admin.php:1001
-msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
+#: mod/match.php:33
+msgid "No keywords to match. Please add keywords to your default profile."
 msgstr ""
 
-#: mod/admin.php:1003
-msgid "Publish server information"
+#: mod/match.php:86
+msgid "is interested in:"
 msgstr ""
 
-#: mod/admin.php:1003
-msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a "
-"href='http://the-federation.info/'>the-federation.info</a> for details."
+#: mod/match.php:100
+msgid "Profile Match"
 msgstr ""
 
-#: mod/admin.php:1005
-msgid "Use MySQL full text engine"
+#: mod/profile.php:179
+msgid "Tips for New Members"
 msgstr ""
 
-#: mod/admin.php:1005
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr ""
+
+#: mod/suggest.php:71
 msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
 msgstr ""
 
-#: mod/admin.php:1006
-msgid "Suppress Language"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
 msgstr ""
 
-#: mod/admin.php:1006
-msgid "Suppress language information in meta information about a posting."
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
 msgstr ""
 
-#: mod/admin.php:1007
-msgid "Suppress Tags"
+#: mod/admin.php:92
+msgid "Theme settings updated."
 msgstr ""
 
-#: mod/admin.php:1007
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: mod/admin.php:156 mod/admin.php:951
+msgid "Site"
 msgstr ""
 
-#: mod/admin.php:1008
-msgid "Path to item cache"
+#: mod/admin.php:157 mod/admin.php:895 mod/admin.php:1400 mod/admin.php:1416
+msgid "Users"
 msgstr ""
 
-#: mod/admin.php:1008
-msgid "The item caches buffers generated bbcode and external images."
+#: mod/admin.php:158 mod/admin.php:1518 mod/admin.php:1578 mod/settings.php:74
+msgid "Plugins"
 msgstr ""
 
-#: mod/admin.php:1009
-msgid "Cache duration in seconds"
+#: mod/admin.php:159 mod/admin.php:1776 mod/admin.php:1826
+msgid "Themes"
 msgstr ""
 
-#: mod/admin.php:1009
-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."
+#: mod/admin.php:160 mod/settings.php:52
+msgid "Additional features"
 msgstr ""
 
-#: mod/admin.php:1010
-msgid "Maximum numbers of comments per post"
+#: mod/admin.php:161
+msgid "DB updates"
 msgstr ""
 
-#: mod/admin.php:1010
-msgid "How much comments should be shown for each post? Default value is 100."
+#: mod/admin.php:162 mod/admin.php:406
+msgid "Inspect Queue"
 msgstr ""
 
-#: mod/admin.php:1011
-msgid "Path for lock file"
+#: mod/admin.php:163 mod/admin.php:372
+msgid "Federation Statistics"
 msgstr ""
 
-#: mod/admin.php:1011
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
+#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1900
+msgid "Logs"
 msgstr ""
 
-#: mod/admin.php:1012
-msgid "Temp path"
+#: mod/admin.php:178 mod/admin.php:1968
+msgid "View Logs"
 msgstr ""
 
-#: mod/admin.php:1012
-msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
+#: mod/admin.php:179
+msgid "probe address"
 msgstr ""
 
-#: mod/admin.php:1013
-msgid "Base path to installation"
+#: mod/admin.php:180
+msgid "check webfinger"
+msgstr ""
+
+#: mod/admin.php:187
+msgid "Plugin Features"
+msgstr ""
+
+#: mod/admin.php:189
+msgid "diagnostics"
 msgstr ""
 
-#: mod/admin.php:1013
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the "
-"correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
+#: mod/admin.php:190
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: mod/admin.php:1014
-msgid "Disable picture proxy"
+#: mod/admin.php:306
+msgid "unknown"
 msgstr ""
 
-#: mod/admin.php:1014
+#: mod/admin.php:365
 msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on "
-"systems with very low bandwith."
-msgstr ""
-
-#: mod/admin.php:1015
-msgid "Enable old style pager"
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
 msgstr ""
 
-#: mod/admin.php:1015
+#: mod/admin.php:366
 msgid ""
-"The old style pager has page numbers but slows down massively the page speed."
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
 msgstr ""
 
-#: mod/admin.php:1016
-msgid "Only search in tags"
+#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:483 mod/admin.php:950
+#: mod/admin.php:1399 mod/admin.php:1517 mod/admin.php:1577 mod/admin.php:1775
+#: mod/admin.php:1825 mod/admin.php:1899 mod/admin.php:1967
+msgid "Administration"
 msgstr ""
 
-#: mod/admin.php:1016
-msgid "On large systems the text search can slow down the system extremely."
+#: mod/admin.php:378
+#, php-format
+msgid "Currently this node is aware of %d nodes from the following platforms:"
 msgstr ""
 
-#: mod/admin.php:1018
-msgid "New base url"
+#: mod/admin.php:408
+msgid "ID"
 msgstr ""
 
-#: mod/admin.php:1018
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts "
-"of all users."
+#: mod/admin.php:409
+msgid "Recipient Name"
 msgstr ""
 
-#: mod/admin.php:1020
-msgid "RINO Encryption"
+#: mod/admin.php:410
+msgid "Recipient Profile"
 msgstr ""
 
-#: mod/admin.php:1020
-msgid "Encryption layer between nodes."
+#: mod/admin.php:412
+msgid "Created"
 msgstr ""
 
-#: mod/admin.php:1021
-msgid "Embedly API key"
+#: mod/admin.php:413
+msgid "Last Tried"
 msgstr ""
 
-#: mod/admin.php:1021
+#: mod/admin.php:414
 msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
 msgstr ""
 
-#: mod/admin.php:1023
-msgid "Enable 'worker' background processing"
+#: mod/admin.php:438
+#, php-format
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should "
+"change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the <tt>convert_innodb.sql</"
+"tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"
 msgstr ""
 
-#: mod/admin.php:1023
+#: mod/admin.php:443
 msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
 msgstr ""
 
-#: mod/admin.php:1024
-msgid "Maximum number of parallel workers"
+#: mod/admin.php:447 mod/admin.php:1348
+msgid "Normal Account"
 msgstr ""
 
-#: mod/admin.php:1024
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
+#: mod/admin.php:448 mod/admin.php:1349
+msgid "Soapbox Account"
 msgstr ""
 
-#: mod/admin.php:1025
-msgid "Don't use 'proc_open' with the worker"
+#: mod/admin.php:449 mod/admin.php:1350
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: mod/admin.php:1025
-msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
+#: mod/admin.php:450 mod/admin.php:1351
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: mod/admin.php:1026
-msgid "Enable fastlane"
+#: mod/admin.php:451
+msgid "Blog Account"
 msgstr ""
 
-#: mod/admin.php:1026
-msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes "
-"with higher priority are blocked by processes of lower priority."
+#: mod/admin.php:452
+msgid "Private Forum"
 msgstr ""
 
-#: mod/admin.php:1055
-msgid "Update has been marked successful"
+#: mod/admin.php:478
+msgid "Message queues"
 msgstr ""
 
-#: mod/admin.php:1063
-#, php-format
-msgid "Database structure update %s was successfully applied."
+#: mod/admin.php:484
+msgid "Summary"
 msgstr ""
 
-#: mod/admin.php:1066
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
+#: mod/admin.php:487
+msgid "Registered users"
 msgstr ""
 
-#: mod/admin.php:1078
-#, php-format
-msgid "Executing %s failed with error: %s"
+#: mod/admin.php:489
+msgid "Pending registrations"
 msgstr ""
 
-#: mod/admin.php:1081
-#, php-format
-msgid "Update %s was successfully applied."
+#: mod/admin.php:490
+msgid "Version"
 msgstr ""
 
-#: mod/admin.php:1085
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: mod/admin.php:495
+msgid "Active plugins"
 msgstr ""
 
-#: mod/admin.php:1087
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
+#: mod/admin.php:520
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
 msgstr ""
 
-#: mod/admin.php:1106
-msgid "No failed updates."
+#: mod/admin.php:823
+msgid "RINO2 needs mcrypt php extension to work."
 msgstr ""
 
-#: mod/admin.php:1107
-msgid "Check database structure"
+#: mod/admin.php:831
+msgid "Site settings updated."
 msgstr ""
 
-#: mod/admin.php:1112
-msgid "Failed Updates"
+#: mod/admin.php:859 mod/settings.php:934
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: mod/admin.php:1113
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: mod/admin.php:878
+msgid "No community page"
 msgstr ""
 
-#: mod/admin.php:1114
-msgid "Mark success (if update was manually applied)"
+#: mod/admin.php:879
+msgid "Public postings from users of this site"
 msgstr ""
 
-#: mod/admin.php:1115
-msgid "Attempt to execute this update step automatically"
+#: mod/admin.php:880
+msgid "Global community page"
 msgstr ""
 
-#: mod/admin.php:1149
-#, 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."
+#: mod/admin.php:886
+msgid "At post arrival"
 msgstr ""
 
-#: mod/admin.php:1152
-#, 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."
+#: mod/admin.php:896
+msgid "Users, Global Contacts"
 msgstr ""
 
-#: mod/admin.php:1196
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/admin.php:897
+msgid "Users, Global Contacts/fallback"
+msgstr ""
 
-#: mod/admin.php:1203
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
+#: mod/admin.php:901
+msgid "One month"
+msgstr ""
 
-#: mod/admin.php:1250
-#, php-format
-msgid "User '%s' deleted"
+#: mod/admin.php:902
+msgid "Three months"
 msgstr ""
 
-#: mod/admin.php:1258
-#, php-format
-msgid "User '%s' unblocked"
+#: mod/admin.php:903
+msgid "Half a year"
 msgstr ""
 
-#: mod/admin.php:1258
-#, php-format
-msgid "User '%s' blocked"
+#: mod/admin.php:904
+msgid "One year"
 msgstr ""
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Register date"
+#: mod/admin.php:909
+msgid "Multi user instance"
 msgstr ""
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Last login"
+#: mod/admin.php:932
+msgid "Closed"
 msgstr ""
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Last item"
+#: mod/admin.php:933
+msgid "Requires approval"
 msgstr ""
 
-#: mod/admin.php:1367 mod/settings.php:43
-msgid "Account"
+#: mod/admin.php:934
+msgid "Open"
 msgstr ""
 
-#: mod/admin.php:1376
-msgid "Add User"
+#: mod/admin.php:938
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: mod/admin.php:1377
-msgid "select all"
+#: mod/admin.php:939
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: mod/admin.php:1378
-msgid "User registrations waiting for confirm"
+#: mod/admin.php:940
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: mod/admin.php:1379
-msgid "User waiting for permanent deletion"
+#: mod/admin.php:952 mod/admin.php:1579 mod/admin.php:1827 mod/admin.php:1901
+#: mod/admin.php:2051 mod/settings.php:678 mod/settings.php:788
+#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
+#: mod/settings.php:1264
+msgid "Save Settings"
 msgstr ""
 
-#: mod/admin.php:1380
-msgid "Request date"
+#: mod/admin.php:953 mod/register.php:272
+msgid "Registration"
 msgstr ""
 
-#: mod/admin.php:1381
-msgid "No registrations."
+#: mod/admin.php:954
+msgid "File upload"
 msgstr ""
 
-#: mod/admin.php:1383
-msgid "Deny"
+#: mod/admin.php:955
+msgid "Policies"
 msgstr ""
 
-#: mod/admin.php:1385 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Block"
+#: mod/admin.php:957
+msgid "Auto Discovered Contact Directory"
 msgstr ""
 
-#: mod/admin.php:1386 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Unblock"
+#: mod/admin.php:958
+msgid "Performance"
 msgstr ""
 
-#: mod/admin.php:1387
-msgid "Site admin"
+#: mod/admin.php:959
+msgid "Worker"
 msgstr ""
 
-#: mod/admin.php:1388
-msgid "Account expired"
+#: mod/admin.php:960
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
 msgstr ""
 
-#: mod/admin.php:1391
-msgid "New User"
+#: mod/admin.php:963
+msgid "Site name"
 msgstr ""
 
-#: mod/admin.php:1392
-msgid "Deleted since"
+#: mod/admin.php:964
+msgid "Host name"
 msgstr ""
 
-#: mod/admin.php:1397
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+#: mod/admin.php:965
+msgid "Sender Email"
 msgstr ""
 
-#: mod/admin.php:1398
+#: mod/admin.php:965
 msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
+"The email address your server shall use to send notification emails from."
 msgstr ""
 
-#: mod/admin.php:1408
-msgid "Name of the new user."
+#: mod/admin.php:966
+msgid "Banner/Logo"
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Nickname"
+#: mod/admin.php:967
+msgid "Shortcut icon"
+msgstr ""
+
+#: mod/admin.php:967
+msgid "Link to an icon that will be used for browsers."
+msgstr ""
+
+#: mod/admin.php:968
+msgid "Touch icon"
 msgstr ""
 
-#: mod/admin.php:1409
-msgid "Nickname of the new user."
+#: mod/admin.php:968
+msgid "Link to an icon that will be used for tablets and mobiles."
 msgstr ""
 
-#: mod/admin.php:1410
-msgid "Email address of the new user."
+#: mod/admin.php:969
+msgid "Additional Info"
 msgstr ""
 
-#: mod/admin.php:1453
+#: mod/admin.php:969
 #, php-format
-msgid "Plugin %s disabled."
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
 msgstr ""
 
-#: mod/admin.php:1457
-#, php-format
-msgid "Plugin %s enabled."
+#: mod/admin.php:970
+msgid "System language"
 msgstr ""
 
-#: mod/admin.php:1468 mod/admin.php:1704
-msgid "Disable"
+#: mod/admin.php:971
+msgid "System theme"
 msgstr ""
 
-#: mod/admin.php:1470 mod/admin.php:1706
-msgid "Enable"
+#: mod/admin.php:971
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: mod/admin.php:1493 mod/admin.php:1751
-msgid "Toggle"
+#: mod/admin.php:972
+msgid "Mobile system theme"
 msgstr ""
 
-#: mod/admin.php:1501 mod/admin.php:1760
-msgid "Author: "
+#: mod/admin.php:972
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: mod/admin.php:1502 mod/admin.php:1761
-msgid "Maintainer: "
+#: mod/admin.php:973
+msgid "SSL link policy"
 msgstr ""
 
-#: mod/admin.php:1554
-msgid "Reload active plugins"
+#: mod/admin.php:973
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: mod/admin.php:1559
-#, php-format
-msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
+#: mod/admin.php:974
+msgid "Force SSL"
 msgstr ""
 
-#: mod/admin.php:1664
-msgid "No themes found."
+#: mod/admin.php:974
+msgid ""
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead "
+"to endless loops."
 msgstr ""
 
-#: mod/admin.php:1742
-msgid "Screenshot"
+#: mod/admin.php:975
+msgid "Old style 'Share'"
 msgstr ""
 
-#: mod/admin.php:1802
-msgid "Reload active themes"
+#: mod/admin.php:975
+msgid "Deactivates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: mod/admin.php:1807
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
+#: mod/admin.php:976
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: mod/admin.php:1808
-msgid "[Experimental]"
+#: mod/admin.php:976
+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:1809
-msgid "[Unsupported]"
+#: mod/admin.php:977
+msgid "Single user instance"
 msgstr ""
 
-#: mod/admin.php:1833
-msgid "Log settings updated."
+#: mod/admin.php:977
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: mod/admin.php:1865
-msgid "PHP log currently enabled."
+#: mod/admin.php:978
+msgid "Maximum image size"
 msgstr ""
 
-#: mod/admin.php:1867
-msgid "PHP log currently disabled."
+#: mod/admin.php:978
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: mod/admin.php:1876
-msgid "Clear"
+#: mod/admin.php:979
+msgid "Maximum image length"
 msgstr ""
 
-#: mod/admin.php:1881
-msgid "Enable Debugging"
+#: mod/admin.php:979
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: mod/admin.php:1882
-msgid "Log file"
+#: mod/admin.php:980
+msgid "JPEG image quality"
 msgstr ""
 
-#: mod/admin.php:1882
+#: mod/admin.php:980
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: mod/admin.php:1883
-msgid "Log level"
+#: mod/admin.php:982
+msgid "Register policy"
 msgstr ""
 
-#: mod/admin.php:1886
-msgid "PHP logging"
+#: mod/admin.php:983
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: mod/admin.php:1887
+#: mod/admin.php:983
 msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
+"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:2014 mod/admin.php:2015 mod/settings.php:776
-msgid "Off"
+#: mod/admin.php:984
+msgid "Register text"
 msgstr ""
 
-#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
-msgid "On"
+#: mod/admin.php:984
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: mod/admin.php:2015
-#, php-format
-msgid "Lock feature %s"
+#: mod/admin.php:985
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: mod/admin.php:2023
-msgid "Manage Additional Features"
+#: mod/admin.php:985
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
+#: mod/admin.php:986
+msgid "Allowed friend domains"
 msgstr ""
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
+#: mod/admin.php:986
+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/cal.php:276 mod/events.php:380
-msgid "View"
+#: mod/admin.php:987
+msgid "Allowed email domains"
 msgstr ""
 
-#: mod/cal.php:277 mod/events.php:382
-msgid "Previous"
+#: mod/admin.php:987
+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/cal.php:278 mod/events.php:383 mod/install.php:231
-msgid "Next"
+#: mod/admin.php:988
+msgid "Block public"
 msgstr ""
 
-#: mod/cal.php:287 mod/events.php:392
-msgid "list"
+#: mod/admin.php:988
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: mod/cal.php:297
-msgid "User not found"
+#: mod/admin.php:989
+msgid "Force publish"
 msgstr ""
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
+#: mod/admin.php:989
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: mod/cal.php:315
-msgid "No exportable data found"
+#: mod/admin.php:990
+msgid "Global directory URL"
 msgstr ""
 
-#: mod/cal.php:330
-msgid "calendar"
+#: mod/admin.php:990
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
 msgstr ""
 
-#: mod/common.php:86
-msgid "No contacts in common."
+#: mod/admin.php:991
+msgid "Allow threaded items"
 msgstr ""
 
-#: mod/common.php:134 mod/contacts.php:863
-msgid "Common Friends"
+#: mod/admin.php:991
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: mod/community.php:27
-msgid "Not available."
+#: mod/admin.php:992
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] ""
-msgstr[1] ""
-
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
+#: mod/admin.php:992
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
+#: mod/admin.php:993
+msgid "Don't include post content in email notifications"
 msgstr ""
 
-#: mod/contacts.php:206
-msgid "Contact updated."
+#: mod/admin.php:993
+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/contacts.php:389
-msgid "Contact has been blocked"
+#: mod/admin.php:994
+msgid "Disallow public access to addons listed in the apps menu."
 msgstr ""
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
+#: mod/admin.php:994
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
 msgstr ""
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
+#: mod/admin.php:995
+msgid "Don't embed private images in posts"
 msgstr ""
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
+#: mod/admin.php:995
+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/contacts.php:412
-msgid "Contact has been archived"
+#: mod/admin.php:996
+msgid "Allow Users to set remote_self"
 msgstr ""
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
+#: mod/admin.php:996
+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/contacts.php:437
-msgid "Drop contact"
+#: mod/admin.php:997
+msgid "Block multiple registrations"
 msgstr ""
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
+#: mod/admin.php:997
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
+#: mod/admin.php:998
+msgid "OpenID support"
 msgstr ""
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
+#: mod/admin.php:998
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
+#: mod/admin.php:999
+msgid "Fullname check"
 msgstr ""
 
-#: mod/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
+#: mod/admin.php:999
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
+#: mod/admin.php:1000
+msgid "UTF-8 Regular expressions"
 msgstr ""
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
+#: mod/admin.php:1000
+msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
+#: mod/admin.php:1001
+msgid "Community Page Style"
 msgstr ""
 
-#: mod/contacts.php:536 mod/contacts.php:973
-msgid "Suggest friends"
+#: mod/admin.php:1001
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
 msgstr ""
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
+#: mod/admin.php:1002
+msgid "Posts per user on community page"
 msgstr ""
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
+#: mod/admin.php:1002
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
 msgstr ""
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
+#: mod/admin.php:1003
+msgid "Enable OStatus support"
 msgstr ""
 
-#: mod/contacts.php:557
-msgid "Fetch information"
+#: mod/admin.php:1003
+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/contacts.php:557
-msgid "Fetch information and keywords"
+#: mod/admin.php:1004
+msgid "OStatus conversation completion interval"
 msgstr ""
 
-#: mod/contacts.php:575
-msgid "Contact"
+#: mod/admin.php:1004
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
 msgstr ""
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
+#: mod/admin.php:1005
+msgid "Only import OStatus threads from our contacts"
 msgstr ""
 
-#: mod/contacts.php:579
-#, php-format
+#: mod/admin.php:1005
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
+"Normally we import every content from our OStatus contacts. With this option "
+"we only store threads that are started by a contact that is known on our "
+"system."
 msgstr ""
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
+#: mod/admin.php:1006
+msgid "OStatus support can only be enabled if threading is enabled."
 msgstr ""
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
+#: mod/admin.php:1008
+msgid ""
+"Diaspora support can't be enabled because Friendica was installed into a sub "
+"directory."
 msgstr ""
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
+#: mod/admin.php:1009
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
+#: mod/admin.php:1009
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
+#: mod/admin.php:1010
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: mod/contacts.php:590
-msgid "View conversations"
+#: mod/admin.php:1010
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: mod/contacts.php:596
-msgid "Last update:"
+#: mod/admin.php:1011
+msgid "Verify SSL"
 msgstr ""
 
-#: mod/contacts.php:598
-msgid "Update public posts"
+#: mod/admin.php:1011
+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/contacts.php:600 mod/contacts.php:983
-msgid "Update now"
+#: mod/admin.php:1012
+msgid "Proxy user"
 msgstr ""
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
-msgid "Unignore"
+#: mod/admin.php:1013
+msgid "Proxy URL"
 msgstr ""
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
+#: mod/admin.php:1014
+msgid "Network timeout"
 msgstr ""
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
+#: mod/admin.php:1014
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: mod/contacts.php:612
-msgid "Currently archived"
+#: mod/admin.php:1015
+msgid "Delivery interval"
 msgstr ""
 
-#: mod/contacts.php:613
+#: mod/admin.php:1015
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
+"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/contacts.php:614
-msgid "Notification for new posts"
+#: mod/admin.php:1016
+msgid "Poll interval"
 msgstr ""
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
+#: mod/admin.php:1016
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
 msgstr ""
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
+#: mod/admin.php:1017
+msgid "Maximum Load Average"
 msgstr ""
 
-#: mod/contacts.php:617
+#: mod/admin.php:1017
 msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: mod/contacts.php:635
-msgid "Actions"
+#: mod/admin.php:1018
+msgid "Maximum Load Average (Frontend)"
 msgstr ""
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
+#: mod/admin.php:1018
+msgid "Maximum system load before the frontend quits service - default 50."
 msgstr ""
 
-#: mod/contacts.php:684
-msgid "Suggestions"
+#: mod/admin.php:1019
+msgid "Maximum table size for optimization"
 msgstr ""
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
+#: mod/admin.php:1019
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
 msgstr ""
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
+#: mod/admin.php:1020
+msgid "Minimum level of fragmentation"
 msgstr ""
 
-#: mod/contacts.php:700
-msgid "Unblocked"
+#: mod/admin.php:1020
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
 msgstr ""
 
-#: mod/contacts.php:703
-msgid "Only show unblocked contacts"
+#: mod/admin.php:1022
+msgid "Periodical check of global contacts"
 msgstr ""
 
-#: mod/contacts.php:709
-msgid "Blocked"
+#: mod/admin.php:1022
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
 msgstr ""
 
-#: mod/contacts.php:712
-msgid "Only show blocked contacts"
+#: mod/admin.php:1023
+msgid "Days between requery"
 msgstr ""
 
-#: mod/contacts.php:718
-msgid "Ignored"
+#: mod/admin.php:1023
+msgid "Number of days after which a server is requeried for his contacts."
 msgstr ""
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
+#: mod/admin.php:1024
+msgid "Discover contacts from other servers"
 msgstr ""
 
-#: mod/contacts.php:727
-msgid "Archived"
+#: mod/admin.php:1024
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
 msgstr ""
 
-#: mod/contacts.php:730
-msgid "Only show archived contacts"
+#: mod/admin.php:1025
+msgid "Timeframe for fetching global contacts"
 msgstr ""
 
-#: mod/contacts.php:736
-msgid "Hidden"
+#: mod/admin.php:1025
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
 msgstr ""
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
+#: mod/admin.php:1026
+msgid "Search the local directory"
 msgstr ""
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
+#: mod/admin.php:1026
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
 msgstr ""
 
-#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:702
-msgid "Update"
+#: mod/admin.php:1028
+msgid "Publish server information"
 msgstr ""
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Archive"
+#: mod/admin.php:1028
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a "
+"href='http://the-federation.info/'>the-federation.info</a> for details."
 msgstr ""
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Unarchive"
+#: mod/admin.php:1030
+msgid "Use MySQL full text engine"
 msgstr ""
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
+#: mod/admin.php:1030
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
 msgstr ""
 
-#: mod/contacts.php:856
-msgid "View all contacts"
+#: mod/admin.php:1031
+msgid "Suppress Language"
 msgstr ""
 
-#: mod/contacts.php:866
-msgid "View all common friends"
+#: mod/admin.php:1031
+msgid "Suppress language information in meta information about a posting."
 msgstr ""
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
+#: mod/admin.php:1032
+msgid "Suppress Tags"
 msgstr ""
 
-#: mod/contacts.php:916
-msgid "Mutual Friendship"
+#: mod/admin.php:1032
+msgid "Suppress showing a list of hashtags at the end of the posting."
 msgstr ""
 
-#: mod/contacts.php:920
-msgid "is a fan of yours"
+#: mod/admin.php:1033
+msgid "Path to item cache"
 msgstr ""
 
-#: mod/contacts.php:924
-msgid "you are a fan of"
+#: mod/admin.php:1033
+msgid "The item caches buffers generated bbcode and external images."
 msgstr ""
 
-#: mod/contacts.php:994
-msgid "Toggle Blocked status"
+#: mod/admin.php:1034
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: mod/contacts.php:1002
-msgid "Toggle Ignored status"
+#: mod/admin.php:1034
+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/contacts.php:1010
-msgid "Toggle Archive status"
+#: mod/admin.php:1035
+msgid "Maximum numbers of comments per post"
 msgstr ""
 
-#: mod/contacts.php:1018
-msgid "Delete contact"
+#: mod/admin.php:1035
+msgid "How much comments should be shown for each post? Default value is 100."
 msgstr ""
 
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-#: view/theme/diabook/theme.php:525
-msgid "Global Directory"
+#: mod/admin.php:1036
+msgid "Path for lock file"
 msgstr ""
 
-#: mod/directory.php:199
-msgid "Find on this site"
+#: mod/admin.php:1036
+msgid ""
+"The lock file is used to avoid multiple pollers at one time. Only define a "
+"folder here."
 msgstr ""
 
-#: mod/directory.php:201
-msgid "Results for:"
+#: mod/admin.php:1037
+msgid "Temp path"
 msgstr ""
 
-#: mod/directory.php:203
-msgid "Site Directory"
+#: mod/admin.php:1037
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
 msgstr ""
 
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
+#: mod/admin.php:1038
+msgid "Base path to installation"
 msgstr ""
 
-#: mod/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
+#: mod/admin.php:1038
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the "
+"correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
 msgstr ""
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
+#: mod/admin.php:1039
+msgid "Disable picture proxy"
 msgstr ""
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
+#: mod/admin.php:1039
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on "
+"systems with very low bandwith."
 msgstr ""
 
-#: mod/display.php:473
-msgid "Item has been removed."
+#: mod/admin.php:1040
+msgid "Enable old style pager"
 msgstr ""
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
+#: mod/admin.php:1040
+msgid ""
+"The old style pager has page numbers but slows down massively the page speed."
 msgstr ""
 
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
+#: mod/admin.php:1041
+msgid "Only search in tags"
 msgstr ""
 
-#: mod/events.php:381
-msgid "Create New Event"
+#: mod/admin.php:1041
+msgid "On large systems the text search can slow down the system extremely."
 msgstr ""
 
-#: mod/events.php:482
-msgid "Event details"
+#: mod/admin.php:1043
+msgid "New base url"
 msgstr ""
 
-#: mod/events.php:483
-msgid "Starting date and Title are required."
+#: mod/admin.php:1043
+msgid ""
+"Change base url for this server. Sends relocate message to all DFRN contacts "
+"of all users."
 msgstr ""
 
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
+#: mod/admin.php:1045
+msgid "RINO Encryption"
 msgstr ""
 
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
+#: mod/admin.php:1045
+msgid "Encryption layer between nodes."
 msgstr ""
 
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
+#: mod/admin.php:1046
+msgid "Embedly API key"
 msgstr ""
 
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
+#: mod/admin.php:1046
+msgid ""
+"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
+"web pages. This is an optional parameter."
 msgstr ""
 
-#: mod/events.php:492
-msgid "Description:"
+#: mod/admin.php:1048
+msgid "Enable 'worker' background processing"
 msgstr ""
 
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
+#: mod/admin.php:1048
+msgid ""
+"The worker background processing limits the number of parallel background "
+"jobs to a maximum number and respects the system load."
 msgstr ""
 
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
+#: mod/admin.php:1049
+msgid "Maximum number of parallel workers"
 msgstr ""
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
+#: mod/admin.php:1049
+msgid ""
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
 msgstr ""
 
-#: mod/install.php:145
-msgid "Could not connect to database."
+#: mod/admin.php:1050
+msgid "Don't use 'proc_open' with the worker"
 msgstr ""
 
-#: mod/install.php:149
-msgid "Could not create table."
+#: mod/admin.php:1050
+msgid ""
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
 msgstr ""
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
+#: mod/admin.php:1051
+msgid "Enable fastlane"
 msgstr ""
 
-#: mod/install.php:160
+#: mod/admin.php:1051
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+"When enabed, the fastlane mechanism starts an additional worker if processes "
+"with higher priority are blocked by processes of lower priority."
 msgstr ""
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:602
-msgid "Please see the file \"INSTALL.txt\"."
+#: mod/admin.php:1080
+msgid "Update has been marked successful"
 msgstr ""
 
-#: mod/install.php:173
-msgid "Database already in use."
+#: mod/admin.php:1088
+#, php-format
+msgid "Database structure update %s was successfully applied."
 msgstr ""
 
-#: mod/install.php:227
-msgid "System check"
+#: mod/admin.php:1091
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
 msgstr ""
 
-#: mod/install.php:232
-msgid "Check again"
+#: mod/admin.php:1103
+#, php-format
+msgid "Executing %s failed with error: %s"
 msgstr ""
 
-#: mod/install.php:251
-msgid "Database connection"
+#: mod/admin.php:1106
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: mod/install.php:252
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
+#: mod/admin.php:1110
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: mod/install.php:253
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: mod/admin.php:1112
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
 msgstr ""
 
-#: mod/install.php:254
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: mod/admin.php:1131
+msgid "No failed updates."
 msgstr ""
 
-#: mod/install.php:258
-msgid "Database Server Name"
+#: mod/admin.php:1132
+msgid "Check database structure"
 msgstr ""
 
-#: mod/install.php:259
-msgid "Database Login Name"
+#: mod/admin.php:1137
+msgid "Failed Updates"
 msgstr ""
 
-#: mod/install.php:260
-msgid "Database Login Password"
+#: mod/admin.php:1138
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: mod/install.php:261
-msgid "Database Name"
+#: mod/admin.php:1139
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
+#: mod/admin.php:1140
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: mod/install.php:262 mod/install.php:303
+#: mod/admin.php:1174
+#, php-format
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
+"\n"
+"\t\t\tDear %1$s,\n"
+"\t\t\t\tthe administrator of %2$s has set up an account for you."
 msgstr ""
 
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
+#: mod/admin.php:1177
+#, 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 ""
 
-#: mod/install.php:293
-msgid "Site settings"
-msgstr ""
+#: mod/admin.php:1221
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/install.php:307
-msgid "System Language:"
-msgstr ""
+#: mod/admin.php:1228
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
 
-#: mod/install.php:307
-msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
+#: mod/admin.php:1275
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: mod/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: mod/admin.php:1283
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: mod/install.php:348
-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='https://"
-"github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-"
-"poller'>'Setup the poller'</a>"
+#: mod/admin.php:1283
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: mod/install.php:352
-msgid "PHP executable path"
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Register date"
 msgstr ""
 
-#: mod/install.php:352
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Last login"
 msgstr ""
 
-#: mod/install.php:357
-msgid "Command line PHP"
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Last item"
 msgstr ""
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+#: mod/admin.php:1392 mod/settings.php:43
+msgid "Account"
 msgstr ""
 
-#: mod/install.php:367
-msgid "Found PHP version: "
+#: mod/admin.php:1401
+msgid "Add User"
 msgstr ""
 
-#: mod/install.php:369
-msgid "PHP cli binary"
+#: mod/admin.php:1402
+msgid "select all"
 msgstr ""
 
-#: mod/install.php:380
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: mod/admin.php:1403
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
+#: mod/admin.php:1404
+msgid "User waiting for permanent deletion"
 msgstr ""
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
+#: mod/admin.php:1405
+msgid "Request date"
 msgstr ""
 
-#: mod/install.php:404
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: mod/admin.php:1406
+msgid "No registrations."
 msgstr ""
 
-#: mod/install.php:405
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: mod/admin.php:1407
+msgid "Note from the user"
 msgstr ""
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
+#: mod/admin.php:1409
+msgid "Deny"
 msgstr ""
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
+#: mod/admin.php:1413
+msgid "Site admin"
 msgstr ""
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
+#: mod/admin.php:1414
+msgid "Account expired"
 msgstr ""
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
+#: mod/admin.php:1417
+msgid "New User"
 msgstr ""
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
+#: mod/admin.php:1418
+msgid "Deleted since"
 msgstr ""
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
+#: mod/admin.php:1423
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
+#: mod/admin.php:1424
+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/install.php:420
-msgid "XML PHP module"
+#: mod/admin.php:1434
+msgid "Name of the new user."
 msgstr ""
 
-#: mod/install.php:421
-msgid "iconv module"
+#: mod/admin.php:1435
+msgid "Nickname"
 msgstr ""
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
+#: mod/admin.php:1435
+msgid "Nickname of the new user."
 msgstr ""
 
-#: mod/install.php:425
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+#: mod/admin.php:1436
+msgid "Email address of the new user."
 msgstr ""
 
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
+#: mod/admin.php:1479
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: mod/install.php:437
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
+#: mod/admin.php:1483
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
+#: mod/admin.php:1494 mod/admin.php:1730
+msgid "Disable"
 msgstr ""
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
+#: mod/admin.php:1496 mod/admin.php:1732
+msgid "Enable"
 msgstr ""
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
+#: mod/admin.php:1519 mod/admin.php:1777
+msgid "Toggle"
 msgstr ""
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
+#: mod/admin.php:1527 mod/admin.php:1786
+msgid "Author: "
 msgstr ""
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
+#: mod/admin.php:1528 mod/admin.php:1787
+msgid "Maintainer: "
 msgstr ""
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
+#: mod/admin.php:1580
+msgid "Reload active plugins"
 msgstr ""
 
-#: mod/install.php:469
+#: mod/admin.php:1585
+#, php-format
 msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
 msgstr ""
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
+#: mod/admin.php:1690
+msgid "No themes found."
 msgstr ""
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
+#: mod/admin.php:1768
+msgid "Screenshot"
 msgstr ""
 
-#: mod/install.php:494
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\" "
-"in the top folder of your web server and it is unable to do so."
+#: mod/admin.php:1828
+msgid "Reload active themes"
 msgstr ""
 
-#: mod/install.php:495
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
+#: mod/admin.php:1833
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
 msgstr ""
 
-#: mod/install.php:496
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
+#: mod/admin.php:1834
+msgid "[Experimental]"
 msgstr ""
 
-#: mod/install.php:497
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation. "
-"Please see the file \"INSTALL.txt\" for instructions."
+#: mod/admin.php:1835
+msgid "[Unsupported]"
 msgstr ""
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
+#: mod/admin.php:1859
+msgid "Log settings updated."
 msgstr ""
 
-#: mod/install.php:510
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: mod/admin.php:1891
+msgid "PHP log currently enabled."
 msgstr ""
 
-#: mod/install.php:511
-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/admin.php:1893
+msgid "PHP log currently disabled."
 msgstr ""
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has "
-"write access to this folder."
+#: mod/admin.php:1902
+msgid "Clear"
 msgstr ""
 
-#: mod/install.php:513
-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/admin.php:1907
+msgid "Enable Debugging"
 msgstr ""
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
+#: mod/admin.php:1908
+msgid "Log file"
 msgstr ""
 
-#: mod/install.php:532
+#: mod/admin.php:1908
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
+#: mod/admin.php:1909
+msgid "Log level"
 msgstr ""
 
-#: mod/install.php:551
-msgid "ImageMagick PHP extension is installed"
+#: mod/admin.php:1912
+msgid "PHP logging"
 msgstr ""
 
-#: mod/install.php:553
-msgid "ImageMagick supports GIF"
+#: mod/admin.php:1913
+msgid ""
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
 msgstr ""
 
-#: mod/install.php:561
-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/admin.php:2040 mod/admin.php:2041 mod/settings.php:778
+msgid "Off"
 msgstr ""
 
-#: mod/install.php:600
-msgid "<h1>What next</h1>"
+#: mod/admin.php:2040 mod/admin.php:2041 mod/settings.php:778
+msgid "On"
 msgstr ""
 
-#: mod/install.php:601
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: mod/admin.php:2041
+#, php-format
+msgid "Lock feature %s"
+msgstr ""
+
+#: mod/admin.php:2049
+msgid "Manage Additional Features"
 msgstr ""
 
 #: mod/item.php:116
@@ -7466,109 +7503,96 @@ msgstr ""
 msgid "Empty post discarded."
 msgstr ""
 
-#: mod/item.php:895
+#: mod/item.php:898
 msgid "System error. Post not saved."
 msgstr ""
 
-#: mod/item.php:985
+#: mod/item.php:988
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: mod/item.php:987
+#: mod/item.php:990
 #, php-format
 msgid "You may visit them online at %s"
 msgstr ""
 
-#: mod/item.php:988
+#: mod/item.php:991
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr ""
 
-#: mod/item.php:992
+#: mod/item.php:995
 #, php-format
 msgid "%s posted an update."
 msgstr ""
 
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
-msgstr ""
-
-#: mod/match.php:33
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr ""
-
-#: mod/match.php:86
-msgid "is interested in:"
-msgstr ""
-
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr ""
-
 #: mod/network.php:398
 #, php-format
-msgid "Warning: This group contains %s member from an insecure network."
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non "
+"public messages."
 msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
 msgstr[0] ""
 msgstr[1] ""
 
 #: mod/network.php:401
-msgid "Private messages to this group are at risk of public disclosure."
+msgid "Messages in this group won't be send to these receivers."
 msgstr ""
 
-#: mod/network.php:528
+#: mod/network.php:529
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr ""
 
-#: mod/network.php:533
+#: mod/network.php:534
 msgid "Invalid contact."
 msgstr ""
 
-#: mod/network.php:826
+#: mod/network.php:827
 msgid "Commented Order"
 msgstr ""
 
-#: mod/network.php:829
+#: mod/network.php:830
 msgid "Sort by Comment Date"
 msgstr ""
 
-#: mod/network.php:834
+#: mod/network.php:835
 msgid "Posted Order"
 msgstr ""
 
-#: mod/network.php:837
+#: mod/network.php:838
 msgid "Sort by Post Date"
 msgstr ""
 
-#: mod/network.php:848
+#: mod/network.php:849
 msgid "Posts that mention or involve you"
 msgstr ""
 
-#: mod/network.php:856
+#: mod/network.php:857
 msgid "New"
 msgstr ""
 
-#: mod/network.php:859
+#: mod/network.php:860
 msgid "Activity Stream - by date"
 msgstr ""
 
-#: mod/network.php:867
+#: mod/network.php:868
 msgid "Shared Links"
 msgstr ""
 
-#: mod/network.php:870
+#: mod/network.php:871
 msgid "Interesting Links"
 msgstr ""
 
-#: mod/network.php:878
+#: mod/network.php:879
 msgid "Starred"
 msgstr ""
 
-#: mod/network.php:881
+#: mod/network.php:882
 msgid "Favourite Posts"
 msgstr ""
 
@@ -7650,11 +7674,11 @@ msgstr ""
 msgid "Do not show a status post for this upload"
 msgstr ""
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1295
+#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
 msgid "Show to Groups"
 msgstr ""
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1296
+#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
 msgid "Show to Contacts"
 msgstr ""
 
@@ -7758,22 +7782,18 @@ msgstr ""
 msgid "View Album"
 msgstr ""
 
-#: mod/ping.php:234
+#: mod/ping.php:211
 msgid "{0} wants to be your friend"
 msgstr ""
 
-#: mod/ping.php:249
+#: mod/ping.php:226
 msgid "{0} sent you a message"
 msgstr ""
 
-#: mod/ping.php:264
+#: mod/ping.php:241
 msgid "{0} requested registration"
 msgstr ""
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr ""
-
 #: mod/register.php:93
 msgid ""
 "Registration successful. Please check your email for further instructions."
@@ -7794,121 +7814,86 @@ msgstr ""
 msgid "Your registration can not be processed."
 msgstr ""
 
-#: mod/register.php:153
+#: mod/register.php:160
 msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: mod/register.php:219
+#: mod/register.php:226
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr ""
 
-#: mod/register.php:220
+#: mod/register.php:227
 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:221
+#: mod/register.php:228
 msgid "Your OpenID (optional): "
 msgstr ""
 
-#: mod/register.php:235
+#: mod/register.php:242
 msgid "Include your profile in member directory?"
 msgstr ""
 
-#: mod/register.php:259
-msgid "Membership on this site is by invitation only."
-msgstr ""
-
-#: mod/register.php:260
-msgid "Your invitation ID: "
-msgstr ""
-
-#: mod/register.php:271
-msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
-msgstr ""
-
-#: mod/register.php:272
-msgid "Your Email Address: "
-msgstr ""
-
-#: mod/register.php:274 mod/settings.php:1266
-msgid "New Password:"
-msgstr ""
-
-#: mod/register.php:274
-msgid "Leave empty for an auto generated password."
-msgstr ""
-
-#: mod/register.php:275 mod/settings.php:1267
-msgid "Confirm:"
-msgstr ""
-
-#: mod/register.php:276
-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:277
-msgid "Choose a nickname: "
+#: mod/register.php:267
+msgid "Note for the admin"
 msgstr ""
 
-#: mod/register.php:287
-msgid "Import your profile to this friendica instance"
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
 msgstr ""
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
+#: mod/register.php:268
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
+#: mod/register.php:269
+msgid "Your invitation ID: "
 msgstr ""
 
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
+#: mod/register.php:280
+msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr ""
 
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
+#: mod/register.php:281
+msgid "Your Email Address: "
 msgstr ""
 
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
+#: mod/register.php:283 mod/settings.php:1271
+msgid "New Password:"
 msgstr ""
 
-#: mod/videos.php:125
-msgid "Delete Video"
+#: mod/register.php:283
+msgid "Leave empty for an auto generated password."
 msgstr ""
 
-#: mod/videos.php:204
-msgid "No videos selected"
+#: mod/register.php:284 mod/settings.php:1272
+msgid "Confirm:"
 msgstr ""
 
-#: mod/videos.php:396
-msgid "Recent Videos"
+#: mod/register.php:285
+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/videos.php:398
-msgid "Upload New Videos"
+#: mod/register.php:286
+msgid "Choose a nickname: "
 msgstr ""
 
-#: mod/viewcontacts.php:72
-msgid "No contacts."
+#: mod/register.php:296
+msgid "Import your profile to this friendica instance"
 msgstr ""
 
 #: mod/settings.php:60
 msgid "Display"
 msgstr ""
 
-#: mod/settings.php:67 mod/settings.php:884
+#: mod/settings.php:67 mod/settings.php:886
 msgid "Social Networks"
 msgstr ""
 
@@ -7936,675 +7921,731 @@ msgstr ""
 msgid "Features updated"
 msgstr ""
 
-#: mod/settings.php:357
+#: mod/settings.php:359
 msgid "Relocate message has been send to your contacts"
 msgstr ""
 
-#: mod/settings.php:376
+#: mod/settings.php:378
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr ""
 
-#: mod/settings.php:384
+#: mod/settings.php:386
 msgid "Wrong password."
 msgstr ""
 
-#: mod/settings.php:395
+#: mod/settings.php:397
 msgid "Password changed."
 msgstr ""
 
-#: mod/settings.php:397
+#: mod/settings.php:399
 msgid "Password update failed. Please try again."
 msgstr ""
 
-#: mod/settings.php:477
+#: mod/settings.php:479
 msgid " Please use a shorter name."
 msgstr ""
 
-#: mod/settings.php:479
+#: mod/settings.php:481
 msgid " Name too short."
 msgstr ""
 
-#: mod/settings.php:488
+#: mod/settings.php:490
 msgid "Wrong Password"
 msgstr ""
 
-#: mod/settings.php:493
+#: mod/settings.php:495
 msgid " Not valid email."
 msgstr ""
 
-#: mod/settings.php:499
+#: mod/settings.php:501
 msgid " Cannot change to that email."
 msgstr ""
 
-#: mod/settings.php:555
+#: mod/settings.php:557
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: mod/settings.php:559
+#: mod/settings.php:561
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: mod/settings.php:599
+#: mod/settings.php:601
 msgid "Settings updated."
 msgstr ""
 
-#: mod/settings.php:675 mod/settings.php:701 mod/settings.php:737
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
 msgid "Add application"
 msgstr ""
 
-#: mod/settings.php:679 mod/settings.php:705
+#: mod/settings.php:681 mod/settings.php:707
 msgid "Consumer Key"
 msgstr ""
 
-#: mod/settings.php:680 mod/settings.php:706
+#: mod/settings.php:682 mod/settings.php:708
 msgid "Consumer Secret"
 msgstr ""
 
-#: mod/settings.php:681 mod/settings.php:707
+#: mod/settings.php:683 mod/settings.php:709
 msgid "Redirect"
 msgstr ""
 
-#: mod/settings.php:682 mod/settings.php:708
+#: mod/settings.php:684 mod/settings.php:710
 msgid "Icon url"
 msgstr ""
 
-#: mod/settings.php:693
+#: mod/settings.php:695
 msgid "You can't edit this application."
 msgstr ""
 
-#: mod/settings.php:736
+#: mod/settings.php:738
 msgid "Connected Apps"
 msgstr ""
 
-#: mod/settings.php:740
+#: mod/settings.php:742
 msgid "Client key starts with"
 msgstr ""
 
-#: mod/settings.php:741
+#: mod/settings.php:743
 msgid "No name"
 msgstr ""
 
-#: mod/settings.php:742
+#: mod/settings.php:744
 msgid "Remove authorization"
 msgstr ""
 
-#: mod/settings.php:754
+#: mod/settings.php:756
 msgid "No Plugin settings configured"
 msgstr ""
 
-#: mod/settings.php:762
+#: mod/settings.php:764
 msgid "Plugin Settings"
 msgstr ""
 
-#: mod/settings.php:784
+#: mod/settings.php:786
 msgid "Additional Features"
 msgstr ""
 
-#: mod/settings.php:794 mod/settings.php:798
+#: mod/settings.php:796 mod/settings.php:800
 msgid "General Social Media Settings"
 msgstr ""
 
-#: mod/settings.php:804
+#: mod/settings.php:806
 msgid "Disable intelligent shortening"
 msgstr ""
 
-#: mod/settings.php:806
+#: mod/settings.php:808
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the "
 "original friendica post."
 msgstr ""
 
-#: mod/settings.php:812
+#: mod/settings.php:814
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr ""
 
-#: mod/settings.php:814
+#: mod/settings.php:816
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr ""
 
-#: mod/settings.php:820
+#: mod/settings.php:822
 msgid "Default group for OStatus contacts"
 msgstr ""
 
-#: mod/settings.php:826
+#: mod/settings.php:828
 msgid "Your legacy GNU Social account"
 msgstr ""
 
-#: mod/settings.php:828
+#: mod/settings.php:830
 msgid ""
 "If you enter your old GNU Social/Statusnet account name here (in the format "
 "user@domain.tld), your contacts will be added automatically. The field will "
 "be emptied when done."
 msgstr ""
 
-#: mod/settings.php:831
+#: mod/settings.php:833
 msgid "Repair OStatus subscriptions"
 msgstr ""
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 msgid "enabled"
 msgstr ""
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 msgid "disabled"
 msgstr ""
 
-#: mod/settings.php:841
+#: mod/settings.php:843
 msgid "GNU Social (OStatus)"
 msgstr ""
 
-#: mod/settings.php:877
+#: mod/settings.php:879
 msgid "Email access is disabled on this site."
 msgstr ""
 
-#: mod/settings.php:889
+#: mod/settings.php:891
 msgid "Email/Mailbox Setup"
 msgstr ""
 
-#: mod/settings.php:890
+#: mod/settings.php:892
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr ""
 
-#: mod/settings.php:891
+#: mod/settings.php:893
 msgid "Last successful email check:"
 msgstr ""
 
-#: mod/settings.php:893
+#: mod/settings.php:895
 msgid "IMAP server name:"
 msgstr ""
 
-#: mod/settings.php:894
+#: mod/settings.php:896
 msgid "IMAP port:"
 msgstr ""
 
-#: mod/settings.php:895
+#: mod/settings.php:897
 msgid "Security:"
 msgstr ""
 
-#: mod/settings.php:895 mod/settings.php:900
+#: mod/settings.php:897 mod/settings.php:902
 msgid "None"
 msgstr ""
 
-#: mod/settings.php:896
+#: mod/settings.php:898
 msgid "Email login name:"
 msgstr ""
 
-#: mod/settings.php:897
+#: mod/settings.php:899
 msgid "Email password:"
 msgstr ""
 
-#: mod/settings.php:898
+#: mod/settings.php:900
 msgid "Reply-to address:"
 msgstr ""
 
-#: mod/settings.php:899
+#: mod/settings.php:901
 msgid "Send public posts to all email contacts:"
 msgstr ""
 
-#: mod/settings.php:900
+#: mod/settings.php:902
 msgid "Action after import:"
 msgstr ""
 
-#: mod/settings.php:900
+#: mod/settings.php:902
 msgid "Move to folder"
 msgstr ""
 
-#: mod/settings.php:901
+#: mod/settings.php:903
 msgid "Move to folder:"
 msgstr ""
 
-#: mod/settings.php:990
+#: mod/settings.php:994
 msgid "Display Settings"
 msgstr ""
 
-#: mod/settings.php:996 mod/settings.php:1018
+#: mod/settings.php:1000 mod/settings.php:1023
 msgid "Display Theme:"
 msgstr ""
 
-#: mod/settings.php:997
+#: mod/settings.php:1001
 msgid "Mobile Theme:"
 msgstr ""
 
-#: mod/settings.php:998
+#: mod/settings.php:1002
+msgid "Suppress warning of insecure networks"
+msgstr ""
+
+#: mod/settings.php:1002
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr ""
+
+#: mod/settings.php:1003
 msgid "Update browser every xx seconds"
 msgstr ""
 
-#: mod/settings.php:998
+#: mod/settings.php:1003
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr ""
 
-#: mod/settings.php:999
+#: mod/settings.php:1004
 msgid "Number of items to display per page:"
 msgstr ""
 
-#: mod/settings.php:999 mod/settings.php:1000
+#: mod/settings.php:1004 mod/settings.php:1005
 msgid "Maximum of 100 items"
 msgstr ""
 
-#: mod/settings.php:1000
+#: mod/settings.php:1005
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr ""
 
-#: mod/settings.php:1001
+#: mod/settings.php:1006
 msgid "Don't show emoticons"
 msgstr ""
 
-#: mod/settings.php:1002
+#: mod/settings.php:1007
 msgid "Calendar"
 msgstr ""
 
-#: mod/settings.php:1003
+#: mod/settings.php:1008
 msgid "Beginning of week:"
 msgstr ""
 
-#: mod/settings.php:1004
+#: mod/settings.php:1009
 msgid "Don't show notices"
 msgstr ""
 
-#: mod/settings.php:1005
+#: mod/settings.php:1010
 msgid "Infinite scroll"
 msgstr ""
 
-#: mod/settings.php:1006
+#: mod/settings.php:1011
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: mod/settings.php:1007
+#: mod/settings.php:1012
 msgid "Bandwith Saver Mode"
 msgstr ""
 
-#: mod/settings.php:1007
+#: mod/settings.php:1012
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr ""
 
-#: mod/settings.php:1009
+#: mod/settings.php:1014
 msgid "General Theme Settings"
 msgstr ""
 
-#: mod/settings.php:1010
+#: mod/settings.php:1015
 msgid "Custom Theme Settings"
 msgstr ""
 
-#: mod/settings.php:1011
+#: mod/settings.php:1016
 msgid "Content Settings"
 msgstr ""
 
-#: mod/settings.php:1012 view/theme/frio/config.php:61
-#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66
-#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109
-#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61
+#: mod/settings.php:1017 view/theme/frio/config.php:61
+#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
+#: view/theme/duepuntozero/config.php:61
 msgid "Theme settings"
 msgstr ""
 
-#: mod/settings.php:1094
+#: mod/settings.php:1099
 msgid "Account Types"
 msgstr ""
 
-#: mod/settings.php:1095
+#: mod/settings.php:1100
 msgid "Personal Page Subtypes"
 msgstr ""
 
-#: mod/settings.php:1096
+#: mod/settings.php:1101
 msgid "Community Forum Subtypes"
 msgstr ""
 
-#: mod/settings.php:1103
+#: mod/settings.php:1108
 msgid "Personal Page"
 msgstr ""
 
-#: mod/settings.php:1104
+#: mod/settings.php:1109
 msgid "This account is a regular personal profile"
 msgstr ""
 
-#: mod/settings.php:1107
+#: mod/settings.php:1112
 msgid "Organisation Page"
 msgstr ""
 
-#: mod/settings.php:1108
+#: mod/settings.php:1113
 msgid "This account is a profile for an organisation"
 msgstr ""
 
-#: mod/settings.php:1111
+#: mod/settings.php:1116
 msgid "News Page"
 msgstr ""
 
-#: mod/settings.php:1112
+#: mod/settings.php:1117
 msgid "This account is a news account/reflector"
 msgstr ""
 
-#: mod/settings.php:1115
+#: mod/settings.php:1120
 msgid "Community Forum"
 msgstr ""
 
-#: mod/settings.php:1116
+#: mod/settings.php:1121
 msgid ""
 "This account is a community forum where people can discuss with each other"
 msgstr ""
 
-#: mod/settings.php:1119
+#: mod/settings.php:1124
 msgid "Normal Account Page"
 msgstr ""
 
-#: mod/settings.php:1120
+#: mod/settings.php:1125
 msgid "This account is a normal personal profile"
 msgstr ""
 
-#: mod/settings.php:1123
+#: mod/settings.php:1128
 msgid "Soapbox Page"
 msgstr ""
 
-#: mod/settings.php:1124
+#: mod/settings.php:1129
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr ""
 
-#: mod/settings.php:1127
+#: mod/settings.php:1132
 msgid "Public Forum"
 msgstr ""
 
-#: mod/settings.php:1128
+#: mod/settings.php:1133
 msgid "Automatically approve all contact requests"
 msgstr ""
 
-#: mod/settings.php:1131
+#: mod/settings.php:1136
 msgid "Automatic Friend Page"
 msgstr ""
 
-#: mod/settings.php:1132
+#: mod/settings.php:1137
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr ""
 
-#: mod/settings.php:1135
+#: mod/settings.php:1140
 msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: mod/settings.php:1136
+#: mod/settings.php:1141
 msgid "Private forum - approved members only"
 msgstr ""
 
-#: mod/settings.php:1148
+#: mod/settings.php:1153
 msgid "OpenID:"
 msgstr ""
 
-#: mod/settings.php:1148
+#: mod/settings.php:1153
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr ""
 
-#: mod/settings.php:1158
+#: mod/settings.php:1163
 msgid "Publish your default profile in your local site directory?"
 msgstr ""
 
-#: mod/settings.php:1164
+#: mod/settings.php:1169
 msgid "Publish your default profile in the global social directory?"
 msgstr ""
 
-#: mod/settings.php:1172
+#: mod/settings.php:1177
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr ""
 
-#: mod/settings.php:1176
+#: mod/settings.php:1181
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr ""
 
-#: mod/settings.php:1181
+#: mod/settings.php:1186
 msgid "Allow friends to post to your profile page?"
 msgstr ""
 
-#: mod/settings.php:1187
+#: mod/settings.php:1192
 msgid "Allow friends to tag your posts?"
 msgstr ""
 
-#: mod/settings.php:1193
+#: mod/settings.php:1198
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: mod/settings.php:1199
+#: mod/settings.php:1204
 msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: mod/settings.php:1207
+#: mod/settings.php:1212
 msgid "Profile is <strong>not published</strong>."
 msgstr ""
 
-#: mod/settings.php:1215
+#: mod/settings.php:1220
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr ""
 
-#: mod/settings.php:1222
+#: mod/settings.php:1227
 msgid "Automatically expire posts after this many days:"
 msgstr ""
 
-#: mod/settings.php:1222
+#: mod/settings.php:1227
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr ""
 
-#: mod/settings.php:1223
+#: mod/settings.php:1228
 msgid "Advanced expiration settings"
 msgstr ""
 
-#: mod/settings.php:1224
+#: mod/settings.php:1229
 msgid "Advanced Expiration"
 msgstr ""
 
-#: mod/settings.php:1225
+#: mod/settings.php:1230
 msgid "Expire posts:"
 msgstr ""
 
-#: mod/settings.php:1226
+#: mod/settings.php:1231
 msgid "Expire personal notes:"
 msgstr ""
 
-#: mod/settings.php:1227
+#: mod/settings.php:1232
 msgid "Expire starred posts:"
 msgstr ""
 
-#: mod/settings.php:1228
+#: mod/settings.php:1233
 msgid "Expire photos:"
 msgstr ""
 
-#: mod/settings.php:1229
+#: mod/settings.php:1234
 msgid "Only expire posts by others:"
 msgstr ""
 
-#: mod/settings.php:1257
+#: mod/settings.php:1262
 msgid "Account Settings"
 msgstr ""
 
-#: mod/settings.php:1265
+#: mod/settings.php:1270
 msgid "Password Settings"
 msgstr ""
 
-#: mod/settings.php:1267
+#: mod/settings.php:1272
 msgid "Leave password fields blank unless changing"
 msgstr ""
 
-#: mod/settings.php:1268
+#: mod/settings.php:1273
 msgid "Current Password:"
 msgstr ""
 
-#: mod/settings.php:1268 mod/settings.php:1269
+#: mod/settings.php:1273 mod/settings.php:1274
 msgid "Your current password to confirm the changes"
 msgstr ""
 
-#: mod/settings.php:1269
+#: mod/settings.php:1274
 msgid "Password:"
 msgstr ""
 
-#: mod/settings.php:1273
+#: mod/settings.php:1278
 msgid "Basic Settings"
 msgstr ""
 
-#: mod/settings.php:1275
+#: mod/settings.php:1280
 msgid "Email Address:"
 msgstr ""
 
-#: mod/settings.php:1276
+#: mod/settings.php:1281
 msgid "Your Timezone:"
 msgstr ""
 
-#: mod/settings.php:1277
+#: mod/settings.php:1282
 msgid "Your Language:"
 msgstr ""
 
-#: mod/settings.php:1277
+#: mod/settings.php:1282
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr ""
 
-#: mod/settings.php:1278
+#: mod/settings.php:1283
 msgid "Default Post Location:"
 msgstr ""
 
-#: mod/settings.php:1279
+#: mod/settings.php:1284
 msgid "Use Browser Location:"
 msgstr ""
 
-#: mod/settings.php:1282
+#: mod/settings.php:1287
 msgid "Security and Privacy Settings"
 msgstr ""
 
-#: mod/settings.php:1284
+#: mod/settings.php:1289
 msgid "Maximum Friend Requests/Day:"
 msgstr ""
 
-#: mod/settings.php:1284 mod/settings.php:1314
+#: mod/settings.php:1289 mod/settings.php:1319
 msgid "(to prevent spam abuse)"
 msgstr ""
 
-#: mod/settings.php:1285
+#: mod/settings.php:1290
 msgid "Default Post Permissions"
 msgstr ""
 
-#: mod/settings.php:1286
+#: mod/settings.php:1291
 msgid "(click to open/close)"
 msgstr ""
 
-#: mod/settings.php:1297
+#: mod/settings.php:1302
 msgid "Default Private Post"
 msgstr ""
 
-#: mod/settings.php:1298
+#: mod/settings.php:1303
 msgid "Default Public Post"
 msgstr ""
 
-#: mod/settings.php:1302
+#: mod/settings.php:1307
 msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: mod/settings.php:1314
+#: mod/settings.php:1319
 msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: mod/settings.php:1317
+#: mod/settings.php:1322
 msgid "Notification Settings"
 msgstr ""
 
-#: mod/settings.php:1318
+#: mod/settings.php:1323
 msgid "By default post a status message when:"
 msgstr ""
 
-#: mod/settings.php:1319
+#: mod/settings.php:1324
 msgid "accepting a friend request"
 msgstr ""
 
-#: mod/settings.php:1320
+#: mod/settings.php:1325
 msgid "joining a forum/community"
 msgstr ""
 
-#: mod/settings.php:1321
+#: mod/settings.php:1326
 msgid "making an <em>interesting</em> profile change"
 msgstr ""
 
-#: mod/settings.php:1322
+#: mod/settings.php:1327
 msgid "Send a notification email when:"
 msgstr ""
 
-#: mod/settings.php:1323
+#: mod/settings.php:1328
 msgid "You receive an introduction"
 msgstr ""
 
-#: mod/settings.php:1324
+#: mod/settings.php:1329
 msgid "Your introductions are confirmed"
 msgstr ""
 
-#: mod/settings.php:1325
+#: mod/settings.php:1330
 msgid "Someone writes on your profile wall"
 msgstr ""
 
-#: mod/settings.php:1326
+#: mod/settings.php:1331
 msgid "Someone writes a followup comment"
 msgstr ""
 
-#: mod/settings.php:1327
+#: mod/settings.php:1332
 msgid "You receive a private message"
 msgstr ""
 
-#: mod/settings.php:1328
+#: mod/settings.php:1333
 msgid "You receive a friend suggestion"
 msgstr ""
 
-#: mod/settings.php:1329
+#: mod/settings.php:1334
 msgid "You are tagged in a post"
 msgstr ""
 
-#: mod/settings.php:1330
+#: mod/settings.php:1335
 msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: mod/settings.php:1332
+#: mod/settings.php:1337
 msgid "Activate desktop notifications"
 msgstr ""
 
-#: mod/settings.php:1332
+#: mod/settings.php:1337
 msgid "Show desktop popup on new notifications"
 msgstr ""
 
-#: mod/settings.php:1334
+#: mod/settings.php:1339
 msgid "Text-only notification emails"
 msgstr ""
 
-#: mod/settings.php:1336
+#: mod/settings.php:1341
 msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: mod/settings.php:1338
+#: mod/settings.php:1343
 msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: mod/settings.php:1339
+#: mod/settings.php:1344
 msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: mod/settings.php:1342
+#: mod/settings.php:1347
 msgid "Relocate"
 msgstr ""
 
-#: mod/settings.php:1343
+#: mod/settings.php:1348
 msgid ""
 "If you have moved this profile from another server, and some of your "
 "contacts don't receive your updates, try pushing this button."
 msgstr ""
 
-#: mod/settings.php:1344
+#: mod/settings.php:1349
 msgid "Resend relocate message to contacts"
 msgstr ""
 
+#: mod/videos.php:120
+msgid "Do you really want to delete this video?"
+msgstr ""
+
+#: mod/videos.php:125
+msgid "Delete Video"
+msgstr ""
+
+#: mod/videos.php:204
+msgid "No videos selected"
+msgstr ""
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr ""
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr ""
+
+#: mod/viewcontacts.php:72
+msgid "No contacts."
+msgstr ""
+
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
+#: mod/wall_upload.php:122 mod/wall_upload.php:125
+msgid "Invalid request."
+msgstr ""
+
+#: mod/wall_attach.php:94
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr ""
+
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
+msgstr ""
+
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr ""
+
+#: mod/wall_attach.php:156 mod/wall_attach.php:172
+msgid "File upload failed."
+msgstr ""
+
 #: object/Item.php:370
 msgid "via"
 msgstr ""
@@ -8689,23 +8730,6 @@ msgstr ""
 msgid "Visitor"
 msgstr ""
 
-#: view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-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"
-msgstr ""
-
-#: view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr ""
-
-#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr ""
-
 #: view/theme/quattro/config.php:67
 msgid "Alignment"
 msgstr ""
@@ -8718,6 +8742,10 @@ msgstr ""
 msgid "Center"
 msgstr ""
 
+#: view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr ""
+
 #: view/theme/quattro/config.php:69
 msgid "Posts font size"
 msgstr ""
@@ -8726,33 +8754,19 @@ msgstr ""
 msgid "Textareas font size"
 msgstr ""
 
-#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr ""
-
-#: view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr ""
-
 #: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
-#: view/theme/diabook/config.php:160
 msgid "Community Profiles"
 msgstr ""
 
 #: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
-#: view/theme/diabook/config.php:164
 msgid "Last users"
 msgstr ""
 
 #: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
-#: view/theme/diabook/config.php:163
 msgid "Find Friends"
 msgstr ""
 
-#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524
+#: view/theme/vier/theme.php:200
 msgid "Local Directory"
 msgstr ""
 
@@ -8761,8 +8775,6 @@ msgid "Quick Start"
 msgstr ""
 
 #: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
-#: view/theme/diabook/config.php:162
 msgid "Connect Services"
 msgstr ""
 
@@ -8774,68 +8786,14 @@ msgstr ""
 msgid "Set style"
 msgstr ""
 
-#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
-#: view/theme/diabook/config.php:158
+#: view/theme/vier/config.php:111
 msgid "Community Pages"
 msgstr ""
 
-#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599
-#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161
+#: view/theme/vier/config.php:113
 msgid "Help or @NewHere ?"
 msgstr ""
 
-#: view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr ""
-
-#: view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr ""
-
-#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632
-#: view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr ""
-
-#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
-#: view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr ""
-
-#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
-#: view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr ""
-
-#: view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
-
-#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
-
-#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
-
-#: view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
-
-#: view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr ""
-
-#: view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr ""
-
-#: view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
-
 #: view/theme/duepuntozero/config.php:45
 msgid "greenzero"
 msgstr ""
@@ -8868,51 +8826,51 @@ msgstr ""
 msgid "toggle mobile"
 msgstr ""
 
-#: boot.php:968
+#: boot.php:969
 msgid "Delete this item?"
 msgstr ""
 
-#: boot.php:971
+#: boot.php:972
 msgid "show fewer"
 msgstr ""
 
-#: boot.php:1641
+#: boot.php:1650
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: boot.php:1753
+#: boot.php:1762
 msgid "Create a New Account"
 msgstr ""
 
-#: boot.php:1782
+#: boot.php:1791
 msgid "Password: "
 msgstr ""
 
-#: boot.php:1783
+#: boot.php:1792
 msgid "Remember me"
 msgstr ""
 
-#: boot.php:1786
+#: boot.php:1795
 msgid "Or login using OpenID: "
 msgstr ""
 
-#: boot.php:1792
+#: boot.php:1801
 msgid "Forgot your password?"
 msgstr ""
 
-#: boot.php:1795
+#: boot.php:1804
 msgid "Website Terms of Service"
 msgstr ""
 
-#: boot.php:1796
+#: boot.php:1805
 msgid "terms of service"
 msgstr ""
 
-#: boot.php:1798
+#: boot.php:1807
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: boot.php:1799
+#: boot.php:1808
 msgid "privacy policy"
 msgstr ""
index 12e792c040cbc837703849c3e14578ccada4c6f5..100764caba6e05adf3a0c8322f4661d032b3abc5 100644 (file)
@@ -32,16 +32,30 @@ sudo apt-get install -y apache2
 sudo a2enmod rewrite actions ssl
 sudo cp /vagrant/util/vagrant_vhost.sh /usr/local/bin/vhost
 sudo chmod guo+x /usr/local/bin/vhost
-sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica.dev
-sudo a2dissite 000-default
-sudo service apache2 restart
+if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
+    sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica-trusty.dev
+    sudo a2dissite 000-default
+    sudo service apache2 restart
+elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
+    sudo vhost -s 192.168.22.11.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica-xenial.dev
+    sudo a2dissite 000-default
+    sudo systemctl restart apache2
+fi
 
 #Install php
-echo ">>> Installing PHP5"
-sudo apt-get install -y php5 libapache2-mod-php5 php5-cli php5-mysql php5-curl php5-gd
-sudo apt-get install -y imagemagick
-sudo apt-get install -y php5-imagick
-sudo service apache2 restart
+if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
+    echo ">>> Installing PHP5"
+    sudo apt-get install -y php5 libapache2-mod-php5 php5-cli php5-mysql php5-curl php5-gd
+    sudo apt-get install -y imagemagick
+    sudo apt-get install -y php5-imagick
+    sudo service apache2 restart
+elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
+    echo ">>> Installing PHP7"
+    sudo apt-get install -y php libapache2-mod-php php-cli php-mysql php-curl php-gd
+    sudo apt-get install -y imagemagick
+    sudo apt-get install -y php-imagick
+    sudo systemctl restart apache2
+fi
 
 
 #Install mysql
@@ -59,12 +73,21 @@ Q1="GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;"
 Q2="FLUSH PRIVILEGES;"
 SQL="${Q1}${Q2}"
 $MYSQL -uroot -proot -e "$SQL"
-service mysql restart
+if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
+    service mysql restart
+elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
+    systemctl restart mysql
+fi
+
 
 
 #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"
+if [ $( lsb_release -c | cut -f 2 ) == "trusty" ]; then
+    debconf-set-selections <<< "postfix postfix/mailname string friendica-trusty.dev"
+elif [ $( lsb_release -c | cut -f 2 ) == "xenial" ]; then
+    debconf-set-selections <<< "postfix postfix/mailname string friendica-xenial.dev"
+fi
 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
index bcf7174ea37d8b2559f151e8fed32680d8b58741..85e45db006f0fc28af4afd8c0d0e67537744c055 100644 (file)
@@ -464,3 +464,20 @@ td.federation-data {
 #settings-form .pageflags {
     margin: 0 0 20px 30px;
 }
+
+/* admin pending user notes */
+td.pendingnote {
+       padding-left: 20px;
+       padding-right: 20px;
+}
+td.pendingnote > p > span {
+       font-weight: bold;
+}
+
+/* warning message */
+.warning-message {
+       padding: 10px;
+       margin: 5px;
+       border-left: 5px solid #f00;
+       font-weight: bold;
+}
index a5ad4627a07e4326e3c63889f44553c30aae475a..a7157a970f24ae7ded97b88cb228dbad448856e6 100644 (file)
@@ -35,8 +35,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-11-10 15:43+0100\n"
-"PO-Revision-Date: 2016-11-11 10:10+0000\n"
+"POT-Creation-Date: 2016-11-20 21:45+0100\n"
+"PO-Revision-Date: 2016-11-21 10:27+0000\n"
 "Last-Translator: Andreas H.\n"
 "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -78,8 +78,8 @@ msgstr "Leute finden"
 msgid "Enter name or interest"
 msgstr "Name oder Interessen eingeben"
 
-#: include/contact_widgets.php:32 include/conversation.php:981
-#: include/Contact.php:347 mod/follow.php:103 mod/allfriends.php:66
+#: include/contact_widgets.php:32 include/Contact.php:375
+#: include/conversation.php:981 mod/follow.php:103 mod/allfriends.php:66
 #: mod/contacts.php:602 mod/dirfind.php:204 mod/match.php:72
 #: mod/suggest.php:83
 msgid "Connect/Follow"
@@ -94,12 +94,11 @@ msgid "Find"
 msgstr "Finde"
 
 #: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527
+#: view/theme/vier/theme.php:203
 msgid "Friend Suggestions"
 msgstr "Kontaktvorschläge"
 
 #: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-#: view/theme/diabook/theme.php:526
 msgid "Similar Interests"
 msgstr "Ähnliche Interessen"
 
@@ -108,7 +107,6 @@ msgid "Random Profile"
 msgstr "Zufälliges Profil"
 
 #: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-#: view/theme/diabook/theme.php:528
 msgid "Invite Friends"
 msgstr "Freunde einladen"
 
@@ -140,8 +138,8 @@ msgstr[0] "%d gemeinsamer Kontakt"
 msgstr[1] "%d gemeinsame Kontakte"
 
 #: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2188 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:970
+#: include/items.php:2223 mod/content.php:624 object/Item.php:432
+#: view/theme/vier/theme.php:260 boot.php:971
 msgid "show more"
 msgstr "mehr anzeigen"
 
@@ -478,133 +476,6 @@ msgstr "Kontakte in keiner Gruppe"
 msgid "add"
 msgstr "hinzufügen"
 
-#: include/user.php:39 mod/settings.php:371
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
-
-#: include/user.php:113
-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:118
-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:121
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
-
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
-
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
-
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
-
-#: include/user.php:157
-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:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
-
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
-
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "Standard"
-
-#: include/user.php:266
-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/user.php:345 include/user.php:352 include/user.php:359
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
-#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
-#: mod/photos.php:1819 view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Profilbilder"
-
-#: include/user.php:387
-#, 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/user.php:391
-#, 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/user.php:423 mod/admin.php:1184
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
-
 #: include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
 msgstr "Unbekannt | Nicht kategorisiert"
@@ -629,19 +500,19 @@ msgstr "OK, wahrscheinlich harmlos"
 msgid "Reputable, has my trust"
 msgstr "Seriös, hat mein Vertrauen"
 
-#: include/contact_selectors.php:56 mod/admin.php:862
+#: include/contact_selectors.php:56 mod/admin.php:887
 msgid "Frequently"
 msgstr "immer wieder"
 
-#: include/contact_selectors.php:57 mod/admin.php:863
+#: include/contact_selectors.php:57 mod/admin.php:888
 msgid "Hourly"
 msgstr "Stündlich"
 
-#: include/contact_selectors.php:58 mod/admin.php:864
+#: include/contact_selectors.php:58 mod/admin.php:889
 msgid "Twice daily"
 msgstr "Zweimal täglich"
 
-#: include/contact_selectors.php:59 mod/admin.php:865
+#: include/contact_selectors.php:59 mod/admin.php:890
 msgid "Daily"
 msgstr "Täglich"
 
@@ -666,12 +537,12 @@ msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1367 mod/admin.php:1380 mod/admin.php:1392 mod/admin.php:1410
+#: mod/admin.php:1392 mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1436
 msgid "Email"
 msgstr "E-Mail"
 
 #: include/contact_selectors.php:80 mod/dfrn_request.php:869
-#: mod/settings.php:840
+#: mod/settings.php:842
 msgid "Diaspora"
 msgstr "Diaspora"
 
@@ -723,10 +594,6 @@ msgstr "App.net"
 msgid "Hubzilla/Redmatrix"
 msgstr "Hubzilla/Redmatrix"
 
-#: include/network.php:595
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
-
 #: include/acl_selectors.php:327
 msgid "Post to Email"
 msgstr "An E-Mail senden"
@@ -736,7 +603,7 @@ msgstr "An E-Mail senden"
 msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: include/acl_selectors.php:333 mod/settings.php:1176
+#: include/acl_selectors.php:333 mod/settings.php:1181
 msgid "Hide your profile details from unknown viewers?"
 msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
@@ -745,12 +612,10 @@ msgid "Visible to everybody"
 msgstr "Für jeden sichtbar"
 
 #: include/acl_selectors.php:339 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
 msgid "show"
 msgstr "zeigen"
 
 #: include/acl_selectors.php:340 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
 msgid "don't show"
 msgstr "nicht zeigen"
 
@@ -773,25 +638,23 @@ msgstr "Schließen"
 
 #: include/like.php:163 include/conversation.php:130
 #: include/conversation.php:266 include/text.php:1808 mod/subthread.php:87
-#: mod/tagger.php:62 view/theme/diabook/theme.php:471
+#: mod/tagger.php:62
 msgid "photo"
 msgstr "Foto"
 
-#: include/like.php:163 include/diaspora.php:1402 include/conversation.php:125
+#: include/like.php:163 include/conversation.php:125
 #: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
-#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
+#: include/conversation.php:270 include/diaspora.php:1406 mod/subthread.php:87
+#: mod/tagger.php:62
 msgid "status"
 msgstr "Status"
 
 #: include/like.php:165 include/conversation.php:122
 #: include/conversation.php:258 include/text.php:1806
-#: view/theme/diabook/theme.php:463
 msgid "event"
 msgstr "Event"
 
-#: include/like.php:182 include/diaspora.php:1398 include/conversation.php:141
-#: view/theme/diabook/theme.php:480
+#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1402
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "%1$s mag %2$ss %3$s"
@@ -820,9 +683,9 @@ msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 msgid "[no subject]"
 msgstr "[kein Betreff]"
 
-#: include/message.php:145 include/Photo.php:1045 include/Photo.php:1061
-#: include/Photo.php:1069 include/Photo.php:1094 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
+#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
+#: include/Photo.php:1064 include/Photo.php:1089 mod/item.php:477
+#: mod/wall_upload.php:218 mod/wall_upload.php:232 mod/wall_upload.php:239
 msgid "Wall Photos"
 msgstr "Pinnwand-Bilder"
 
@@ -874,89 +737,6 @@ msgstr[1] "%d Kontakte nicht importiert"
 msgid "Done. You can now login with your username and password"
 msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "System"
-
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:402
-#: view/theme/frio/theme.php:253
-msgid "Network"
-msgstr "Netzwerk"
-
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:845
-msgid "Personal"
-msgstr "Persönlich"
-
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161 view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Pinnwand"
-
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
-msgstr "Kontaktanfragen"
-
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:245
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
-
-#: include/NotificationsManager.php:244
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
-
-#: include/NotificationsManager.php:258
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
-
-#: include/NotificationsManager.php:269
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
-
-#: include/NotificationsManager.php:280
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s nimmt an %s's Event teil"
-
-#: include/NotificationsManager.php:291
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s nimmt nicht an %s's Event teil"
-
-#: include/NotificationsManager.php:302
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s nimmt eventuell an %s's Event teil"
-
-#: include/NotificationsManager.php:317
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
-
-#: include/NotificationsManager.php:750
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
-
-#: include/NotificationsManager.php:783
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
-
-#: include/NotificationsManager.php:783
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
-
-#: include/diaspora.php:1954
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
-
-#: include/diaspora.php:2854
-msgid "Attachments:"
-msgstr "Anhänge:"
-
 #: include/features.php:63
 msgid "General Features"
 msgstr "Allgemeine Features"
@@ -1160,29 +940,6 @@ msgstr "Erweiterte Profil-Einstellungen"
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite"
 
-#: include/delivery.php:439
-msgid "(no subject)"
-msgstr "(kein Betreff)"
-
-#: include/delivery.php:450 include/enotify.php:43
-msgid "noreply"
-msgstr "noreply"
-
-#: include/api.php:1019
-#, 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:1039
-#, 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:1060
-#, 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/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
 msgid "Image/photo"
 msgstr "Bild/Foto"
@@ -1200,1663 +957,1784 @@ msgstr "$1 hat geschrieben:"
 msgid "Encrypted content"
 msgstr "Verschlüsselter Inhalt"
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s nimmt an %2$ss %3$s teil."
-
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
+#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
+#: include/datetime.php:183 include/identity.php:629
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:473
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: include/datetime.php:185 mod/profiles.php:728
+msgid "Age: "
+msgstr "Alter: "
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: include/datetime.php:187
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD oder MM-DD"
 
-#: include/conversation.php:239 mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: include/datetime.php:341
+msgid "never"
+msgstr "nie"
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, 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"
+#: include/datetime.php:347
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
-
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
-
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
-msgstr "Likes"
-
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
-msgstr "Dislikes"
-
-#: include/conversation.php:586 include/conversation.php:1477
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Teilnehmend"
-msgstr[1] "Teilnehmend"
-
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
-msgstr "Nicht teilnehmend"
+#: include/datetime.php:350
+msgid "year"
+msgstr "Jahr"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
-msgstr "Eventuell teilnehmend"
+#: include/datetime.php:350
+msgid "years"
+msgstr "Jahre"
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
-msgstr "Auswählen"
+#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
+#: mod/events.php:389
+msgid "month"
+msgstr "Monat"
 
-#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/admin.php:1384 mod/contacts.php:808
-#: mod/contacts.php:1016 mod/photos.php:1682 mod/settings.php:739
-#: object/Item.php:134
-msgid "Delete"
-msgstr "Löschen"
+#: include/datetime.php:351
+msgid "months"
+msgstr "Monate"
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
+#: mod/events.php:390
+msgid "week"
+msgstr "Woche"
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
-msgstr "Kategorien:"
+#: include/datetime.php:352
+msgid "weeks"
+msgstr "Wochen"
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
+#: mod/events.php:391
+msgid "day"
+msgstr "Tag"
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: include/datetime.php:353
+msgid "days"
+msgstr "Tage"
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: include/datetime.php:354
+msgid "hour"
+msgstr "Stunde"
 
-#: include/conversation.php:791 include/conversation.php:1261
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1570 object/Item.php:406
-msgid "Please wait"
-msgstr "Bitte warten"
+#: include/datetime.php:354
+msgid "hours"
+msgstr "Stunden"
 
-#: include/conversation.php:870
-msgid "remove"
-msgstr "löschen"
+#: include/datetime.php:355
+msgid "minute"
+msgstr "Minute"
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: include/datetime.php:355
+msgid "minutes"
+msgstr "Minuten"
 
-#: include/conversation.php:966
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: include/datetime.php:356
+msgid "second"
+msgstr "Sekunde"
 
-#: include/conversation.php:967 include/Contact.php:390
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: include/datetime.php:356
+msgid "seconds"
+msgstr "Sekunden"
 
-#: include/conversation.php:968 include/conversation.php:984
-#: include/Contact.php:333 include/Contact.php:346 include/Contact.php:391
-#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
-#: mod/match.php:71 mod/suggest.php:82
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: include/datetime.php:365
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: include/conversation.php:969 include/Contact.php:392
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: include/datetime.php:572
+#, php-format
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: include/conversation.php:970 include/Contact.php:393
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: include/datetime.php:573 include/dfrn.php:1108
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: include/conversation.php:971 include/Contact.php:394
-msgid "View Contact"
-msgstr "Kontakt anzeigen"
+#: include/enotify.php:24
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: include/conversation.php:972 include/Contact.php:396
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: include/enotify.php:27
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: include/conversation.php:976 include/Contact.php:397
-msgid "Poke"
-msgstr "Anstupsen"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: include/conversation.php:1094
+#: include/enotify.php:32
 #, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrator"
 
-#: include/conversation.php:1097
+#: include/enotify.php:43 include/delivery.php:457
+msgid "noreply"
+msgstr "noreply"
+
+#: include/enotify.php:70
 #, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/conversation.php:1100
+#: include/enotify.php:83
 #, php-format
-msgid "%s attends."
-msgstr "%s nimmt teil."
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: include/conversation.php:1103
+#: include/enotify.php:85
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s nimmt nicht teil."
+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/conversation.php:1106
+#: include/enotify.php:86
 #, php-format
-msgid "%s attends maybe."
-msgstr "%s nimmt eventuell teil."
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte Dir %2$s."
 
-#: include/conversation.php:1116
-msgid "and"
-msgstr "und"
+#: include/enotify.php:86
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: include/conversation.php:1122
+#: include/enotify.php:88
 #, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+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/conversation.php:1131
+#: include/enotify.php:134
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: include/conversation.php:1132
+#: include/enotify.php:141
 #, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+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/conversation.php:1135
+#: include/enotify.php:149
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
 
-#: include/conversation.php:1136
+#: include/enotify.php:159
 #, php-format
-msgid "%s don't like this."
-msgstr "%s mögen dies nicht."
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: include/conversation.php:1139
+#: include/enotify.php:161
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: include/conversation.php:1140
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
 #, php-format
-msgid "%s attend."
-msgstr "%s nehmen teil."
+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/conversation.php:1143
+#: include/enotify.php:171
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: include/conversation.php:1144
+#: include/enotify.php:173
 #, php-format
-msgid "%s don't attend."
-msgstr "%s nehmen nicht teil."
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: include/conversation.php:1147
+#: include/enotify.php:174
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
+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/conversation.php:1148
+#: include/enotify.php:185
 #, php-format
-msgid "%s anttend maybe."
-msgstr "%s  nehmen vielleicht teil."
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: include/conversation.php:1187 include/conversation.php:1205
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: include/conversation.php:1188 include/conversation.php:1206
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: include/conversation.php:1189 include/conversation.php:1207
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: include/conversation.php:1191 include/conversation.php:1209
-msgid "Tag term:"
-msgstr "Tag:"
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: include/conversation.php:1192 include/conversation.php:1210
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: include/conversation.php:1194
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: include/conversation.php:1242 mod/photos.php:1569
-msgid "Share"
-msgstr "Teilen"
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: include/conversation.php:1244 mod/editpost.php:111
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: include/enotify.php:234
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: include/conversation.php:1245 mod/editpost.php:112
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: include/conversation.php:1246 mod/editpost.php:113
-msgid "attach file"
-msgstr "Datei anhängen"
+#: include/enotify.php:247
+#, 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/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: include/enotify.php:248
+#, 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/conversation.php:1248 mod/editpost.php:115
-msgid "web link"
-msgstr "Weblink"
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: include/conversation.php:1249 mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: include/conversation.php:1250 mod/editpost.php:117
-msgid "video link"
-msgstr "Video-Link"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: include/conversation.php:1251 mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: include/conversation.php:1252 mod/editpost.php:119
-msgid "audio link"
-msgstr "Audio-Link"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: include/conversation.php:1253 mod/editpost.php:120
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: include/enotify.php:273 include/enotify.php:274
+#, 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/conversation.php:1254 mod/editpost.php:121
-msgid "set location"
-msgstr "Ort setzen"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: include/conversation.php:1255 mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: include/conversation.php:1256 mod/editpost.php:123
-msgid "clear location"
-msgstr "Ort löschen"
+#: include/enotify.php:288
+#, 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]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: include/conversation.php:1258 mod/editpost.php:137
-msgid "Set title"
-msgstr "Titel setzen"
+#: include/enotify.php:293
+msgid "Name:"
+msgstr "Name:"
 
-#: include/conversation.php:1260 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: include/enotify.php:294
+msgid "Photo:"
+msgstr "Foto:"
 
-#: include/conversation.php:1262 mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: include/enotify.php:297
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: include/conversation.php:1263 mod/editpost.php:154
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: include/conversation.php:1271 mod/editpost.php:134
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
-#: mod/photos.php:1725 object/Item.php:729
-msgid "Preview"
-msgstr "Vorschau"
+#: include/enotify.php:308 include/enotify.php:322
+#, 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/conversation.php:1280 include/items.php:1917 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
-#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
-#: mod/contacts.php:445 mod/photos.php:235 mod/photos.php:322
-#: mod/suggest.php:32 mod/videos.php:128 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Cancel"
-msgstr "Abbrechen"
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: include/conversation.php:1286
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: include/enotify.php:314
+#, 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/conversation.php:1287
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: include/enotify.php:326
+#, 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/conversation.php:1288
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: include/enotify.php:328
+#, 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/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
-msgstr "Nachricht"
+#: include/enotify.php:330
+#, 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/conversation.php:1294 mod/editpost.php:153
-msgid "Browser"
-msgstr "Browser"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: include/conversation.php:1449
-msgid "View all"
-msgstr "Zeige alle"
+#: include/enotify.php:342
+#, 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/conversation.php:1471
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "mag ich"
-msgstr[1] "Mag ich"
+#: include/enotify.php:343
+#, 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/conversation.php:1474
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "mag ich nicht"
-msgstr[1] "Mag ich nicht"
+#: include/enotify.php:347
+#, 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/conversation.php:1480
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "Nicht teilnehmend "
-msgstr[1] "Nicht teilnehmend"
+#: include/enotify.php:350
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: include/event.php:441
+msgid "Sun"
+msgstr "So"
 
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: include/event.php:442
+msgid "Mon"
+msgstr "Mo"
 
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
-msgstr "Alter: "
+#: include/event.php:443
+msgid "Tue"
+msgstr "Di"
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD oder MM-DD"
+#: include/event.php:444
+msgid "Wed"
+msgstr "Mi"
 
-#: include/datetime.php:341
-msgid "never"
-msgstr "nie"
+#: include/event.php:445
+msgid "Thu"
+msgstr "Do"
 
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: include/event.php:446
+msgid "Fri"
+msgstr "Fr"
 
-#: include/datetime.php:350
-msgid "year"
-msgstr "Jahr"
+#: include/event.php:447
+msgid "Sat"
+msgstr "Sa"
 
-#: include/datetime.php:350
-msgid "years"
-msgstr "Jahre"
+#: include/event.php:448 include/text.php:1130 mod/settings.php:972
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
-#: mod/events.php:389
-msgid "month"
-msgstr "Monat"
+#: include/event.php:449 include/text.php:1130 mod/settings.php:972
+msgid "Monday"
+msgstr "Montag"
 
-#: include/datetime.php:351
-msgid "months"
-msgstr "Monate"
+#: include/event.php:450 include/text.php:1130
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
-#: mod/events.php:390
-msgid "week"
-msgstr "Woche"
+#: include/event.php:451 include/text.php:1130
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: include/datetime.php:352
-msgid "weeks"
-msgstr "Wochen"
+#: include/event.php:452 include/text.php:1130
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
-#: mod/events.php:391
-msgid "day"
-msgstr "Tag"
+#: include/event.php:453 include/text.php:1130
+msgid "Friday"
+msgstr "Freitag"
 
-#: include/datetime.php:353
-msgid "days"
-msgstr "Tage"
+#: include/event.php:454 include/text.php:1130
+msgid "Saturday"
+msgstr "Samstag"
 
-#: include/datetime.php:354
-msgid "hour"
-msgstr "Stunde"
+#: include/event.php:455
+msgid "Jan"
+msgstr "Jan"
 
-#: include/datetime.php:354
-msgid "hours"
-msgstr "Stunden"
+#: include/event.php:456
+msgid "Feb"
+msgstr "Feb"
 
-#: include/datetime.php:355
-msgid "minute"
-msgstr "Minute"
+#: include/event.php:457
+msgid "Mar"
+msgstr "März"
 
-#: include/datetime.php:355
-msgid "minutes"
-msgstr "Minuten"
+#: include/event.php:458
+msgid "Apr"
+msgstr "Apr"
 
-#: include/datetime.php:356
-msgid "second"
-msgstr "Sekunde"
+#: include/event.php:459 include/event.php:471 include/text.php:1134
+msgid "May"
+msgstr "Mai"
 
-#: include/datetime.php:356
-msgid "seconds"
-msgstr "Sekunden"
+#: include/event.php:460
+msgid "Jun"
+msgstr "Jun"
 
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: include/event.php:461
+msgid "Jul"
+msgstr "Juli"
 
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: include/event.php:462
+msgid "Aug"
+msgstr "Aug"
 
-#: include/datetime.php:573 include/dfrn.php:1108
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: include/event.php:463
+msgid "Sept"
+msgstr "Sep"
 
-#: 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."
-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/event.php:464
+msgid "Oct"
+msgstr "Okt"
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+#: include/event.php:465
+msgid "Nov"
+msgstr "Nov"
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: include/event.php:466
+msgid "Dec"
+msgstr "Dez"
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
-msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+#: include/event.php:467 include/text.php:1134
+msgid "January"
+msgstr "Januar"
 
-#: include/dfrn.php:1107
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%ss Geburtstag"
+#: include/event.php:468 include/text.php:1134
+msgid "February"
+msgstr "Februar"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: include/event.php:469 include/text.php:1134
+msgid "March"
+msgstr "März"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "Danke,"
+#: include/event.php:470 include/text.php:1134
+msgid "April"
+msgstr "April"
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: include/event.php:472 include/text.php:1134
+msgid "June"
+msgstr "Juni"
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrator"
+#: include/event.php:473 include/text.php:1134
+msgid "July"
+msgstr "Juli"
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/event.php:474 include/text.php:1134
+msgid "August"
+msgstr "August"
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+#: include/event.php:475 include/text.php:1134
+msgid "September"
+msgstr "September"
 
-#: include/enotify.php:85
-#, 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/event.php:476 include/text.php:1134
+msgid "October"
+msgstr "Oktober"
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte Dir %2$s."
+#: include/event.php:477 include/text.php:1134
+msgid "November"
+msgstr "November"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: include/event.php:478 include/text.php:1134
+msgid "December"
+msgstr "Dezember"
 
-#: include/enotify.php:88
-#, 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/event.php:479 mod/cal.php:283 mod/events.php:388
+msgid "today"
+msgstr "Heute"
 
-#: include/enotify.php:134
-#, 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/event.php:483
+msgid "all-day"
+msgstr "ganztägig"
 
-#: include/enotify.php:141
-#, 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/event.php:485
+msgid "No events to display"
+msgstr "Keine Veranstaltung zum Anzeigen"
 
-#: include/enotify.php:149
-#, 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/event.php:574
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/enotify.php:159
-#, 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/event.php:593
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
+#: include/event.php:615 include/text.php:1536 include/text.php:1543
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, 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/event.php:850
+msgid "Export"
+msgstr "Exportieren"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
+#: include/event.php:851
+msgid "Export calendar as ical"
+msgstr "Kalender als ical exportieren"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
+#: include/event.php:852
+msgid "Export calendar as csv"
+msgstr "Kalender als csv exportieren"
 
-#: include/enotify.php:174
-#, 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/follow.php:77 mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
+#: include/follow.php:82
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte Dich auf %2$s"
+#: include/follow.php:109
+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/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
+#: include/follow.php:110 include/follow.php:130
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: include/follow.php:128
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: include/follow.php:132
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: include/follow.php:134
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
+#: include/follow.php:136
+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/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat Dich auf %2$s angestupst"
+#: include/follow.php:137
+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/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
+#: include/follow.php:143
+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/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
+#: include/follow.php:153
+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/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
+#: include/follow.php:254
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: include/follow.php:287
+msgid "following"
+msgstr "folgen"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten"
 
-#: include/enotify.php:247
-#, 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/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: include/enotify.php:248
-#, 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/nav.php:40 include/text.php:1015
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, content"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst Du das Profil betrachten: %s"
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1787
+msgid "Logout"
+msgstr "Abmelden"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: include/nav.php:78 view/theme/frio/theme.php:243
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
+#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
+#: mod/contacts.php:833 view/theme/frio/theme.php:246
+msgid "Status"
+msgstr "Status"
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit Dir auf %2$s"
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: include/nav.php:82 include/identity.php:605 include/identity.php:691
+#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
+#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
+msgid "Profile"
+msgstr "Profil"
 
-#: include/enotify.php:273 include/enotify.php:274
-#, 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/nav.php:82 view/theme/frio/theme.php:247
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
+#: view/theme/frio/theme.php:248
+msgid "Photos"
+msgstr "Bilder"
+
+#: include/nav.php:83 view/theme/frio/theme.php:248
+msgid "Your photos"
+msgstr "Deine Fotos"
+
+#: include/nav.php:84 include/identity.php:738 include/identity.php:741
+#: view/theme/frio/theme.php:249
+msgid "Videos"
+msgstr "Videos"
+
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your videos"
+msgstr "Deine Videos"
+
+#: include/nav.php:85 include/nav.php:149 include/identity.php:750
+#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
+#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
+msgid "Events"
+msgstr "Veranstaltungen"
+
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your events"
+msgstr "Deine Ereignisse"
+
+#: include/nav.php:86
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
+
+#: include/nav.php:86
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
+
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1788
+msgid "Login"
+msgstr "Anmeldung"
+
+#: include/nav.php:95
+msgid "Sign in"
+msgstr "Anmelden"
+
+#: include/nav.php:105 include/nav.php:161
+#: include/NotificationsManager.php:174
+msgid "Home"
+msgstr "Pinnwand"
+
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Homepage"
+
+#: include/nav.php:109 mod/register.php:289 boot.php:1763
+msgid "Register"
+msgstr "Registrieren"
+
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
+
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Hilfe"
+
+#: include/nav.php:115
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
+
+#: include/nav.php:119
+msgid "Apps"
+msgstr "Apps"
+
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+
+#: include/nav.php:123 include/text.php:1012 mod/search.php:149
+msgid "Search"
+msgstr "Suche"
+
+#: include/nav.php:123
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
+
+#: include/nav.php:126 include/text.php:1020
+msgid "Full Text"
+msgstr "Volltext"
+
+#: include/nav.php:127 include/text.php:1021
+msgid "Tags"
+msgstr "Tags"
+
+#: include/nav.php:128 include/nav.php:192 include/identity.php:783
+#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
+#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
+msgid "Contacts"
+msgstr "Kontakte"
+
+#: include/nav.php:143 include/nav.php:145 mod/community.php:36
+msgid "Community"
+msgstr "Gemeinschaft"
+
+#: include/nav.php:143
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
+
+#: include/nav.php:145
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
+
+#: include/nav.php:149 include/identity.php:753 include/identity.php:764
+#: view/theme/frio/theme.php:254
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
+
+#: include/nav.php:152
+msgid "Directory"
+msgstr "Verzeichnis"
+
+#: include/nav.php:152
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
+
+#: include/nav.php:154
+msgid "Information"
+msgstr "Information"
+
+#: include/nav.php:154
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
+
+#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
+#: view/theme/frio/theme.php:253
+msgid "Network"
+msgstr "Netzwerk"
+
+#: include/nav.php:158 view/theme/frio/theme.php:253
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
+
+#: include/nav.php:159
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Kontakt-Vorschlag von '%1$s' auf %2$s erhalten"
+#: include/nav.php:159
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: include/enotify.php:288
-#, 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]Kontakt-Vorschlag[/url] %2$s von %3$s erhalten."
+#: include/nav.php:166 include/NotificationsManager.php:181
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Name:"
+#: include/nav.php:166
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Foto:"
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
+#: include/nav.php:170
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+#: include/nav.php:171 mod/settings.php:902
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: include/enotify.php:308 include/enotify.php:322
-#, 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/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Ihr seid nun beidseitige Kontakte und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+#: include/nav.php:175 view/theme/frio/theme.php:255
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: include/enotify.php:314
-#, 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/nav.php:176
+msgid "Inbox"
+msgstr "Eingang"
 
-#: include/enotify.php:326
-#, 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/nav.php:177
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: include/enotify.php:328
-#, 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/nav.php:178 mod/message.php:16
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: include/enotify.php:330
-#, 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/nav.php:181
+msgid "Manage"
+msgstr "Verwalten"
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
+#: include/nav.php:181
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: include/enotify.php:342
-#, 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/nav.php:184 mod/settings.php:81
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: include/enotify.php:343
-#, 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/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: include/enotify.php:347
-#, 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/nav.php:186 mod/newmember.php:22 mod/admin.php:1520
+#: mod/admin.php:1778 mod/settings.php:111 view/theme/frio/theme.php:256
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
+#: include/nav.php:186 view/theme/frio/theme.php:256
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: include/event.php:441
-msgid "Sun"
-msgstr "So"
+#: include/nav.php:189 include/identity.php:282
+msgid "Profiles"
+msgstr "Profile"
 
-#: include/event.php:442
-msgid "Mon"
-msgstr "Mo"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: include/event.php:443
-msgid "Tue"
-msgstr "Di"
+#: include/nav.php:192 view/theme/frio/theme.php:257
+msgid "Manage/edit friends and contacts"
+msgstr " Kontakte verwalten/editieren"
 
-#: include/event.php:444
-msgid "Wed"
-msgstr "Mi"
+#: include/nav.php:197 mod/admin.php:186
+msgid "Admin"
+msgstr "Administration"
 
-#: include/event.php:445
-msgid "Thu"
-msgstr "Do"
+#: include/nav.php:197
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: include/event.php:446
-msgid "Fri"
-msgstr "Fr"
+#: include/nav.php:200
+msgid "Navigation"
+msgstr "Navigation"
 
-#: include/event.php:447
-msgid "Sat"
-msgstr "Sa"
+#: include/nav.php:200
+msgid "Site map"
+msgstr "Sitemap"
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:968
-msgid "Sunday"
-msgstr "Sonntag"
+#: include/oembed.php:252
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:968
-msgid "Monday"
-msgstr "Montag"
+#: include/oembed.php:260
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
-msgstr "Dienstag"
+#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
+#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
+#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
-msgstr "Donnerstag"
+#: include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
-msgstr "Freitag"
+#: include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
-msgstr "Samstag"
+#: include/security.php:373
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: include/event.php:455
-msgid "Jan"
-msgstr "Jan"
+#: include/Contact.php:119
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: include/event.php:456
-msgid "Feb"
-msgstr "Feb"
+#: include/Contact.php:361 include/Contact.php:374 include/Contact.php:419
+#: include/conversation.php:968 include/conversation.php:984
+#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
+#: mod/match.php:71 mod/suggest.php:82
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: include/event.php:457
-msgid "Mar"
-msgstr "März"
+#: include/Contact.php:418 include/conversation.php:967
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: include/event.php:458
-msgid "Apr"
-msgstr "Apr"
+#: include/Contact.php:420 include/conversation.php:969
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
-msgstr "Mai"
+#: include/Contact.php:421 include/conversation.php:970
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: include/event.php:460
-msgid "Jun"
-msgstr "Jun"
+#: include/Contact.php:422 include/conversation.php:971
+msgid "View Contact"
+msgstr "Kontakt anzeigen"
 
-#: include/event.php:461
-msgid "Jul"
-msgstr "Juli"
+#: include/Contact.php:423
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: include/event.php:462
-msgid "Aug"
-msgstr "Aug"
+#: include/Contact.php:424 include/conversation.php:972
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: include/event.php:463
-msgid "Sept"
-msgstr "Sep"
+#: include/Contact.php:425 include/conversation.php:976
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: include/event.php:464
-msgid "Oct"
-msgstr "Okt"
+#: include/Contact.php:798
+msgid "Organisation"
+msgstr "Organisation"
 
-#: include/event.php:465
-msgid "Nov"
-msgstr "Nov"
+#: include/Contact.php:801
+msgid "News"
+msgstr "Nachrichten"
 
-#: include/event.php:466
-msgid "Dec"
-msgstr "Dez"
+#: include/Contact.php:804
+msgid "Forum"
+msgstr "Forum"
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
-msgstr "Januar"
+#: include/NotificationsManager.php:153
+msgid "System"
+msgstr "System"
 
-#: include/event.php:468 include/text.php:1134
-msgid "February"
-msgstr "Februar"
+#: include/NotificationsManager.php:167 mod/profiles.php:703
+#: mod/network.php:846
+msgid "Personal"
+msgstr "Persönlich"
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
-msgstr "März"
+#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
-msgstr "April"
+#: include/NotificationsManager.php:243
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
-msgstr "Juni"
+#: include/NotificationsManager.php:256
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
-msgstr "Juli"
+#: include/NotificationsManager.php:267
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
-msgstr "August"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s nimmt an %s's Event teil"
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
-msgstr "September"
+#: include/NotificationsManager.php:289
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s nimmt nicht an %s's Event teil"
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
-msgstr "Oktober"
+#: include/NotificationsManager.php:300
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s nimmt eventuell an %s's Event teil"
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
-msgstr "November"
+#: include/NotificationsManager.php:315
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
-msgstr "Dezember"
+#: include/NotificationsManager.php:748
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: include/event.php:479 mod/cal.php:283 mod/events.php:388
-msgid "today"
-msgstr "Heute"
+#: include/NotificationsManager.php:781
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: include/event.php:483
-msgid "all-day"
-msgstr "ganztägig"
+#: include/NotificationsManager.php:781
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: include/event.php:485
-msgid "No events to display"
-msgstr "Keine Veranstaltung zum Anzeigen"
+#: include/api.php:1018
+#, 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/event.php:574
-msgid "l, F j"
-msgstr "l, F j"
+#: include/api.php:1038
+#, 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/event.php:593
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: include/api.php:1059
+#, 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/event.php:615 include/text.php:1536 include/text.php:1543
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: include/conversation.php:147
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s nimmt an %2$ss %3$s teil."
 
-#: include/event.php:850
-msgid "Export"
-msgstr "Exportieren"
+#: include/conversation.php:150
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s nimmt nicht an %2$ss %3$s teil."
 
-#: include/event.php:851
-msgid "Export calendar as ical"
-msgstr "Kalender als ical exportieren"
+#: include/conversation.php:153
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s nimmt eventuell an %2$ss %3$s teil."
 
-#: include/event.php:852
-msgid "Export calendar as csv"
-msgstr "Kalender als csv exportieren"
+#: include/conversation.php:185 mod/dfrn_confirm.php:473
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: include/follow.php:77 mod/dfrn_request.php:507
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: include/conversation.php:219
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: include/follow.php:82
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: include/conversation.php:239 mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: include/follow.php:109
-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/conversation.php:278 mod/tagger.php:95
+#, 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"
 
-#: include/follow.php:110 include/follow.php:130
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: include/conversation.php:303
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: include/follow.php:128
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: include/conversation.php:304
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
 
-#: include/follow.php:132
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
+#: mod/photos.php:1607
+msgid "Likes"
+msgstr "Likes"
 
-#: include/follow.php:134
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
+#: mod/photos.php:1607
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: include/follow.php:136
-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/conversation.php:586 include/conversation.php:1477
+#: mod/content.php:373 mod/photos.php:1608
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Teilnehmend"
+msgstr[1] "Teilnehmend"
 
-#: include/follow.php:137
-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/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Not attending"
+msgstr "Nicht teilnehmend"
 
-#: include/follow.php:143
-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/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Might attend"
+msgstr "Eventuell teilnehmend"
 
-#: include/follow.php:153
-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/conversation.php:708 mod/content.php:453 mod/content.php:758
+#: mod/photos.php:1681 object/Item.php:133
+msgid "Select"
+msgstr "Auswählen"
 
-#: include/follow.php:254
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
+#: mod/content.php:759 mod/contacts.php:808 mod/contacts.php:1016
+#: mod/admin.php:1410 mod/photos.php:1682 mod/settings.php:741
+#: object/Item.php:134
+msgid "Delete"
+msgstr "Löschen"
 
-#: include/follow.php:287
-msgid "following"
-msgstr "folgen"
+#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
+#: mod/content.php:911 object/Item.php:367 object/Item.php:368
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: include/identity.php:42
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: include/conversation.php:765 object/Item.php:355
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: include/conversation.php:766 object/Item.php:356
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
+#: object/Item.php:381
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: include/identity.php:251
-msgid "Atom feed"
-msgstr "Atom-Feed"
+#: include/conversation.php:789 mod/content.php:513
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: include/identity.php:282 include/nav.php:189
-msgid "Profiles"
-msgstr "Profile"
+#: include/conversation.php:791 include/conversation.php:1261
+#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
+#: mod/message.php:548 mod/content.php:515 mod/content.php:948
+#: mod/photos.php:1570 object/Item.php:406
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: include/conversation.php:870
+msgid "remove"
+msgstr "löschen"
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: include/conversation.php:874
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: include/conversation.php:966
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
-msgstr "Profilbild"
+#: include/conversation.php:1094
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: include/conversation.php:1097
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: include/conversation.php:1100
+#, php-format
+msgid "%s attends."
+msgstr "%s nimmt teil."
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: include/conversation.php:1103
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s nimmt nicht teil."
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
-msgstr "Status:"
+#: include/conversation.php:1106
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s nimmt eventuell teil."
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
-msgstr "Homepage:"
+#: include/conversation.php:1116
+msgid "and"
+msgstr "und"
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/contacts.php:632 mod/directory.php:145
-msgid "About:"
-msgstr "Über:"
+#: include/conversation.php:1122
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
-msgstr "XMPP:"
+#: include/conversation.php:1131
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
-msgstr "Netzwerk:"
+#: include/conversation.php:1132
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: include/conversation.php:1135
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das nicht"
 
-#: include/identity.php:452 include/identity.php:536
-msgid "F d"
-msgstr "d. F"
+#: include/conversation.php:1136
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen dies nicht."
 
-#: include/identity.php:497 include/identity.php:582
-msgid "[today]"
-msgstr "[heute]"
+#: include/conversation.php:1139
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen teil"
 
-#: include/identity.php:509
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: include/conversation.php:1140
+#, php-format
+msgid "%s attend."
+msgstr "%s nehmen teil."
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: include/conversation.php:1143
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span %1$s>%2$d Personen</span> nehmen nicht teil"
 
-#: include/identity.php:569
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: include/conversation.php:1144
+#, php-format
+msgid "%s don't attend."
+msgstr "%s nehmen nicht teil."
 
-#: include/identity.php:593
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: include/conversation.php:1147
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span %1$s>%2$d Personen</span> nehmen eventuell teil"
 
-#: include/identity.php:594
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: include/conversation.php:1148
+#, php-format
+msgid "%s anttend maybe."
+msgstr "%s  nehmen vielleicht teil."
 
-#: include/identity.php:605 include/identity.php:691 include/identity.php:722
-#: include/nav.php:82 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profil"
+#: include/conversation.php:1187 include/conversation.php:1205
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: include/identity.php:614 mod/settings.php:1274
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: include/conversation.php:1188 include/conversation.php:1206
+#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
+#: mod/message.php:299 mod/message.php:442 mod/message.php:450
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: include/identity.php:621
-msgid "j F, Y"
-msgstr "j F, Y"
+#: include/conversation.php:1189 include/conversation.php:1207
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: include/identity.php:622
-msgid "j F"
-msgstr "j F"
+#: include/conversation.php:1190 include/conversation.php:1208
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: include/identity.php:633
-msgid "Age:"
-msgstr "Alter:"
+#: include/conversation.php:1191 include/conversation.php:1209
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: include/identity.php:642
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: include/conversation.php:1192 include/conversation.php:1210
+#: mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: include/conversation.php:1193 include/conversation.php:1211
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: include/conversation.php:1194
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
-#: mod/contacts.php:634
-msgid "Tags:"
-msgstr "Tags:"
+#: include/conversation.php:1242 mod/photos.php:1569
+msgid "Share"
+msgstr "Teilen"
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
+#: mod/message.php:354 mod/message.php:545
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: include/identity.php:655
-msgid "Religion:"
-msgstr "Religion:"
+#: include/conversation.php:1244 mod/editpost.php:111
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: include/conversation.php:1245 mod/editpost.php:112
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
-msgstr "Likes:"
+#: include/conversation.php:1246 mod/editpost.php:113
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
+#: mod/message.php:355 mod/message.php:546
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: include/conversation.php:1248 mod/editpost.php:115
+msgid "web link"
+msgstr "Weblink"
 
-#: include/identity.php:668
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: include/conversation.php:1249 mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: include/identity.php:670
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: include/conversation.php:1250 mod/editpost.php:117
+msgid "video link"
+msgstr "Video-Link"
 
-#: include/identity.php:672
-msgid "Television:"
-msgstr "Fernsehen:"
+#: include/conversation.php:1251 mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: include/conversation.php:1252 mod/editpost.php:119
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: include/identity.php:676
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: include/conversation.php:1253 mod/editpost.php:120
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: include/identity.php:678
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: include/conversation.php:1254 mod/editpost.php:121
+msgid "set location"
+msgstr "Ort setzen"
 
-#: include/identity.php:680
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: include/conversation.php:1255 mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: include/identity.php:684
-msgid "Forums:"
-msgstr "Foren:"
+#: include/conversation.php:1256 mod/editpost.php:123
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
-msgstr "Allgemein"
+#: include/conversation.php:1258 mod/editpost.php:137
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: include/identity.php:693 mod/admin.php:931 mod/contacts.php:870
-#: mod/events.php:508
-msgid "Advanced"
-msgstr "Erweitert"
+#: include/conversation.php:1260 mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:246
-msgid "Status"
-msgstr "Status"
+#: include/conversation.php:1262 mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: include/conversation.php:1263 mod/editpost.php:154
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
-msgstr "Profildetails"
+#: include/conversation.php:1271 mod/editpost.php:134
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Bilder"
+#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
+#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
+#: mod/photos.php:1725 object/Item.php:729
+msgid "Preview"
+msgstr "Vorschau"
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: include/conversation.php:1280 include/items.php:1952 mod/fbrowser.php:101
+#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
+#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
+#: mod/contacts.php:445 mod/suggest.php:32 mod/photos.php:235
+#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
+#: mod/videos.php:128
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: include/identity.php:738 include/identity.php:741 include/nav.php:84
-#: view/theme/frio/theme.php:249
-msgid "Videos"
-msgstr "Videos"
+#: include/conversation.php:1286
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: include/identity.php:750 include/identity.php:761 include/nav.php:85
-#: include/nav.php:149 mod/cal.php:275 mod/events.php:379
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-#: view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Veranstaltungen"
+#: include/conversation.php:1287
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: include/identity.php:753 include/identity.php:764 include/nav.php:149
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: include/conversation.php:1288
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
+msgid "Message"
+msgstr "Nachricht"
 
-#: include/identity.php:775
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
+#: include/conversation.php:1294 mod/editpost.php:153
+msgid "Browser"
+msgstr "Browser"
 
-#: include/identity.php:783 include/identity.php:786 include/nav.php:128
-#: include/nav.php:192 include/text.php:1022 mod/contacts.php:792
-#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
-#: view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Kontakte"
+#: include/conversation.php:1449
+msgid "View all"
+msgstr "Zeige alle"
 
-#: include/items.php:1518 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: include/conversation.php:1471
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "mag ich"
+msgstr[1] "Mag ich"
 
-#: include/items.php:1873 mod/viewsrc.php:15 mod/notice.php:15
-#: mod/admin.php:234 mod/admin.php:1441 mod/admin.php:1675 mod/display.php:103
-#: mod/display.php:279 mod/display.php:478
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: include/conversation.php:1474
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "mag ich nicht"
+msgstr[1] "Mag ich nicht"
 
-#: include/items.php:1912
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
+#: include/conversation.php:1480
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "Nicht teilnehmend "
+msgstr[1] "Nicht teilnehmend"
 
-#: include/items.php:1914 mod/follow.php:110 mod/api.php:105
-#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
-#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
-#: mod/register.php:238 mod/suggest.php:29 mod/settings.php:1158
-#: mod/settings.php:1164 mod/settings.php:1172 mod/settings.php:1176
-#: mod/settings.php:1181 mod/settings.php:1187 mod/settings.php:1193
-#: mod/settings.php:1199 mod/settings.php:1225 mod/settings.php:1226
-#: mod/settings.php:1227 mod/settings.php:1228 mod/settings.php:1229
-msgid "Yes"
-msgstr "Ja"
+#: 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."
+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/items.php:2077 mod/wall_upload.php:77 mod/wall_upload.php:80
-#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
-#: mod/invite.php:101 mod/wall_attach.php:67 mod/wall_attach.php:70
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
-#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
-#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
-#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
-#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
-#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
-#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
-#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
-#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
-#: mod/events.php:190 mod/item.php:198 mod/item.php:210 mod/network.php:4
-#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
-#: mod/suggest.php:58 mod/viewcontacts.php:45 mod/settings.php:22
-#: mod/settings.php:128 mod/settings.php:663 index.php:397
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
+#: include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: include/items.php:2182
-msgid "Archives"
-msgstr "Archiv"
+#: include/dbstructure.php:183
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten"
+#: include/dbstructure.php:260
+msgid "Errors encountered performing database changes."
+msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: include/delivery.php:446
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: include/nav.php:40 include/text.php:1015
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, content"
+#: include/dfrn.php:1107
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%ss Geburtstag"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1778
-msgid "Logout"
-msgstr "Abmelden"
+#: include/diaspora.php:1958
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: include/diaspora.php:2864
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
-#: view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: include/identity.php:42
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/nav.php:82 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: include/identity.php:51 mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: include/nav.php:83 view/theme/frio/theme.php:248
-#: view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: include/identity.php:95 include/identity.php:311 include/identity.php:688
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: include/nav.php:84 view/theme/frio/theme.php:249
-msgid "Your videos"
-msgstr "Deine Videos"
+#: include/identity.php:251
+msgid "Atom feed"
+msgstr "Atom-Feed"
 
-#: include/nav.php:85 view/theme/frio/theme.php:250
-#: view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: include/identity.php:282
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: include/nav.php:86 view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: include/identity.php:288 mod/profiles.php:796
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1779
-msgid "Login"
-msgstr "Anmeldung"
+#: include/identity.php:298 mod/profiles.php:785
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Anmelden"
+#: include/identity.php:301 mod/profiles.php:787
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Homepage"
+#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: include/nav.php:109 mod/register.php:280 boot.php:1754
-msgid "Register"
-msgstr "Registrieren"
+#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
+#: mod/directory.php:139
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
+msgid "Status:"
+msgstr "Status:"
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Hilfe"
+#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
+#: mod/contacts.php:632 mod/directory.php:145
+msgid "About:"
+msgstr "Über:"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Apps"
+#: include/identity.php:339 mod/contacts.php:630
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
+msgid "Network:"
+msgstr "Netzwerk:"
 
-#: include/nav.php:123 include/text.php:1012 mod/search.php:149
-msgid "Search"
-msgstr "Suche"
+#: include/identity.php:451 include/identity.php:535
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: include/identity.php:452 include/identity.php:536
+msgid "F d"
+msgstr "d. F"
 
-#: include/nav.php:126 include/text.php:1020
-msgid "Full Text"
-msgstr "Volltext"
+#: include/identity.php:497 include/identity.php:582
+msgid "[today]"
+msgstr "[heute]"
 
-#: include/nav.php:127 include/text.php:1021
-msgid "Tags"
-msgstr "Tags"
+#: include/identity.php:509
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-#: view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Gemeinschaft"
+#: include/identity.php:510
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: include/identity.php:569
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: include/identity.php:593
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Verzeichnis"
+#: include/identity.php:594
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: include/identity.php:614 mod/settings.php:1279
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Information"
+#: include/identity.php:621
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: include/identity.php:622
+msgid "j F"
+msgstr "j F"
 
-#: include/nav.php:158 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: include/identity.php:633
+msgid "Age:"
+msgstr "Alter:"
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: include/identity.php:642
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: include/identity.php:645 mod/profiles.php:710
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: include/identity.php:649 mod/profiles.php:737
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
+#: mod/contacts.php:634
+msgid "Tags:"
+msgstr "Tags:"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: include/identity.php:653 mod/profiles.php:738
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: include/nav.php:171 mod/settings.php:900
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: include/identity.php:655
+msgid "Religion:"
+msgstr "Religion:"
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: include/identity.php:659
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
-msgid "Messages"
-msgstr "Nachrichten"
+#: include/identity.php:661 mod/profiles.php:742
+msgid "Likes:"
+msgstr "Likes:"
 
-#: include/nav.php:175 view/theme/frio/theme.php:255
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: include/identity.php:663 mod/profiles.php:743
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Eingang"
+#: include/identity.php:666
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Ausgang"
+#: include/identity.php:668
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: include/identity.php:670
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Verwalten"
+#: include/identity.php:672
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: include/identity.php:674
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegationen"
+#: include/identity.php:676
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: include/identity.php:678
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1494
-#: mod/admin.php:1752 mod/settings.php:111 view/theme/frio/theme.php:256
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Einstellungen"
+#: include/identity.php:680
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: include/nav.php:186 view/theme/frio/theme.php:256
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: include/identity.php:684
+msgid "Forums:"
+msgstr "Foren:"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: include/identity.php:692 mod/events.php:507
+msgid "Basic"
+msgstr "Allgemein"
 
-#: include/nav.php:192 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
-msgstr " Kontakte verwalten/editieren"
+#: include/identity.php:693 mod/contacts.php:870 mod/events.php:508
+#: mod/admin.php:956
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
-msgstr "Administration"
+#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: include/identity.php:725 mod/contacts.php:844
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navigation"
+#: include/identity.php:733 mod/photos.php:87
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Sitemap"
+#: include/identity.php:772 mod/notes.php:46
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: include/oembed.php:252
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: include/identity.php:775
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
 
-#: include/oembed.php:260
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: include/items.php:1553 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-#: view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: include/items.php:1908 mod/viewsrc.php:15 mod/notice.php:15
+#: mod/display.php:103 mod/display.php:279 mod/display.php:478
+#: mod/admin.php:234 mod/admin.php:1467 mod/admin.php:1701
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: include/items.php:1947
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: include/items.php:1949 mod/follow.php:110 mod/api.php:105
+#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
+#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
+#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
+#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
+#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
+#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+msgid "Yes"
+msgstr "Ja"
 
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: include/items.php:2112 mod/notes.php:22 mod/uimport.php:23
+#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
+#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
+#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
+#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
+#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
+#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
+#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
+#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
+#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
+#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
+#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
+#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
+#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
+#: mod/events.php:190 mod/suggest.php:58 mod/item.php:198 mod/item.php:210
+#: mod/network.php:4 mod/photos.php:159 mod/photos.php:1072
+#: mod/register.php:42 mod/settings.php:22 mod/settings.php:128
+#: mod/settings.php:665 mod/viewcontacts.php:45 mod/wall_attach.php:67
+#: mod/wall_attach.php:70 mod/wall_upload.php:77 mod/wall_upload.php:80
+#: index.php:397
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: include/security.php:373
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
+#: include/items.php:2217
+msgid "Archives"
+msgstr "Archiv"
+
+#: include/network.php:595
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
 #: include/text.php:304
 msgid "newer"
@@ -3077,25 +2955,146 @@ msgstr "Beitrag"
 msgid "Item filed"
 msgstr "Beitrag abgelegt"
 
-#: include/Contact.php:119
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: include/user.php:39 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: include/Contact.php:395
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: include/Contact.php:770
-msgid "Organisation"
-msgstr "Organisation"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: include/Contact.php:773
-msgid "News"
-msgstr "Nachrichten"
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: include/Contact.php:776
-msgid "Forum"
-msgstr "Forum"
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
+
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
+
+#: include/user.php:98
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
+
+#: include/user.php:113
+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:118
+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:121
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
+
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+
+#: include/user.php:140
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen."
+
+#: include/user.php:147 include/user.php:245
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+
+#: include/user.php:157
+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:173
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+
+#: include/user.php:231
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+
+#: include/user.php:256 view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "Standard"
+
+#: include/user.php:266
+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/user.php:345 include/user.php:352 include/user.php:359
+#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
+#: mod/profile_photo.php:210 mod/profile_photo.php:302
+#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
+#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
+#: mod/photos.php:1819
+msgid "Profile Photos"
+msgstr "Profilbilder"
+
+#: include/user.php:390
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden."
+
+#: include/user.php:400
+#, php-format
+msgid "Registration at %s"
+msgstr "Registrierung als %s"
+
+#: include/user.php:410
+#, 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/user.php:414
+#, 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/user.php:446 mod/admin.php:1209
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
 #: mod/oexchange.php:25
 msgid "Post successful."
@@ -3242,7 +3241,7 @@ 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:1793
+#: mod/lostpass.php:109 boot.php:1802
 msgid "Password Reset"
 msgstr "Passwort zurücksetzen"
 
@@ -3308,7 +3307,7 @@ msgid ""
 "your email for further instructions."
 msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
 
-#: mod/lostpass.php:161 boot.php:1781
+#: mod/lostpass.php:161 boot.php:1790
 msgid "Nickname or Email: "
 msgstr "Spitzname oder E-Mail:"
 
@@ -3333,25 +3332,6 @@ msgstr "Nicht gefunden"
 msgid "Page not found."
 msgstr "Seite nicht gefunden."
 
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
-#: mod/wall_attach.php:25 mod/wall_attach.php:76
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
-
-#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:786
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "Bildgröße überschreitet das Limit von %s"
-
-#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:826
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
-
-#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:853
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
-
 #: mod/lockview.php:31 mod/lockview.php:39
 msgid "Remote privacy information not available."
 msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
@@ -3369,13 +3349,13 @@ 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."
 
-#: mod/uimport.php:50 mod/register.php:191
+#: mod/uimport.php:50 mod/register.php:198
 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/uimport.php:64 mod/register.php:286
+#: mod/uimport.php:64 mod/register.php:295
 msgid "Import"
 msgstr "Import"
 
@@ -3553,10 +3533,8 @@ msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es
 #: mod/install.php:272 mod/install.php:312 mod/photos.php:1104
 #: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
 #: mod/photos.php:1638 mod/photos.php:1724 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80
-#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70
-#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633
-#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59
+#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
+#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
 msgid "Submit"
 msgstr "Senden"
 
@@ -3604,23 +3582,6 @@ msgstr "Wähle ein Tag zum Entfernen aus: "
 msgid "Remove"
 msgstr "Entfernen"
 
-#: mod/wall_attach.php:94
-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/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
-
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "Die Datei ist größer als das erlaubte Limit von %s"
-
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
-
 #: mod/repair_ostatus.php:14
 msgid "Resubscribing to OStatus contacts"
 msgstr "Erneuern der OStatus Abonements"
@@ -3727,11 +3688,11 @@ msgstr "Kennt %s Dich?"
 
 #: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861
 #: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
-#: mod/register.php:239 mod/settings.php:1158 mod/settings.php:1164
-#: mod/settings.php:1172 mod/settings.php:1176 mod/settings.php:1181
-#: mod/settings.php:1187 mod/settings.php:1193 mod/settings.php:1199
-#: mod/settings.php:1225 mod/settings.php:1226 mod/settings.php:1227
-#: mod/settings.php:1228 mod/settings.php:1229
+#: mod/register.php:246 mod/settings.php:1163 mod/settings.php:1169
+#: mod/settings.php:1177 mod/settings.php:1181 mod/settings.php:1186
+#: mod/settings.php:1192 mod/settings.php:1198 mod/settings.php:1204
+#: mod/settings.php:1230 mod/settings.php:1231 mod/settings.php:1232
+#: mod/settings.php:1233 mod/settings.php:1234
 msgid "No"
 msgstr "Nein"
 
@@ -4035,7 +3996,7 @@ msgstr "Mitglieder"
 msgid "All Contacts"
 msgstr "Alle Kontakte"
 
-#: mod/group.php:193 mod/content.php:130 mod/network.php:495
+#: mod/group.php:193 mod/content.php:130 mod/network.php:496
 msgid "Group is empty"
 msgstr "Gruppe ist leer"
 
@@ -4331,9 +4292,9 @@ msgid ""
 "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/crepair.php:165 mod/admin.php:1367 mod/admin.php:1380
-#: mod/admin.php:1392 mod/admin.php:1408 mod/settings.php:678
-#: mod/settings.php:704
+#: mod/crepair.php:165 mod/admin.php:1392 mod/admin.php:1405
+#: mod/admin.php:1418 mod/admin.php:1434 mod/settings.php:680
+#: mod/settings.php:706
 msgid "Name"
 msgstr "Name"
 
@@ -4519,11 +4480,11 @@ msgid ""
 " bar."
 msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
 
-#: mod/content.php:119 mod/network.php:468
+#: mod/content.php:119 mod/network.php:469
 msgid "No such group"
 msgstr "Es gibt keine solche Gruppe"
 
-#: mod/content.php:135 mod/network.php:499
+#: mod/content.php:135 mod/network.php:500
 #, php-format
 msgid "Group: %s"
 msgstr "Gruppe: %s"
@@ -4574,7 +4535,7 @@ msgstr "Das bist Du"
 
 #: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
 #: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719 boot.php:969
+#: object/Item.php:719 boot.php:970
 msgid "Comment"
 msgstr "Kommentar"
 
@@ -4610,7 +4571,7 @@ msgstr "Link"
 msgid "Video"
 msgstr "Video"
 
-#: mod/content.php:746 mod/settings.php:738 object/Item.php:122
+#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
 #: object/Item.php:124
 msgid "Edit"
 msgstr "Bearbeiten"
@@ -4816,6 +4777,15 @@ msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue
 msgid "Unable to process image"
 msgstr "Bild konnte nicht verarbeitet werden"
 
+#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "Bildgröße überschreitet das Limit von %s"
+
+#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
+
 #: mod/profile_photo.php:248
 msgid "Upload File:"
 msgstr "Datei hochladen:"
@@ -4856,6 +4826,10 @@ msgstr "Bearbeitung abgeschlossen"
 msgid "Image uploaded successfully."
 msgstr "Bild erfolgreich hochgeladen."
 
+#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
+
 #: mod/regmod.php:55
 msgid "Account approved."
 msgstr "Konto freigegeben."
@@ -4925,7 +4899,7 @@ msgstr "Neue-Kontakt Nachricht senden"
 msgid "if applicable"
 msgstr "falls anwendbar"
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1382
+#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1408
 msgid "Approve"
 msgstr "Genehmigen"
 
@@ -5283,2196 +5257,2259 @@ msgstr "Schule/Ausbildung"
 msgid "Contact information and Social Networks"
 msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: mod/profiles.php:794
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
-
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
-
-#: mod/admin.php:156 mod/admin.php:926
-msgid "Site"
-msgstr "Seite"
-
-#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1375 mod/admin.php:1390
-msgid "Users"
-msgstr "Nutzer"
-
-#: mod/admin.php:158 mod/admin.php:1492 mod/admin.php:1552 mod/settings.php:74
-msgid "Plugins"
-msgstr "Plugins"
+#: mod/profiles.php:794
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: mod/admin.php:159 mod/admin.php:1750 mod/admin.php:1800
-msgid "Themes"
-msgstr "Themen"
+#: mod/allfriends.php:43
+msgid "No friends to display."
+msgstr "Keine Kontakte zum Anzeigen."
 
-#: mod/admin.php:160 mod/settings.php:52
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "DB Updates"
+#: mod/cal.php:276 mod/events.php:380
+msgid "View"
+msgstr "Ansehen"
 
-#: mod/admin.php:162 mod/admin.php:397
-msgid "Inspect Queue"
-msgstr "Warteschlange Inspizieren"
+#: mod/cal.php:277 mod/events.php:382
+msgid "Previous"
+msgstr "Vorherige"
 
-#: mod/admin.php:163 mod/admin.php:363
-msgid "Federation Statistics"
-msgstr "Federation Statistik"
+#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
+msgid "Next"
+msgstr "Nächste"
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1874
-msgid "Logs"
-msgstr "Protokolle"
+#: mod/cal.php:287 mod/events.php:392
+msgid "list"
+msgstr "Liste"
 
-#: mod/admin.php:178 mod/admin.php:1942
-msgid "View Logs"
-msgstr "Protokolle anzeigen"
+#: mod/cal.php:297
+msgid "User not found"
+msgstr "Nutzer nicht gefunden"
 
-#: mod/admin.php:179
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Dieses Kalenderformat wird nicht unterstützt."
 
-#: mod/admin.php:180
-msgid "check webfinger"
-msgstr "Webfinger überprüfen"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "Keine exportierbaren Daten gefunden"
 
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: mod/cal.php:330
+msgid "calendar"
+msgstr "Kalender"
 
-#: mod/admin.php:189
-msgid "diagnostics"
-msgstr "Diagnose"
+#: mod/common.php:86
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: mod/common.php:134 mod/contacts.php:863
+msgid "Common Friends"
+msgstr "Gemeinsame Kontakte"
 
-#: mod/admin.php:356
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
+#: mod/community.php:27
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: mod/admin.php:357
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
+#: mod/contacts.php:128
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet."
 
-#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925
-#: mod/admin.php:1374 mod/admin.php:1491 mod/admin.php:1551 mod/admin.php:1749
-#: mod/admin.php:1799 mod/admin.php:1873 mod/admin.php:1941
-msgid "Administration"
-msgstr "Administration"
+#: mod/contacts.php:159 mod/contacts.php:368
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: mod/admin.php:369
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
+#: mod/contacts.php:173
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: mod/admin.php:399
-msgid "ID"
-msgstr "ID"
+#: mod/contacts.php:206
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: mod/admin.php:400
-msgid "Recipient Name"
-msgstr "Empfänger Name"
+#: mod/contacts.php:389
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: mod/admin.php:401
-msgid "Recipient Profile"
-msgstr "Empfänger Profil"
+#: mod/contacts.php:389
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: mod/admin.php:403
-msgid "Created"
-msgstr "Erstellt"
+#: mod/contacts.php:400
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: mod/admin.php:404
-msgid "Last Tried"
-msgstr "Zuletzt versucht"
+#: mod/contacts.php:400
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: mod/admin.php:405
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
+#: mod/contacts.php:412
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: mod/admin.php:424 mod/admin.php:1323
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: mod/contacts.php:412
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: mod/admin.php:425 mod/admin.php:1324
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: mod/contacts.php:437
+msgid "Drop contact"
+msgstr "Kontakt löschen"
 
-#: mod/admin.php:426 mod/admin.php:1325
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: mod/contacts.php:440 mod/contacts.php:801
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: mod/admin.php:427 mod/admin.php:1326
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: mod/contacts.php:457
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: mod/admin.php:428
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: mod/contacts.php:498
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: mod/admin.php:429
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: mod/contacts.php:502
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: mod/admin.php:455
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: mod/contacts.php:507
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: mod/admin.php:461
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: mod/contacts.php:527
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: mod/admin.php:464
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: mod/contacts.php:530 mod/admin.php:885
+msgid "Never"
+msgstr "Niemals"
 
-#: mod/admin.php:466
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: mod/contacts.php:534
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: mod/admin.php:467
-msgid "Version"
-msgstr "Version"
+#: mod/contacts.php:534
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: mod/admin.php:472
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: mod/contacts.php:536 mod/contacts.php:973
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:495
-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/contacts.php:540
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: mod/admin.php:798
-msgid "RINO2 needs mcrypt php extension to work."
-msgstr "RINO2 benötigt die PHP Extension mcrypt."
+#: mod/contacts.php:553
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: mod/admin.php:806
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: mod/contacts.php:556
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: mod/admin.php:834 mod/settings.php:932
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: mod/contacts.php:557 mod/admin.php:894
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: mod/admin.php:853
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: mod/contacts.php:557
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: mod/admin.php:854
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
+#: mod/contacts.php:557
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: mod/admin.php:855
-msgid "Global community page"
-msgstr "Globale Gemeinschaftsseite"
+#: mod/contacts.php:575
+msgid "Contact"
+msgstr "Kontakt: "
 
-#: mod/admin.php:860 mod/contacts.php:530
-msgid "Never"
-msgstr "Niemals"
+#: mod/contacts.php:578
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: mod/admin.php:861
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: mod/contacts.php:579
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft."
 
-#: mod/admin.php:869 mod/contacts.php:557
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: mod/contacts.php:580
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: mod/admin.php:871
-msgid "Users, Global Contacts"
-msgstr "Nutzer, globale Kontakte"
+#: mod/contacts.php:581
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
+
+#: mod/contacts.php:587
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: mod/admin.php:872
-msgid "Users, Global Contacts/fallback"
-msgstr "Nutzer, globale Kontakte / Fallback"
+#: mod/contacts.php:588
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: mod/admin.php:876
-msgid "One month"
-msgstr "ein Monat"
+#: mod/contacts.php:589
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: mod/admin.php:877
-msgid "Three months"
-msgstr "drei Monate"
+#: mod/contacts.php:590
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: mod/admin.php:878
-msgid "Half a year"
-msgstr "ein halbes Jahr"
+#: mod/contacts.php:596
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: mod/admin.php:879
-msgid "One year"
-msgstr "ein Jahr"
+#: mod/contacts.php:598
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: mod/admin.php:884
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: mod/contacts.php:600 mod/contacts.php:983
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: mod/admin.php:907
-msgid "Closed"
-msgstr "Geschlossen"
+#: mod/contacts.php:605 mod/contacts.php:805 mod/contacts.php:992
+#: mod/admin.php:1412
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: mod/admin.php:908
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: mod/contacts.php:605 mod/contacts.php:805 mod/contacts.php:992
+#: mod/admin.php:1411
+msgid "Block"
+msgstr "Sperren"
 
-#: mod/admin.php:909
-msgid "Open"
-msgstr "Offen"
+#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: mod/admin.php:913
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: mod/contacts.php:610
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: mod/admin.php:914
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: mod/contacts.php:611
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: mod/admin.php:915
-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/contacts.php:612
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: mod/admin.php:927 mod/admin.php:1553 mod/admin.php:1801 mod/admin.php:1875
-#: mod/admin.php:2025 mod/settings.php:676 mod/settings.php:786
-#: mod/settings.php:833 mod/settings.php:902 mod/settings.php:992
-#: mod/settings.php:1259
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: mod/contacts.php:613
+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/admin.php:928 mod/register.php:263
-msgid "Registration"
-msgstr "Registrierung"
+#: mod/contacts.php:614
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: mod/admin.php:929
-msgid "File upload"
-msgstr "Datei hochladen"
+#: mod/contacts.php:614
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: mod/admin.php:930
-msgid "Policies"
-msgstr "Regeln"
+#: mod/contacts.php:617
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: mod/admin.php:932
-msgid "Auto Discovered Contact Directory"
-msgstr "Automatisch ein Kontaktverzeichnis erstellen"
+#: mod/contacts.php:617
+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/admin.php:933
-msgid "Performance"
-msgstr "Performance"
+#: mod/contacts.php:635
+msgid "Actions"
+msgstr "Aktionen"
 
-#: mod/admin.php:934
-msgid "Worker"
-msgstr "Worker"
+#: mod/contacts.php:638
+msgid "Contact Settings"
+msgstr "Kontakteinstellungen"
 
-#: mod/admin.php:935
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: mod/contacts.php:684
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: mod/admin.php:938
-msgid "Site name"
-msgstr "Seitenname"
+#: mod/contacts.php:687
+msgid "Suggest potential friends"
+msgstr "Kontakte vorschlagen"
 
-#: mod/admin.php:939
-msgid "Host name"
-msgstr "Host Name"
+#: mod/contacts.php:695
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:940
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: mod/contacts.php:700
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: mod/admin.php:940
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
+#: mod/contacts.php:703
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: mod/admin.php:941
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: mod/contacts.php:709
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: mod/admin.php:942
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: mod/contacts.php:712
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: mod/admin.php:942
-msgid "Link to an icon that will be used for browsers."
-msgstr "Link zu einem Icon, das Browser verwenden werden."
+#: mod/contacts.php:718
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: mod/admin.php:943
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: mod/contacts.php:721
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: mod/admin.php:943
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
+#: mod/contacts.php:727
+msgid "Archived"
+msgstr "Archiviert"
 
-#: mod/admin.php:944
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: mod/contacts.php:730
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: mod/admin.php:944
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
+#: mod/contacts.php:736
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: mod/admin.php:945
-msgid "System language"
-msgstr "Systemsprache"
+#: mod/contacts.php:739
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: mod/admin.php:946
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: mod/contacts.php:796
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: mod/admin.php:946
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
+#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: mod/admin.php:947
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: mod/contacts.php:807 mod/contacts.php:1008
+msgid "Archive"
+msgstr "Archivieren"
 
-#: mod/admin.php:947
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: mod/contacts.php:807 mod/contacts.php:1008
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: mod/admin.php:948
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: mod/contacts.php:810
+msgid "Batch Actions"
+msgstr "Stapelverarbeitung"
 
-#: mod/admin.php:948
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: mod/contacts.php:856
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:949
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: mod/contacts.php:866
+msgid "View all common friends"
+msgstr "Alle Kontakte anzeigen"
 
-#: mod/admin.php:949
-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."
+#: mod/contacts.php:873
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: mod/admin.php:950
-msgid "Old style 'Share'"
-msgstr "Altes \"Teilen\" Element"
+#: mod/contacts.php:916
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: mod/admin.php:950
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+#: mod/contacts.php:920
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: mod/admin.php:951
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: mod/contacts.php:924
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
 
-#: mod/admin.php:951
-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/contacts.php:994
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: mod/admin.php:952
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: mod/contacts.php:1002
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: mod/admin.php:952
-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/contacts.php:1010
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: mod/admin.php:953
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: mod/contacts.php:1018
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: mod/admin.php:953
-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/directory.php:197 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: mod/admin.php:954
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: mod/directory.php:199
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: mod/admin.php:954
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
+#: mod/directory.php:201
+msgid "Results for:"
+msgstr "Ergebnisse für:"
 
-#: mod/admin.php:955
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: mod/directory.php:203
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: mod/admin.php:955
-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/directory.php:210
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: mod/admin.php:957
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: mod/dirfind.php:36
+#, php-format
+msgid "People Search - %s"
+msgstr "Personensuche - %s"
 
-#: mod/admin.php:958
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: mod/dirfind.php:47
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Forensuche - %s"
 
-#: mod/admin.php:958
-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/dirfind.php:240 mod/match.php:107
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: mod/admin.php:959
-msgid "Register text"
-msgstr "Registrierungstext"
+#: mod/display.php:473
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: mod/admin.php:959
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: mod/events.php:95 mod/events.php:97
+msgid "Event can not end before it has started."
+msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
 
-#: mod/admin.php:960
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: mod/events.php:104 mod/events.php:106
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: mod/admin.php:960
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit."
+#: mod/events.php:381
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: mod/admin.php:961
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: mod/events.php:482
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: mod/admin.php:961
-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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: mod/events.php:483
+msgid "Starting date and Title are required."
+msgstr "Anfangszeitpunkt und Titel werden benötigt"
 
-#: mod/admin.php:962
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: mod/events.php:484 mod/events.php:485
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: mod/admin.php:962
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: mod/events.php:486 mod/events.php:502
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: mod/admin.php:963
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: mod/events.php:488 mod/events.php:489
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: mod/admin.php:963
-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/events.php:490 mod/events.php:503
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: mod/admin.php:964
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: mod/events.php:492
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: mod/admin.php:964
-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/events.php:496 mod/events.php:498
+msgid "Title:"
+msgstr "Titel:"
 
-#: mod/admin.php:965
-msgid "Global directory URL"
-msgstr "URL des weltweiten Verzeichnisses"
+#: mod/events.php:499 mod/events.php:500
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: mod/admin.php:965
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
+#: mod/install.php:139
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: mod/admin.php:966
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: mod/install.php:145
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: mod/admin.php:966
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: mod/install.php:149
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: mod/admin.php:967
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: mod/install.php:155
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: mod/admin.php:967
+#: mod/install.php:160
 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."
+"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:968
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: mod/install.php:161 mod/install.php:230 mod/install.php:602
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: mod/admin.php:968
-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/install.php:173
+msgid "Database already in use."
+msgstr "Die Datenbank wird bereits verwendet."
 
-#: mod/admin.php:969
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: mod/install.php:227
+msgid "System check"
+msgstr "Systemtest"
 
-#: mod/admin.php:969
-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/install.php:232
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: mod/admin.php:970
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: mod/install.php:251
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: mod/admin.php:970
+#: mod/install.php:252
 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."
+"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:971
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: mod/install.php:253
+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:971
+#: mod/install.php:254
 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."
+"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:972
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: mod/install.php:258
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: mod/admin.php:972
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: mod/install.php:259
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: mod/admin.php:973
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: mod/install.php:260
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: mod/admin.php:973
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: mod/install.php:261
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: mod/admin.php:974
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: mod/install.php:262 mod/install.php:303
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: mod/admin.php:974
+#: mod/install.php:262 mod/install.php:303
 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."
+"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:975
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: mod/install.php:266 mod/install.php:306
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: mod/admin.php:975
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: mod/install.php:293
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: mod/admin.php:976
-msgid "Community Page Style"
-msgstr "Art der Gemeinschaftsseite"
+#: mod/install.php:307
+msgid "System Language:"
+msgstr "Systemsprache:"
 
-#: mod/admin.php:976
+#: mod/install.php:307
 msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
 
-#: mod/admin.php:977
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: mod/install.php:347
+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:977
+#: mod/install.php:348
 msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
+"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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
 
-#: mod/admin.php:978
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: mod/install.php:352
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: mod/admin.php:978
+#: mod/install.php:352
 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:979
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+"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:979
-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/install.php:357
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: mod/admin.php:980
-msgid "Only import OStatus threads from our contacts"
-msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
+#: mod/install.php:366
+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:980
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
-msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
+#: mod/install.php:367
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: mod/admin.php:981
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
+#: mod/install.php:369
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: mod/admin.php:983
+#: mod/install.php:380
 msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
+"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:984
-msgid "Enable Diaspora support"
-msgstr "Diaspora Unterstützung aktivieren"
+#: mod/install.php:381
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: mod/admin.php:984
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: mod/install.php:383
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/admin.php:985
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: mod/install.php:404
+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:985
+#: mod/install.php:405
 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."
+"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:986
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: mod/install.php:407
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: mod/admin.php:986
-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/install.php:414
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: mod/admin.php:987
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: mod/install.php:415
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: mod/admin.php:988
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: mod/install.php:416
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: mod/admin.php:989
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: mod/install.php:417
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: mod/admin.php:989
-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/install.php:418
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: mod/admin.php:990
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: mod/install.php:419
+msgid "mcrypt PHP module"
+msgstr "PHP mcrypt Modul"
 
-#: mod/admin.php:990
-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/install.php:420
+msgid "XML PHP module"
+msgstr "XML PHP Modul"
 
-#: mod/admin.php:991
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: mod/install.php:421
+msgid "iconv module"
+msgstr "iconv module"
 
-#: mod/admin.php:991
+#: mod/install.php:425 mod/install.php:427
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
+
+#: mod/install.php:425
 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."
+"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:992
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: mod/install.php:433
+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:992
+#: mod/install.php:437
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+"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:993
-msgid "Maximum Load Average (Frontend)"
-msgstr "Maximum Load Average (Frontend)"
+#: mod/install.php:441
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: mod/admin.php:993
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
+#: mod/install.php:445
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: mod/admin.php:994
-msgid "Maximum table size for optimization"
-msgstr "Maximale Tabellengröße zur Optimierung"
+#: mod/install.php:449
+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:994
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
+#: mod/install.php:453
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
 
-#: mod/admin.php:995
-msgid "Minimum level of fragmentation"
-msgstr "Minimaler Fragmentationsgrad"
+#: mod/install.php:457
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
 
-#: mod/admin.php:995
+#: mod/install.php:466
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
-
-#: mod/admin.php:997
-msgid "Periodical check of global contacts"
-msgstr "Regelmäßig globale Kontakte überprüfen"
+"If you are using php_cli, please make sure that mcrypt module is enabled in "
+"its config file"
+msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
 
-#: mod/admin.php:997
+#: mod/install.php:469
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
+"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
+"encryption layer."
+msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
 
-#: mod/admin.php:998
-msgid "Days between requery"
-msgstr "Tage zwischen erneuten Abfragen"
+#: mod/install.php:471
+msgid "mcrypt_create_iv() function"
+msgstr "mcrypt_create_iv() function"
 
-#: mod/admin.php:998
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
+#: mod/install.php:479
+msgid "Error, XML PHP module required but not installed."
+msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
 
-#: mod/admin.php:999
-msgid "Discover contacts from other servers"
-msgstr "Neue Kontakte auf anderen Servern entdecken"
+#: mod/install.php:494
+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:999
+#: mod/install.php:495
 msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
+"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:1000
-msgid "Timeframe for fetching global contacts"
-msgstr "Zeitfenster für globale Kontakte"
+#: mod/install.php:496
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: mod/admin.php:1000
+#: mod/install.php:497
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
+"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:1001
-msgid "Search the local directory"
-msgstr "Lokales Verzeichnis durchsuchen"
+#: mod/install.php:500
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: mod/admin.php:1001
+#: mod/install.php:510
 msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
-
-#: mod/admin.php:1003
-msgid "Publish server information"
-msgstr "Server Informationen veröffentlichen"
+"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:1003
+#: mod/install.php:511
 msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
+"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:1005
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: mod/install.php:512
+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:1005
+#: mod/install.php:513
 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."
+"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:1006
-msgid "Suppress Language"
-msgstr "Sprachinformation unterdrücken"
+#: mod/install.php:516
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: mod/admin.php:1006
-msgid "Suppress language information in meta information about a posting."
-msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+#: mod/install.php:532
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: mod/admin.php:1007
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: mod/install.php:534
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: mod/admin.php:1007
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
+#: mod/install.php:551
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP Erweiterung ist installiert"
 
-#: mod/admin.php:1008
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: mod/install.php:553
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick unterstützt GIF"
 
-#: mod/admin.php:1008
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
+#: mod/install.php:561
+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/admin.php:1009
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: mod/install.php:600
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: mod/admin.php:1009
+#: mod/install.php:601
 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."
+"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:1010
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: mod/maintenance.php:9
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: mod/admin.php:1010
-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/match.php:33
+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/admin.php:1011
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: mod/match.php:86
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: mod/admin.php:1011
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
-msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."
+#: mod/match.php:100
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: mod/admin.php:1012
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: mod/profile.php:179
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: mod/admin.php:1012
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+
+#: mod/suggest.php:71
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
+"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/admin.php:1013
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: mod/admin.php:1013
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: mod/admin.php:1014
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: mod/admin.php:92
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: mod/admin.php:1014
-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 Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+#: mod/admin.php:156 mod/admin.php:951
+msgid "Site"
+msgstr "Seite"
 
-#: mod/admin.php:1015
-msgid "Enable old style pager"
-msgstr "Den Old-Style Pager aktiviren"
+#: mod/admin.php:157 mod/admin.php:895 mod/admin.php:1400 mod/admin.php:1416
+msgid "Users"
+msgstr "Nutzer"
 
-#: mod/admin.php:1015
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."
+#: mod/admin.php:158 mod/admin.php:1518 mod/admin.php:1578 mod/settings.php:74
+msgid "Plugins"
+msgstr "Plugins"
 
-#: mod/admin.php:1016
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
+#: mod/admin.php:159 mod/admin.php:1776 mod/admin.php:1826
+msgid "Themes"
+msgstr "Themen"
 
-#: mod/admin.php:1016
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
+#: mod/admin.php:160 mod/settings.php:52
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: mod/admin.php:1018
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: mod/admin.php:161
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: mod/admin.php:1018
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
+#: mod/admin.php:162 mod/admin.php:406
+msgid "Inspect Queue"
+msgstr "Warteschlange Inspizieren"
 
-#: mod/admin.php:1020
-msgid "RINO Encryption"
-msgstr "RINO Verschlüsselung"
+#: mod/admin.php:163 mod/admin.php:372
+msgid "Federation Statistics"
+msgstr "Federation Statistik"
 
-#: mod/admin.php:1020
-msgid "Encryption layer between nodes."
-msgstr "Verschlüsselung zwischen Friendica Instanzen"
+#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1900
+msgid "Logs"
+msgstr "Protokolle"
 
-#: mod/admin.php:1021
-msgid "Embedly API key"
-msgstr "Embedly  API Schlüssel"
+#: mod/admin.php:178 mod/admin.php:1968
+msgid "View Logs"
+msgstr "Protokolle anzeigen"
 
-#: mod/admin.php:1021
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
-msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
+#: mod/admin.php:179
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: mod/admin.php:1023
-msgid "Enable 'worker' background processing"
-msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
+#: mod/admin.php:180
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: mod/admin.php:1023
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
-msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
+#: mod/admin.php:187
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: mod/admin.php:1024
-msgid "Maximum number of parallel workers"
-msgstr "Maximale Anzahl parallel laufender Worker"
+#: mod/admin.php:189
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: mod/admin.php:1024
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
+#: mod/admin.php:190
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: mod/admin.php:1025
-msgid "Don't use 'proc_open' with the worker"
-msgstr "'proc_open' nicht mit den Workern verwenden"
+#: mod/admin.php:306
+msgid "unknown"
+msgstr "Unbekannt"
 
-#: mod/admin.php:1025
+#: mod/admin.php:365
 msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
-
-#: mod/admin.php:1026
-msgid "Enable fastlane"
-msgstr "Aktiviere Fastlane"
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt."
 
-#: mod/admin.php:1026
+#: mod/admin.php:366
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern."
 
-#: mod/admin.php:1055
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:483 mod/admin.php:950
+#: mod/admin.php:1399 mod/admin.php:1517 mod/admin.php:1577 mod/admin.php:1775
+#: mod/admin.php:1825 mod/admin.php:1899 mod/admin.php:1967
+msgid "Administration"
+msgstr "Administration"
 
-#: mod/admin.php:1063
+#: mod/admin.php:378
 #, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Momentan kennt dieser Knoten %d andere Knoten der folgenden Plattformen:"
 
-#: mod/admin.php:1066
-#, 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:408
+msgid "ID"
+msgstr "ID"
 
-#: mod/admin.php:1078
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: mod/admin.php:409
+msgid "Recipient Name"
+msgstr "Empfänger Name"
 
-#: mod/admin.php:1081
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: mod/admin.php:410
+msgid "Recipient Profile"
+msgstr "Empfänger Profil"
 
-#: mod/admin.php:1085
-#, 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:412
+msgid "Created"
+msgstr "Erstellt"
+
+#: mod/admin.php:413
+msgid "Last Tried"
+msgstr "Zuletzt versucht"
 
-#: mod/admin.php:1087
+#: mod/admin.php:414
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden."
+
+#: mod/admin.php:438
 #, 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."
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the "
+"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
+"Friendica installation.<br />"
+msgstr "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest."
 
-#: mod/admin.php:1106
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: mod/admin.php:443
+msgid ""
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
+msgstr "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist."
 
-#: mod/admin.php:1107
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: mod/admin.php:447 mod/admin.php:1348
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: mod/admin.php:1112
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: mod/admin.php:448 mod/admin.php:1349
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: mod/admin.php:1113
-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/admin.php:449 mod/admin.php:1350
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: mod/admin.php:1114
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: mod/admin.php:450 mod/admin.php:1351
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: mod/admin.php:1115
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: mod/admin.php:451
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: mod/admin.php:1149
-#, 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/admin.php:452
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: mod/admin.php:1152
-#, 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 "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\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\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
+#: mod/admin.php:478
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: mod/admin.php:1196
-#, 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:484
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: mod/admin.php:1203
-#, 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:487
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: mod/admin.php:1250
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: mod/admin.php:489
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: mod/admin.php:1258
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: mod/admin.php:490
+msgid "Version"
+msgstr "Version"
 
-#: mod/admin.php:1258
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: mod/admin.php:495
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: mod/admin.php:520
+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:1367 mod/admin.php:1392
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: mod/admin.php:823
+msgid "RINO2 needs mcrypt php extension to work."
+msgstr "RINO2 benötigt die PHP Extension mcrypt."
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: mod/admin.php:831
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: mod/admin.php:1367 mod/settings.php:43
-msgid "Account"
-msgstr "Nutzerkonto"
+#: mod/admin.php:859 mod/settings.php:934
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: mod/admin.php:1376
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: mod/admin.php:878
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
+
+#: mod/admin.php:879
+msgid "Public postings from users of this site"
+msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: mod/admin.php:1377
-msgid "select all"
-msgstr "Alle auswählen"
+#: mod/admin.php:880
+msgid "Global community page"
+msgstr "Globale Gemeinschaftsseite"
 
-#: mod/admin.php:1378
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+#: mod/admin.php:886
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: mod/admin.php:1379
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
+#: mod/admin.php:896
+msgid "Users, Global Contacts"
+msgstr "Nutzer, globale Kontakte"
 
-#: mod/admin.php:1380
-msgid "Request date"
-msgstr "Anfragedatum"
+#: mod/admin.php:897
+msgid "Users, Global Contacts/fallback"
+msgstr "Nutzer, globale Kontakte / Fallback"
 
-#: mod/admin.php:1381
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: mod/admin.php:901
+msgid "One month"
+msgstr "ein Monat"
 
-#: mod/admin.php:1383
-msgid "Deny"
-msgstr "Verwehren"
+#: mod/admin.php:902
+msgid "Three months"
+msgstr "drei Monate"
 
-#: mod/admin.php:1385 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Block"
-msgstr "Sperren"
+#: mod/admin.php:903
+msgid "Half a year"
+msgstr "ein halbes Jahr"
 
-#: mod/admin.php:1386 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Unblock"
-msgstr "Entsperren"
+#: mod/admin.php:904
+msgid "One year"
+msgstr "ein Jahr"
 
-#: mod/admin.php:1387
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: mod/admin.php:909
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: mod/admin.php:1388
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: mod/admin.php:932
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: mod/admin.php:1391
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: mod/admin.php:933
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: mod/admin.php:1392
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: mod/admin.php:934
+msgid "Open"
+msgstr "Offen"
 
-#: mod/admin.php:1397
-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:938
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: mod/admin.php:1398
-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/admin.php:939
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: mod/admin.php:1408
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: mod/admin.php:940
+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:1409
-msgid "Nickname"
-msgstr "Spitzname"
+#: mod/admin.php:952 mod/admin.php:1579 mod/admin.php:1827 mod/admin.php:1901
+#: mod/admin.php:2051 mod/settings.php:678 mod/settings.php:788
+#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
+#: mod/settings.php:1264
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
 
-#: mod/admin.php:1409
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: mod/admin.php:953 mod/register.php:272
+msgid "Registration"
+msgstr "Registrierung"
 
-#: mod/admin.php:1410
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: mod/admin.php:954
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: mod/admin.php:1453
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: mod/admin.php:955
+msgid "Policies"
+msgstr "Regeln"
 
-#: mod/admin.php:1457
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: mod/admin.php:957
+msgid "Auto Discovered Contact Directory"
+msgstr "Automatisch ein Kontaktverzeichnis erstellen"
 
-#: mod/admin.php:1468 mod/admin.php:1704
-msgid "Disable"
-msgstr "Ausschalten"
+#: mod/admin.php:958
+msgid "Performance"
+msgstr "Performance"
 
-#: mod/admin.php:1470 mod/admin.php:1706
-msgid "Enable"
-msgstr "Einschalten"
+#: mod/admin.php:959
+msgid "Worker"
+msgstr "Worker"
 
-#: mod/admin.php:1493 mod/admin.php:1751
-msgid "Toggle"
-msgstr "Umschalten"
+#: mod/admin.php:960
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: mod/admin.php:1501 mod/admin.php:1760
-msgid "Author: "
-msgstr "Autor:"
+#: mod/admin.php:963
+msgid "Site name"
+msgstr "Seitenname"
 
-#: mod/admin.php:1502 mod/admin.php:1761
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: mod/admin.php:964
+msgid "Host name"
+msgstr "Host Name"
 
-#: mod/admin.php:1554
-msgid "Reload active plugins"
-msgstr "Aktive Plugins neu laden"
+#: mod/admin.php:965
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: mod/admin.php:1559
-#, php-format
+#: mod/admin.php:965
 msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
+"The email address your server shall use to send notification emails from."
+msgstr "Die E-Mail Adresse die dein Server zum Versenden von Benachrichtigungen verwenden soll."
 
-#: mod/admin.php:1664
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: mod/admin.php:966
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: mod/admin.php:1742
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: mod/admin.php:967
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: mod/admin.php:1802
-msgid "Reload active themes"
-msgstr "Aktives Theme neu laden"
+#: mod/admin.php:967
+msgid "Link to an icon that will be used for browsers."
+msgstr "Link zu einem Icon, das Browser verwenden werden."
 
-#: mod/admin.php:1807
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
+#: mod/admin.php:968
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: mod/admin.php:1808
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: mod/admin.php:968
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Link zu einem Icon das Tablets und Handies verwenden sollen."
 
-#: mod/admin.php:1809
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: mod/admin.php:969
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: mod/admin.php:1833
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: mod/admin.php:969
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf %s/siteinfo angezeigt werden."
 
-#: mod/admin.php:1865
-msgid "PHP log currently enabled."
-msgstr "PHP Protokollierung ist derzeit aktiviert."
+#: mod/admin.php:970
+msgid "System language"
+msgstr "Systemsprache"
 
-#: mod/admin.php:1867
-msgid "PHP log currently disabled."
-msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
+#: mod/admin.php:971
+msgid "System theme"
+msgstr "Systemweites Theme"
 
-#: mod/admin.php:1876
-msgid "Clear"
-msgstr "löschen"
+#: mod/admin.php:971
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>"
 
-#: mod/admin.php:1881
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: mod/admin.php:972
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: mod/admin.php:1882
-msgid "Log file"
-msgstr "Protokolldatei"
+#: mod/admin.php:972
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: mod/admin.php:1882
-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:973
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: mod/admin.php:1883
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: mod/admin.php:973
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: mod/admin.php:1886
-msgid "PHP logging"
-msgstr "PHP Protokollieren"
+#: mod/admin.php:974
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: mod/admin.php:1887
+#: mod/admin.php:974
 msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
+"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:2014 mod/admin.php:2015 mod/settings.php:776
-msgid "Off"
-msgstr "Aus"
+#: mod/admin.php:975
+msgid "Old style 'Share'"
+msgstr "Altes \"Teilen\" Element"
 
-#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
-msgid "On"
-msgstr "An"
+#: mod/admin.php:975
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: mod/admin.php:2015
-#, php-format
-msgid "Lock feature %s"
-msgstr "Feature festlegen: %s"
+#: mod/admin.php:976
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: mod/admin.php:2023
-msgid "Manage Additional Features"
-msgstr "Zusätzliche Features Verwalten"
+#: mod/admin.php:976
+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:977
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "Keine Kontakte zum Anzeigen."
+#: mod/admin.php:977
+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/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: mod/admin.php:978
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: mod/cal.php:276 mod/events.php:380
-msgid "View"
-msgstr "Ansehen"
+#: mod/admin.php:978
+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/cal.php:277 mod/events.php:382
-msgid "Previous"
-msgstr "Vorherige"
+#: mod/admin.php:979
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
-msgid "Next"
-msgstr "Nächste"
+#: mod/admin.php:979
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet."
 
-#: mod/cal.php:287 mod/events.php:392
-msgid "list"
-msgstr "Liste"
+#: mod/admin.php:980
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: mod/cal.php:297
-msgid "User not found"
-msgstr "Nutzer nicht gefunden"
+#: mod/admin.php:980
+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/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Dieses Kalenderformat wird nicht unterstützt."
+#: mod/admin.php:982
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "Keine exportierbaren Daten gefunden"
+#: mod/admin.php:983
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: mod/cal.php:330
-msgid "calendar"
-msgstr "Kalender"
+#: mod/admin.php:983
+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/common.php:86
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: mod/admin.php:984
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: mod/common.php:134 mod/contacts.php:863
-msgid "Common Friends"
-msgstr "Gemeinsame Kontakte"
+#: mod/admin.php:984
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: mod/community.php:27
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: mod/admin.php:985
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet."
+#: mod/admin.php:985
+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/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: mod/admin.php:986
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: mod/admin.php:986
+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 Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: mod/contacts.php:206
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: mod/admin.php:987
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: mod/admin.php:987
+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/contacts.php:389
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: mod/admin.php:988
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: mod/admin.php:988
+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/contacts.php:400
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: mod/admin.php:989
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: mod/admin.php:989
+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/contacts.php:412
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: mod/admin.php:990
+msgid "Global directory URL"
+msgstr "URL des weltweiten Verzeichnisses"
 
-#: mod/contacts.php:437
-msgid "Drop contact"
-msgstr "Kontakt löschen"
+#: mod/admin.php:990
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar."
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: mod/admin.php:991
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: mod/admin.php:991
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: mod/admin.php:992
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: mod/admin.php:992
+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/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: mod/admin.php:993
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: mod/admin.php:993
+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/contacts.php:534
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: mod/admin.php:994
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: mod/admin.php:994
+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/contacts.php:536 mod/contacts.php:973
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: mod/admin.php:995
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: mod/admin.php:995
+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/contacts.php:553
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: mod/admin.php:996
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: mod/admin.php:996
+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/contacts.php:557
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: mod/admin.php:997
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: mod/admin.php:997
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: mod/contacts.php:575
-msgid "Contact"
-msgstr "Kontakt: "
+#: mod/admin.php:998
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: mod/admin.php:998
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: mod/contacts.php:579
-#, php-format
+#: mod/admin.php:999
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
+
+#: mod/admin.php:999
 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."
+"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/contacts.php:580
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: mod/admin.php:1000
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: mod/admin.php:1000
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: mod/admin.php:1001
+msgid "Community Page Style"
+msgstr "Art der Gemeinschaftsseite"
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: mod/admin.php:1001
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen."
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: mod/admin.php:1002
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
 
-#: mod/contacts.php:590
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: mod/admin.php:1002
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Die Anzahl der Beiträge die von jedem Nutzer maximal auf der Gemeinschaftsseite angezeigt werden sollen. Dieser Parameter wird nicht für die Globale Gemeinschaftsseite genutzt."
 
-#: mod/contacts.php:596
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: mod/admin.php:1003
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: mod/contacts.php:598
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: mod/admin.php:1003
+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/contacts.php:600 mod/contacts.php:983
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: mod/admin.php:1004
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: mod/admin.php:1004
+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/contacts.php:610
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: mod/admin.php:1005
+msgid "Only import OStatus threads from our contacts"
+msgstr "Nur OStatus Konversationen unserer Kontakte importieren"
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: mod/admin.php:1005
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr "Normalerweise werden alle Inhalte von OStatus Kontakten importiert. Mit dieser Option werden nur solche Konversationen gespeichert, die von Kontakten der Nutzer dieses Knotens gestartet wurden."
 
-#: mod/contacts.php:612
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: mod/admin.php:1006
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "OStatus Unterstützung kann nur aktiviert werden wenn \"Threading\" aktiviert ist. "
 
-#: mod/contacts.php:613
+#: mod/admin.php:1008
 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"
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "Diaspora Unterstützung kann nicht aktiviert werden da Friendica in ein Unterverzeichnis installiert ist."
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: mod/admin.php:1009
+msgid "Enable Diaspora support"
+msgstr "Diaspora Unterstützung aktivieren"
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: mod/admin.php:1009
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: mod/admin.php:1010
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: mod/contacts.php:617
+#: mod/admin.php:1010
 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"
+"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/contacts.php:635
-msgid "Actions"
-msgstr "Aktionen"
+#: mod/admin.php:1011
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
-msgstr "Kontakteinstellungen"
+#: mod/admin.php:1011
+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/contacts.php:684
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: mod/admin.php:1012
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
-msgstr "Kontakte vorschlagen"
+#: mod/admin.php:1013
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:1014
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: mod/contacts.php:700
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: mod/admin.php:1014
+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/contacts.php:703
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: mod/admin.php:1015
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
 
-#: mod/contacts.php:709
-msgid "Blocked"
-msgstr "Geblockt"
+#: mod/admin.php:1015
+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/contacts.php:712
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: mod/admin.php:1016
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: mod/contacts.php:718
-msgid "Ignored"
-msgstr "Ignoriert"
+#: mod/admin.php:1016
+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/contacts.php:721
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: mod/admin.php:1017
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: mod/contacts.php:727
-msgid "Archived"
-msgstr "Archiviert"
+#: mod/admin.php:1017
+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/contacts.php:730
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: mod/admin.php:1018
+msgid "Maximum Load Average (Frontend)"
+msgstr "Maximum Load Average (Frontend)"
 
-#: mod/contacts.php:736
-msgid "Hidden"
-msgstr "Verborgen"
+#: mod/admin.php:1018
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Maximale Systemlast bevor Vordergrundprozesse pausiert werden - Standard 50."
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: mod/admin.php:1019
+msgid "Maximum table size for optimization"
+msgstr "Maximale Tabellengröße zur Optimierung"
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: mod/admin.php:1019
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Maximale Tabellengröße (in MB) für die automatische Optimierung - Standard 100 MB. Gib -1 für Deaktivierung ein."
 
-#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:702
-msgid "Update"
-msgstr "Aktualisierungen"
+#: mod/admin.php:1020
+msgid "Minimum level of fragmentation"
+msgstr "Minimaler Fragmentationsgrad"
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Archive"
-msgstr "Archivieren"
+#: mod/admin.php:1020
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Minimales Fragmentationsgrad von Datenbanktabellen um die automatische Optimierung einzuleiten - Standardwert ist 30%"
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: mod/admin.php:1022
+msgid "Periodical check of global contacts"
+msgstr "Regelmäßig globale Kontakte überprüfen"
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
-msgstr "Stapelverarbeitung"
+#: mod/admin.php:1022
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Wenn diese Option aktiviert ist, werden die globalen Kontakte regelmäßig auf fehlende oder veraltete Daten sowie auf Erreichbarkeit des Kontakts und des Servers überprüft."
 
-#: mod/contacts.php:856
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:1023
+msgid "Days between requery"
+msgstr "Tage zwischen erneuten Abfragen"
 
-#: mod/contacts.php:866
-msgid "View all common friends"
-msgstr "Alle Kontakte anzeigen"
+#: mod/admin.php:1023
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Legt das Abfrageintervall fest, nachdem ein Server erneut nach Kontakten abgefragt werden soll."
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: mod/admin.php:1024
+msgid "Discover contacts from other servers"
+msgstr "Neue Kontakte auf anderen Servern entdecken"
 
-#: mod/contacts.php:916
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: mod/admin.php:1024
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Regelmäßig andere Server nach potentiellen Kontakten absuchen. Du kannst zwischen 'Nutzern', den tatsächlichen Nutzern des anderen Systems und 'globalen Kontakten', aktiven Kontakten die auf dem System bekannt sind, wählen. Der Fallback-Mechanismus ist für ältere Friendica und Redmatrix Server gedacht, bei denen globale Kontakte noch nicht verfügbar sind. Durch den Fallbackmodus entsteht auf deinem Server eine wesentlich höhere Last, empfohlen wird der Modus 'Nutzer, globale Kontakte'."
 
-#: mod/contacts.php:920
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: mod/admin.php:1025
+msgid "Timeframe for fetching global contacts"
+msgstr "Zeitfenster für globale Kontakte"
 
-#: mod/contacts.php:924
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: mod/admin.php:1025
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "Wenn die Entdeckung neuer Kontakte aktiv ist, definiert dieses Zeitfenster den Zeitraum in dem globale Kontakte als aktiv gelten und von anderen Servern importiert werden."
 
-#: mod/contacts.php:994
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: mod/admin.php:1026
+msgid "Search the local directory"
+msgstr "Lokales Verzeichnis durchsuchen"
 
-#: mod/contacts.php:1002
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: mod/admin.php:1026
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt umd die Suchresultate zu verbessern, wenn diese Suche wiederholt wird."
 
-#: mod/contacts.php:1010
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: mod/admin.php:1028
+msgid "Publish server information"
+msgstr "Server Informationen veröffentlichen"
 
-#: mod/contacts.php:1018
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: mod/admin.php:1028
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Nutzer_innen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Connectoren. Für Details bitte <a href='http://the-federation.info/'>the-federation.info</a> aufrufen."
 
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-#: view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: mod/admin.php:1030
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
 
-#: mod/directory.php:199
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: mod/admin.php:1030
+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/directory.php:201
-msgid "Results for:"
-msgstr "Ergebnisse für:"
+#: mod/admin.php:1031
+msgid "Suppress Language"
+msgstr "Sprachinformation unterdrücken"
 
-#: mod/directory.php:203
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: mod/admin.php:1031
+msgid "Suppress language information in meta information about a posting."
+msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: mod/admin.php:1032
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
 
-#: mod/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
-msgstr "Personensuche - %s"
+#: mod/admin.php:1032
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Forensuche - %s"
+#: mod/admin.php:1033
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: mod/admin.php:1033
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert."
 
-#: mod/display.php:473
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: mod/admin.php:1034
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
-msgstr "Die Veranstaltung kann nicht enden bevor sie beginnt."
+#: mod/admin.php:1034
+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/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: mod/admin.php:1035
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: mod/admin.php:1035
+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/events.php:482
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: mod/admin.php:1036
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
 
-#: mod/events.php:483
-msgid "Starting date and Title are required."
-msgstr "Anfangszeitpunkt und Titel werden benötigt"
+#: mod/admin.php:1036
+msgid ""
+"The lock file is used to avoid multiple pollers at one time. Only define a "
+"folder here."
+msgstr "Die lock-Datei wird benutzt, damit nicht mehrere poller auf einmal laufen. Definiere hier einen Dateiverzeichnis."
 
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: mod/admin.php:1037
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: mod/admin.php:1037
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad."
 
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: mod/admin.php:1038
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: mod/admin.php:1038
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist."
 
-#: mod/events.php:492
-msgid "Description:"
-msgstr "Beschreibung"
+#: mod/admin.php:1039
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
-msgstr "Titel:"
+#: mod/admin.php:1039
+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 Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: mod/admin.php:1040
+msgid "Enable old style pager"
+msgstr "Den Old-Style Pager aktiviren"
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: mod/admin.php:1040
+msgid ""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite."
 
-#: mod/install.php:145
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: mod/admin.php:1041
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
 
-#: mod/install.php:149
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: mod/admin.php:1041
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen."
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: mod/admin.php:1043
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: mod/install.php:160
+#: mod/admin.php:1043
 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."
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle DFRN Kontakte deiner Nutzer_innen."
+
+#: mod/admin.php:1045
+msgid "RINO Encryption"
+msgstr "RINO Verschlüsselung"
+
+#: mod/admin.php:1045
+msgid "Encryption layer between nodes."
+msgstr "Verschlüsselung zwischen Friendica Instanzen"
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:602
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: mod/admin.php:1046
+msgid "Embedly API key"
+msgstr "Embedly  API Schlüssel"
 
-#: mod/install.php:173
-msgid "Database already in use."
-msgstr "Die Datenbank wird bereits verwendet."
+#: mod/admin.php:1046
+msgid ""
+"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
+"web pages. This is an optional parameter."
+msgstr "<a href='http://embed.ly'>Embedly</a> wird verwendet um zusätzliche Informationen von Webseiten zu laden. Dies ist ein optionaler Parameter."
 
-#: mod/install.php:227
-msgid "System check"
-msgstr "Systemtest"
+#: mod/admin.php:1048
+msgid "Enable 'worker' background processing"
+msgstr "Aktiviere die 'Worker' Hintergrundprozesse"
 
-#: mod/install.php:232
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: mod/admin.php:1048
+msgid ""
+"The worker background processing limits the number of parallel background "
+"jobs to a maximum number and respects the system load."
+msgstr "Der 'background worker' Prozess begrenzt die Zahl der Prozesse, die im Hintergrund parallel laufen und beachtet dabei die Systemlast."
 
-#: mod/install.php:251
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: mod/admin.php:1049
+msgid "Maximum number of parallel workers"
+msgstr "Maximale Anzahl parallel laufender Worker"
 
-#: mod/install.php:252
+#: mod/admin.php:1049
 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."
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setzte diesen Wert auf 2. Auf größeren Systemen funktioniert ein Wert von 10 recht gut. Standardeinstellung sind 4."
 
-#: mod/install.php:253
+#: mod/admin.php:1050
+msgid "Don't use 'proc_open' with the worker"
+msgstr "'proc_open' nicht mit den Workern verwenden"
+
+#: mod/admin.php:1050
 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."
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr "Aktiviere diese Option, wenn dein System die Verwendung von 'proc_open' verhindert. Dies könnte auf Shared Hostern der Fall sein. Wenn du diese Option aktivierst, solltest du die Frequenz der poller Aufrufe in deiner crontab erhöhen."
 
-#: mod/install.php:254
+#: mod/admin.php:1051
+msgid "Enable fastlane"
+msgstr "Aktiviere Fastlane"
+
+#: mod/admin.php:1051
 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."
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."
 
-#: mod/install.php:258
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: mod/admin.php:1080
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: mod/install.php:259
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: mod/admin.php:1088
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: mod/install.php:260
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: mod/admin.php:1091
+#, 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/install.php:261
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: mod/admin.php:1103
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: mod/admin.php:1106
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: mod/install.php:262 mod/install.php:303
-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:1110
+#, 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/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+#: mod/admin.php:1112
+#, 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/install.php:293
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: mod/admin.php:1131
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: mod/install.php:307
-msgid "System Language:"
-msgstr "Systemsprache:"
+#: mod/admin.php:1132
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: mod/install.php:307
+#: mod/admin.php:1137
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
+
+#: mod/admin.php:1138
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand"
+"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/install.php:347
-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:1139
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: mod/install.php:348
-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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
+#: mod/admin.php:1140
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: mod/install.php:352
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: mod/admin.php:1174
+#, 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/install.php:352
+#: mod/admin.php:1177
+#, php-format
 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."
+"\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 "\nNachfolgend die Anmelde-Details:\n\tAdresse der Seite:\t%1$s\n\tBenutzername:\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\nNun viel Spaß, gute Begegnungen und willkommen auf %4$s."
 
-#: mod/install.php:357
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: mod/admin.php:1221
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s Benutzer geblockt/freigegeben"
+msgstr[1] "%s Benutzer geblockt/freigegeben"
 
-#: mod/install.php:366
-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:1228
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: mod/install.php:367
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: mod/admin.php:1275
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: mod/install.php:369
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: mod/admin.php:1283
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: mod/install.php:380
-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:1283
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: mod/install.php:404
-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:1392 mod/admin.php:1418
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: mod/install.php:405
-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:1392 mod/settings.php:43
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: mod/admin.php:1401
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: mod/admin.php:1402
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: mod/admin.php:1403
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
+
+#: mod/admin.php:1404
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
+
+#: mod/admin.php:1405
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: mod/admin.php:1406
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: mod/admin.php:1407
+msgid "Note from the user"
+msgstr "Hinweis vom Nutzer"
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: mod/admin.php:1409
+msgid "Deny"
+msgstr "Verwehren"
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
-msgstr "PHP mcrypt Modul"
+#: mod/admin.php:1413
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: mod/install.php:420
-msgid "XML PHP module"
-msgstr "XML PHP Modul"
+#: mod/admin.php:1414
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: mod/install.php:421
-msgid "iconv module"
-msgstr "iconv module"
+#: mod/admin.php:1417
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: mod/admin.php:1418
+msgid "Deleted since"
+msgstr "Gelöscht seit"
 
-#: mod/install.php:425
+#: mod/admin.php:1423
 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:433
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/install.php:437
+#: mod/admin.php:1424
 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."
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Der Nutzer {0} wird gelöscht!\\n\\nAlles was dieser Nutzer auf dieser Seite veröffentlicht hat, wird permanent gelöscht!\\n\\nBist Du sicher?"
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: mod/admin.php:1434
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: mod/admin.php:1435
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: mod/install.php:449
-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:1435
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Fehler: Das mcrypt Modul von PHP ist nicht installiert"
+#: mod/admin.php:1436
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Fehler: Das iconv-Modul von PHP ist nicht installiert."
+#: mod/admin.php:1479
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
-msgstr "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. "
+#: mod/admin.php:1483
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren."
+#: mod/admin.php:1494 mod/admin.php:1730
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
-msgstr "mcrypt_create_iv() function"
+#: mod/admin.php:1496 mod/admin.php:1732
+msgid "Enable"
+msgstr "Einschalten"
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
-msgstr "Fehler: XML PHP Modul erforderlich aber nicht installiert."
+#: mod/admin.php:1519 mod/admin.php:1777
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: mod/install.php:494
-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:1527 mod/admin.php:1786
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/install.php:495
-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:1528 mod/admin.php:1787
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: mod/install.php:496
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: mod/admin.php:1580
+msgid "Reload active plugins"
+msgstr "Aktive Plugins neu laden"
 
-#: mod/install.php:497
+#: mod/admin.php:1585
+#, php-format
 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."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "Es sind derzeit keine Plugins auf diesem Knoten verfügbar. Du findest das offizielle Plugin-Repository unter %1$s und weitere eventuell interessante Plugins im offenen Plugins-Verzeichnis auf %2$s."
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: mod/admin.php:1690
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: mod/install.php:510
-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:1768
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: mod/install.php:511
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: mod/admin.php:1828
+msgid "Reload active themes"
+msgstr "Aktives Theme neu laden"
 
-#: mod/install.php:512
-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:1833
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "Es wurden keine Themes auf dem System gefunden. Diese sollten in %1$s patziert werden."
 
-#: mod/install.php:513
-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:1834
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: mod/admin.php:1835
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: mod/install.php:532
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: mod/admin.php:1859
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: mod/admin.php:1891
+msgid "PHP log currently enabled."
+msgstr "PHP Protokollierung ist derzeit aktiviert."
 
-#: mod/install.php:551
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP Erweiterung ist installiert"
+#: mod/admin.php:1893
+msgid "PHP log currently disabled."
+msgstr "PHP Protokollierung ist derzeit nicht aktiviert."
 
-#: mod/install.php:553
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick unterstützt GIF"
+#: mod/admin.php:1902
+msgid "Clear"
+msgstr "löschen"
 
-#: mod/install.php:561
+#: mod/admin.php:1907
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
+
+#: mod/admin.php:1908
+msgid "Log file"
+msgstr "Protokolldatei"
+
+#: mod/admin.php:1908
 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."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: mod/install.php:600
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: mod/admin.php:1909
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: mod/install.php:601
+#: mod/admin.php:1912
+msgid "PHP logging"
+msgstr "PHP Protokollieren"
+
+#: mod/admin.php:1913
 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."
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "Um PHP Warnungen und Fehler zu protokollieren, kannst du die folgenden Zeilen zur .htconfig.php Datei deiner Installation hinzufügen. Den Dateinamen der Log-Datei legst du in der Zeile mit dem 'error_log' fest,  Er ist relativ zum Friendica-Stammverzeichnis und muss schreibbar durch den Webserver sein. Eine \"1\" als Option für die Punkte 'log_errors' und 'display_errors' aktiviert die Funktionen zum Protokollieren bzw. Anzeigen der Fehler, eine \"0\" deaktiviert sie."
+
+#: mod/admin.php:2040 mod/admin.php:2041 mod/settings.php:778
+msgid "Off"
+msgstr "Aus"
+
+#: mod/admin.php:2040 mod/admin.php:2041 mod/settings.php:778
+msgid "On"
+msgstr "An"
+
+#: mod/admin.php:2041
+#, php-format
+msgid "Lock feature %s"
+msgstr "Feature festlegen: %s"
+
+#: mod/admin.php:2049
+msgid "Manage Additional Features"
+msgstr "Zusätzliche Features Verwalten"
 
 #: mod/item.php:116
 msgid "Unable to locate original post."
@@ -7482,110 +7519,97 @@ msgstr "Konnte den Originalbeitrag nicht finden."
 msgid "Empty post discarded."
 msgstr "Leerer Beitrag wurde verworfen."
 
-#: mod/item.php:895
+#: mod/item.php:898
 msgid "System error. Post not saved."
 msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: mod/item.php:985
+#: mod/item.php:988
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica."
 
-#: mod/item.php:987
+#: mod/item.php:990
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Du kannst sie online unter %s besuchen"
 
-#: mod/item.php:988
+#: mod/item.php:991
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest."
 
-#: mod/item.php:992
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
-
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
-
-#: mod/match.php:33
-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/match.php:86
-msgid "is interested in:"
-msgstr "ist interessiert an:"
-
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+#: mod/item.php:995
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
 #: mod/network.php:398
 #, php-format
-msgid "Warning: This group contains %s member from an insecure network."
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
 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."
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können."
 
 #: mod/network.php:401
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden."
 
-#: mod/network.php:528
+#: mod/network.php:529
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
 
-#: mod/network.php:533
+#: mod/network.php:534
 msgid "Invalid contact."
 msgstr "Ungültiger Kontakt."
 
-#: mod/network.php:826
+#: mod/network.php:827
 msgid "Commented Order"
 msgstr "Neueste Kommentare"
 
-#: mod/network.php:829
+#: mod/network.php:830
 msgid "Sort by Comment Date"
 msgstr "Nach Kommentardatum sortieren"
 
-#: mod/network.php:834
+#: mod/network.php:835
 msgid "Posted Order"
 msgstr "Neueste Beiträge"
 
-#: mod/network.php:837
+#: mod/network.php:838
 msgid "Sort by Post Date"
 msgstr "Nach Beitragsdatum sortieren"
 
-#: mod/network.php:848
+#: mod/network.php:849
 msgid "Posts that mention or involve you"
 msgstr "Beiträge, in denen es um Dich geht"
 
-#: mod/network.php:856
+#: mod/network.php:857
 msgid "New"
 msgstr "Neue"
 
-#: mod/network.php:859
+#: mod/network.php:860
 msgid "Activity Stream - by date"
 msgstr "Aktivitäten-Stream - nach Datum"
 
-#: mod/network.php:867
+#: mod/network.php:868
 msgid "Shared Links"
 msgstr "Geteilte Links"
 
-#: mod/network.php:870
+#: mod/network.php:871
 msgid "Interesting Links"
 msgstr "Interessante Links"
 
-#: mod/network.php:878
+#: mod/network.php:879
 msgid "Starred"
 msgstr "Markierte"
 
-#: mod/network.php:881
+#: mod/network.php:882
 msgid "Favourite Posts"
 msgstr "Favorisierte Beiträge"
 
@@ -7667,11 +7691,11 @@ msgstr "oder existierender Albumname: "
 msgid "Do not show a status post for this upload"
 msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1295
+#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
 msgid "Show to Groups"
 msgstr "Zeige den Gruppen"
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1296
+#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
 msgid "Show to Contacts"
 msgstr "Zeige den Kontakten"
 
@@ -7776,22 +7800,18 @@ msgstr "Karte"
 msgid "View Album"
 msgstr "Album betrachten"
 
-#: mod/ping.php:234
+#: mod/ping.php:211
 msgid "{0} wants to be your friend"
 msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: mod/ping.php:249
+#: mod/ping.php:226
 msgid "{0} sent you a message"
 msgstr "{0} schickte Dir eine Nachricht"
 
-#: mod/ping.php:264
+#: mod/ping.php:241
 msgid "{0} requested registration"
 msgstr "{0} möchte sich registrieren"
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
-
 #: mod/register.php:93
 msgid ""
 "Registration successful. Please check your email for further instructions."
@@ -7812,121 +7832,86 @@ msgstr "Registrierung erfolgreich."
 msgid "Your registration can not be processed."
 msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: mod/register.php:153
+#: mod/register.php:160
 msgid "Your registration is pending approval by the site owner."
 msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: mod/register.php:219
+#: mod/register.php:226
 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/register.php:220
+#: mod/register.php:227
 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/register.php:221
+#: mod/register.php:228
 msgid "Your OpenID (optional): "
 msgstr "Deine OpenID (optional): "
 
-#: mod/register.php:235
+#: mod/register.php:242
 msgid "Include your profile in member directory?"
 msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: mod/register.php:259
+#: mod/register.php:267
+msgid "Note for the admin"
+msgstr "Hinweis für den Admin"
+
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest."
+
+#: mod/register.php:268
 msgid "Membership on this site is by invitation only."
 msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: mod/register.php:260
+#: mod/register.php:269
 msgid "Your invitation ID: "
 msgstr "ID Deiner Einladung: "
 
-#: mod/register.php:271
+#: mod/register.php:280
 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):"
 
-#: mod/register.php:272
+#: mod/register.php:281
 msgid "Your Email Address: "
 msgstr "Deine E-Mail-Adresse: "
 
-#: mod/register.php:274 mod/settings.php:1266
+#: mod/register.php:283 mod/settings.php:1271
 msgid "New Password:"
 msgstr "Neues Passwort:"
 
-#: mod/register.php:274
+#: mod/register.php:283
 msgid "Leave empty for an auto generated password."
 msgstr "Leer lassen um das Passwort automatisch zu generieren."
 
-#: mod/register.php:275 mod/settings.php:1267
+#: mod/register.php:284 mod/settings.php:1272
 msgid "Confirm:"
 msgstr "Bestätigen:"
 
-#: mod/register.php:276
+#: mod/register.php:285
 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:277
+#: mod/register.php:286
 msgid "Choose a nickname: "
 msgstr "Spitznamen wählen: "
 
-#: mod/register.php:287
+#: mod/register.php:296
 msgid "Import your profile to this friendica instance"
 msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
-
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
-
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
-
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
-
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
-msgstr "Möchtest Du dieses Video wirklich löschen?"
-
-#: mod/videos.php:125
-msgid "Delete Video"
-msgstr "Video Löschen"
-
-#: mod/videos.php:204
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Neueste Videos"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
-
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Keine Kontakte."
-
 #: mod/settings.php:60
 msgid "Display"
 msgstr "Anzeige"
 
-#: mod/settings.php:67 mod/settings.php:884
+#: mod/settings.php:67 mod/settings.php:886
 msgid "Social Networks"
 msgstr "Soziale Netzwerke"
 
@@ -7954,675 +7939,731 @@ msgstr "E-Mail Einstellungen bearbeitet."
 msgid "Features updated"
 msgstr "Features aktualisiert"
 
-#: mod/settings.php:357
+#: mod/settings.php:359
 msgid "Relocate message has been send to your contacts"
 msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: mod/settings.php:376
+#: mod/settings.php:378
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: mod/settings.php:384
+#: mod/settings.php:386
 msgid "Wrong password."
 msgstr "Falsches Passwort."
 
-#: mod/settings.php:395
+#: mod/settings.php:397
 msgid "Password changed."
 msgstr "Passwort geändert."
 
-#: mod/settings.php:397
+#: mod/settings.php:399
 msgid "Password update failed. Please try again."
 msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: mod/settings.php:477
+#: mod/settings.php:479
 msgid " Please use a shorter name."
 msgstr " Bitte verwende einen kürzeren Namen."
 
-#: mod/settings.php:479
+#: mod/settings.php:481
 msgid " Name too short."
 msgstr " Name ist zu kurz."
 
-#: mod/settings.php:488
+#: mod/settings.php:490
 msgid "Wrong Password"
 msgstr "Falsches Passwort"
 
-#: mod/settings.php:493
+#: mod/settings.php:495
 msgid " Not valid email."
 msgstr " Keine gültige E-Mail."
 
-#: mod/settings.php:499
+#: mod/settings.php:501
 msgid " Cannot change to that email."
 msgstr "Ändern der E-Mail nicht möglich. "
 
-#: mod/settings.php:555
+#: mod/settings.php:557
 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:559
+#: mod/settings.php:561
 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:599
+#: mod/settings.php:601
 msgid "Settings updated."
 msgstr "Einstellungen aktualisiert."
 
-#: mod/settings.php:675 mod/settings.php:701 mod/settings.php:737
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
 msgid "Add application"
 msgstr "Programm hinzufügen"
 
-#: mod/settings.php:679 mod/settings.php:705
+#: mod/settings.php:681 mod/settings.php:707
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: mod/settings.php:680 mod/settings.php:706
+#: mod/settings.php:682 mod/settings.php:708
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: mod/settings.php:681 mod/settings.php:707
+#: mod/settings.php:683 mod/settings.php:709
 msgid "Redirect"
 msgstr "Umleiten"
 
-#: mod/settings.php:682 mod/settings.php:708
+#: mod/settings.php:684 mod/settings.php:710
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: mod/settings.php:693
+#: mod/settings.php:695
 msgid "You can't edit this application."
 msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: mod/settings.php:736
+#: mod/settings.php:738
 msgid "Connected Apps"
 msgstr "Verbundene Programme"
 
-#: mod/settings.php:740
+#: mod/settings.php:742
 msgid "Client key starts with"
 msgstr "Anwenderschlüssel beginnt mit"
 
-#: mod/settings.php:741
+#: mod/settings.php:743
 msgid "No name"
 msgstr "Kein Name"
 
-#: mod/settings.php:742
+#: mod/settings.php:744
 msgid "Remove authorization"
 msgstr "Autorisierung entziehen"
 
-#: mod/settings.php:754
+#: mod/settings.php:756
 msgid "No Plugin settings configured"
 msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: mod/settings.php:762
+#: mod/settings.php:764
 msgid "Plugin Settings"
 msgstr "Plugin-Einstellungen"
 
-#: mod/settings.php:784
+#: mod/settings.php:786
 msgid "Additional Features"
 msgstr "Zusätzliche Features"
 
-#: mod/settings.php:794 mod/settings.php:798
+#: mod/settings.php:796 mod/settings.php:800
 msgid "General Social Media Settings"
 msgstr "Allgemeine Einstellungen zu Sozialen Medien"
 
-#: mod/settings.php:804
+#: mod/settings.php:806
 msgid "Disable intelligent shortening"
 msgstr "Intelligentes Link kürzen ausschalten"
 
-#: mod/settings.php:806
+#: mod/settings.php:808
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the"
 " original friendica post."
 msgstr "Normalerweise versucht das System den besten Link zu finden um ihn zu gekürzten Postings hinzu zu fügen. Wird diese Option ausgewählt wird stets ein Link auf die originale Friendica Nachricht beigefügt."
 
-#: mod/settings.php:812
+#: mod/settings.php:814
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr "Automatisch allen GNU Social (OStatus) Followern/Erwähnern folgen"
 
-#: mod/settings.php:814
+#: mod/settings.php:816
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr "Wenn du eine Nachricht eines unbekannten OStatus Nutzers bekommst, entscheidet diese Option wie diese behandelt werden soll. Ist die Option aktiviert, wird ein neuer Kontakt für den Verfasser erstellt,."
 
-#: mod/settings.php:820
+#: mod/settings.php:822
 msgid "Default group for OStatus contacts"
 msgstr "Voreingestellte Gruppe für OStatus Kontakte"
 
-#: mod/settings.php:826
+#: mod/settings.php:828
 msgid "Your legacy GNU Social account"
 msgstr "Dein alter GNU Social Account"
 
-#: mod/settings.php:828
+#: mod/settings.php:830
 msgid ""
 "If you enter your old GNU Social/Statusnet account name here (in the format "
 "user@domain.tld), your contacts will be added automatically. The field will "
 "be emptied when done."
 msgstr "Wenn du deinen alten GNU Socual/Statusnet Accountnamen hier angibst (Format name@domain.tld) werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden."
 
-#: mod/settings.php:831
+#: mod/settings.php:833
 msgid "Repair OStatus subscriptions"
 msgstr "OStatus Abonnements reparieren"
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 #, 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:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 msgid "enabled"
 msgstr "eingeschaltet"
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 msgid "disabled"
 msgstr "ausgeschaltet"
 
-#: mod/settings.php:841
+#: mod/settings.php:843
 msgid "GNU Social (OStatus)"
 msgstr "GNU Social (OStatus)"
 
-#: mod/settings.php:877
+#: mod/settings.php:879
 msgid "Email access is disabled on this site."
 msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: mod/settings.php:889
+#: mod/settings.php:891
 msgid "Email/Mailbox Setup"
 msgstr "E-Mail/Postfach-Einstellungen"
 
-#: mod/settings.php:890
+#: mod/settings.php:892
 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:891
+#: mod/settings.php:893
 msgid "Last successful email check:"
 msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: mod/settings.php:893
+#: mod/settings.php:895
 msgid "IMAP server name:"
 msgstr "IMAP-Server-Name:"
 
-#: mod/settings.php:894
+#: mod/settings.php:896
 msgid "IMAP port:"
 msgstr "IMAP-Port:"
 
-#: mod/settings.php:895
+#: mod/settings.php:897
 msgid "Security:"
 msgstr "Sicherheit:"
 
-#: mod/settings.php:895 mod/settings.php:900
+#: mod/settings.php:897 mod/settings.php:902
 msgid "None"
 msgstr "Keine"
 
-#: mod/settings.php:896
+#: mod/settings.php:898
 msgid "Email login name:"
 msgstr "E-Mail-Login-Name:"
 
-#: mod/settings.php:897
+#: mod/settings.php:899
 msgid "Email password:"
 msgstr "E-Mail-Passwort:"
 
-#: mod/settings.php:898
+#: mod/settings.php:900
 msgid "Reply-to address:"
 msgstr "Reply-to Adresse:"
 
-#: mod/settings.php:899
+#: mod/settings.php:901
 msgid "Send public posts to all email contacts:"
 msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: mod/settings.php:900
+#: mod/settings.php:902
 msgid "Action after import:"
 msgstr "Aktion nach Import:"
 
-#: mod/settings.php:900
+#: mod/settings.php:902
 msgid "Move to folder"
 msgstr "In einen Ordner verschieben"
 
-#: mod/settings.php:901
+#: mod/settings.php:903
 msgid "Move to folder:"
 msgstr "In diesen Ordner verschieben:"
 
-#: mod/settings.php:990
+#: mod/settings.php:994
 msgid "Display Settings"
 msgstr "Anzeige-Einstellungen"
 
-#: mod/settings.php:996 mod/settings.php:1018
+#: mod/settings.php:1000 mod/settings.php:1023
 msgid "Display Theme:"
 msgstr "Theme:"
 
-#: mod/settings.php:997
+#: mod/settings.php:1001
 msgid "Mobile Theme:"
 msgstr "Mobiles Theme"
 
-#: mod/settings.php:998
+#: mod/settings.php:1002
+msgid "Suppress warning of insecure networks"
+msgstr "Warnung wegen unsicheren Netzwerken unterdrücken"
+
+#: mod/settings.php:1002
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können."
+
+#: mod/settings.php:1003
 msgid "Update browser every xx seconds"
 msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: mod/settings.php:998
+#: mod/settings.php:1003
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten."
 
-#: mod/settings.php:999
+#: mod/settings.php:1004
 msgid "Number of items to display per page:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: mod/settings.php:999 mod/settings.php:1000
+#: mod/settings.php:1004 mod/settings.php:1005
 msgid "Maximum of 100 items"
 msgstr "Maximal 100 Beiträge"
 
-#: mod/settings.php:1000
+#: mod/settings.php:1005
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
 
-#: mod/settings.php:1001
+#: mod/settings.php:1006
 msgid "Don't show emoticons"
 msgstr "Keine Smilies anzeigen"
 
-#: mod/settings.php:1002
+#: mod/settings.php:1007
 msgid "Calendar"
 msgstr "Kalender"
 
-#: mod/settings.php:1003
+#: mod/settings.php:1008
 msgid "Beginning of week:"
 msgstr "Wochenbeginn:"
 
-#: mod/settings.php:1004
+#: mod/settings.php:1009
 msgid "Don't show notices"
 msgstr "Info-Popups nicht anzeigen"
 
-#: mod/settings.php:1005
+#: mod/settings.php:1010
 msgid "Infinite scroll"
 msgstr "Endloses Scrollen"
 
-#: mod/settings.php:1006
+#: mod/settings.php:1011
 msgid "Automatic updates only at the top of the network page"
 msgstr "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist."
 
-#: mod/settings.php:1007
+#: mod/settings.php:1012
 msgid "Bandwith Saver Mode"
 msgstr "Bandbreiten-Spar-Modus"
 
-#: mod/settings.php:1007
+#: mod/settings.php:1012
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden."
 
-#: mod/settings.php:1009
+#: mod/settings.php:1014
 msgid "General Theme Settings"
 msgstr "Allgemeine Themeneinstellungen"
 
-#: mod/settings.php:1010
+#: mod/settings.php:1015
 msgid "Custom Theme Settings"
 msgstr "Benutzerdefinierte Theme Einstellungen"
 
-#: mod/settings.php:1011
+#: mod/settings.php:1016
 msgid "Content Settings"
 msgstr "Einstellungen zum Inhalt"
 
-#: mod/settings.php:1012 view/theme/frio/config.php:61
-#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66
-#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109
-#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61
+#: mod/settings.php:1017 view/theme/frio/config.php:61
+#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
+#: view/theme/duepuntozero/config.php:61
 msgid "Theme settings"
 msgstr "Themeneinstellungen"
 
-#: mod/settings.php:1094
+#: mod/settings.php:1099
 msgid "Account Types"
 msgstr "Kontenarten"
 
-#: mod/settings.php:1095
+#: mod/settings.php:1100
 msgid "Personal Page Subtypes"
 msgstr "Unterarten der persönlichen Seite"
 
-#: mod/settings.php:1096
+#: mod/settings.php:1101
 msgid "Community Forum Subtypes"
 msgstr "Unterarten des Gemeinschaftsforums"
 
-#: mod/settings.php:1103
+#: mod/settings.php:1108
 msgid "Personal Page"
 msgstr "Persönliche Seite"
 
-#: mod/settings.php:1104
+#: mod/settings.php:1109
 msgid "This account is a regular personal profile"
 msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/settings.php:1107
+#: mod/settings.php:1112
 msgid "Organisation Page"
 msgstr "Organisationsseite"
 
-#: mod/settings.php:1108
+#: mod/settings.php:1113
 msgid "This account is a profile for an organisation"
 msgstr "Diese Konto ist ein Profil für eine Organisation"
 
-#: mod/settings.php:1111
+#: mod/settings.php:1116
 msgid "News Page"
 msgstr "Nachrichtenseite"
 
-#: mod/settings.php:1112
+#: mod/settings.php:1117
 msgid "This account is a news account/reflector"
 msgstr "Dieses Konto ist ein News-Konto bzw. -Spiegel"
 
-#: mod/settings.php:1115
+#: mod/settings.php:1120
 msgid "Community Forum"
 msgstr "Gemeinschaftsforum"
 
-#: mod/settings.php:1116
+#: mod/settings.php:1121
 msgid ""
 "This account is a community forum where people can discuss with each other"
 msgstr "Dieses Konto ist ein Gemeinschaftskonto wo sich Leute untereinander austauschen können"
 
-#: mod/settings.php:1119
+#: mod/settings.php:1124
 msgid "Normal Account Page"
 msgstr "Normales Konto"
 
-#: mod/settings.php:1120
+#: mod/settings.php:1125
 msgid "This account is a normal personal profile"
 msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: mod/settings.php:1123
+#: mod/settings.php:1128
 msgid "Soapbox Page"
 msgstr "Marktschreier-Konto"
 
-#: mod/settings.php:1124
+#: mod/settings.php:1129
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: mod/settings.php:1127
+#: mod/settings.php:1132
 msgid "Public Forum"
 msgstr "Öffentliches Forum"
 
-#: mod/settings.php:1128
+#: mod/settings.php:1133
 msgid "Automatically approve all contact requests"
 msgstr "Bestätige alle Kontaktanfragen automatisch"
 
-#: mod/settings.php:1131
+#: mod/settings.php:1136
 msgid "Automatic Friend Page"
 msgstr "Automatische Freunde Seite"
 
-#: mod/settings.php:1132
+#: mod/settings.php:1137
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: mod/settings.php:1135
+#: mod/settings.php:1140
 msgid "Private Forum [Experimental]"
 msgstr "Privates Forum [Versuchsstadium]"
 
-#: mod/settings.php:1136
+#: mod/settings.php:1141
 msgid "Private forum - approved members only"
 msgstr "Privates Forum, nur für Mitglieder"
 
-#: mod/settings.php:1148
+#: mod/settings.php:1153
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: mod/settings.php:1148
+#: mod/settings.php:1153
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: mod/settings.php:1158
+#: mod/settings.php:1163
 msgid "Publish your default profile in your local site directory?"
 msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: mod/settings.php:1164
+#: mod/settings.php:1169
 msgid "Publish your default profile in the global social directory?"
 msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: mod/settings.php:1172
+#: mod/settings.php:1177
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: mod/settings.php:1176
+#: mod/settings.php:1181
 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:1181
+#: mod/settings.php:1186
 msgid "Allow friends to post to your profile page?"
 msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: mod/settings.php:1187
+#: mod/settings.php:1192
 msgid "Allow friends to tag your posts?"
 msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: mod/settings.php:1193
+#: mod/settings.php:1198
 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:1199
+#: mod/settings.php:1204
 msgid "Permit unknown people to send you private mail?"
 msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: mod/settings.php:1207
+#: mod/settings.php:1212
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: mod/settings.php:1215
+#: mod/settings.php:1220
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr "Die Adresse deines Profils lautet <strong>'%s'</strong> oder '%s'."
 
-#: mod/settings.php:1222
+#: mod/settings.php:1227
 msgid "Automatically expire posts after this many days:"
 msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: mod/settings.php:1222
+#: mod/settings.php:1227
 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:1223
+#: mod/settings.php:1228
 msgid "Advanced expiration settings"
 msgstr "Erweiterte Verfallseinstellungen"
 
-#: mod/settings.php:1224
+#: mod/settings.php:1229
 msgid "Advanced Expiration"
 msgstr "Erweitertes Verfallen"
 
-#: mod/settings.php:1225
+#: mod/settings.php:1230
 msgid "Expire posts:"
 msgstr "Beiträge verfallen lassen:"
 
-#: mod/settings.php:1226
+#: mod/settings.php:1231
 msgid "Expire personal notes:"
 msgstr "Persönliche Notizen verfallen lassen:"
 
-#: mod/settings.php:1227
+#: mod/settings.php:1232
 msgid "Expire starred posts:"
 msgstr "Markierte Beiträge verfallen lassen:"
 
-#: mod/settings.php:1228
+#: mod/settings.php:1233
 msgid "Expire photos:"
 msgstr "Fotos verfallen lassen:"
 
-#: mod/settings.php:1229
+#: mod/settings.php:1234
 msgid "Only expire posts by others:"
 msgstr "Nur Beiträge anderer verfallen:"
 
-#: mod/settings.php:1257
+#: mod/settings.php:1262
 msgid "Account Settings"
 msgstr "Kontoeinstellungen"
 
-#: mod/settings.php:1265
+#: mod/settings.php:1270
 msgid "Password Settings"
 msgstr "Passwort-Einstellungen"
 
-#: mod/settings.php:1267
+#: mod/settings.php:1272
 msgid "Leave password fields blank unless changing"
 msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: mod/settings.php:1268
+#: mod/settings.php:1273
 msgid "Current Password:"
 msgstr "Aktuelles Passwort:"
 
-#: mod/settings.php:1268 mod/settings.php:1269
+#: mod/settings.php:1273 mod/settings.php:1274
 msgid "Your current password to confirm the changes"
 msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: mod/settings.php:1269
+#: mod/settings.php:1274
 msgid "Password:"
 msgstr "Passwort:"
 
-#: mod/settings.php:1273
+#: mod/settings.php:1278
 msgid "Basic Settings"
 msgstr "Grundeinstellungen"
 
-#: mod/settings.php:1275
+#: mod/settings.php:1280
 msgid "Email Address:"
 msgstr "E-Mail-Adresse:"
 
-#: mod/settings.php:1276
+#: mod/settings.php:1281
 msgid "Your Timezone:"
 msgstr "Deine Zeitzone:"
 
-#: mod/settings.php:1277
+#: mod/settings.php:1282
 msgid "Your Language:"
 msgstr "Deine Sprache:"
 
-#: mod/settings.php:1277
+#: mod/settings.php:1282
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr "Wähle die Sprache, in der wir Dir die Friendica-Oberfläche präsentieren sollen und Dir E-Mail schicken"
 
-#: mod/settings.php:1278
+#: mod/settings.php:1283
 msgid "Default Post Location:"
 msgstr "Standardstandort:"
 
-#: mod/settings.php:1279
+#: mod/settings.php:1284
 msgid "Use Browser Location:"
 msgstr "Standort des Browsers verwenden:"
 
-#: mod/settings.php:1282
+#: mod/settings.php:1287
 msgid "Security and Privacy Settings"
 msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: mod/settings.php:1284
+#: mod/settings.php:1289
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximale Anzahl vonKontaktanfragen/Tag:"
 
-#: mod/settings.php:1284 mod/settings.php:1314
+#: mod/settings.php:1289 mod/settings.php:1319
 msgid "(to prevent spam abuse)"
 msgstr "(um SPAM zu vermeiden)"
 
-#: mod/settings.php:1285
+#: mod/settings.php:1290
 msgid "Default Post Permissions"
 msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: mod/settings.php:1286
+#: mod/settings.php:1291
 msgid "(click to open/close)"
 msgstr "(klicke zum öffnen/schließen)"
 
-#: mod/settings.php:1297
+#: mod/settings.php:1302
 msgid "Default Private Post"
 msgstr "Privater Standardbeitrag"
 
-#: mod/settings.php:1298
+#: mod/settings.php:1303
 msgid "Default Public Post"
 msgstr "Öffentlicher Standardbeitrag"
 
-#: mod/settings.php:1302
+#: mod/settings.php:1307
 msgid "Default Permissions for New Posts"
 msgstr "Standardberechtigungen für neue Beiträge"
 
-#: mod/settings.php:1314
+#: mod/settings.php:1319
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: mod/settings.php:1317
+#: mod/settings.php:1322
 msgid "Notification Settings"
 msgstr "Benachrichtigungseinstellungen"
 
-#: mod/settings.php:1318
+#: mod/settings.php:1323
 msgid "By default post a status message when:"
 msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: mod/settings.php:1319
+#: mod/settings.php:1324
 msgid "accepting a friend request"
 msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: mod/settings.php:1320
+#: mod/settings.php:1325
 msgid "joining a forum/community"
 msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: mod/settings.php:1321
+#: mod/settings.php:1326
 msgid "making an <em>interesting</em> profile change"
 msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: mod/settings.php:1322
+#: mod/settings.php:1327
 msgid "Send a notification email when:"
 msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: mod/settings.php:1323
+#: mod/settings.php:1328
 msgid "You receive an introduction"
 msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: mod/settings.php:1324
+#: mod/settings.php:1329
 msgid "Your introductions are confirmed"
 msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: mod/settings.php:1325
+#: mod/settings.php:1330
 msgid "Someone writes on your profile wall"
 msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: mod/settings.php:1326
+#: mod/settings.php:1331
 msgid "Someone writes a followup comment"
 msgstr "– jemand auch einen Kommentar verfasst"
 
-#: mod/settings.php:1327
+#: mod/settings.php:1332
 msgid "You receive a private message"
 msgstr "– Du eine private Nachricht erhältst"
 
-#: mod/settings.php:1328
+#: mod/settings.php:1333
 msgid "You receive a friend suggestion"
 msgstr "– Du eine Empfehlung erhältst"
 
-#: mod/settings.php:1329
+#: mod/settings.php:1334
 msgid "You are tagged in a post"
 msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: mod/settings.php:1330
+#: mod/settings.php:1335
 msgid "You are poked/prodded/etc. in a post"
 msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: mod/settings.php:1332
+#: mod/settings.php:1337
 msgid "Activate desktop notifications"
 msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/settings.php:1332
+#: mod/settings.php:1337
 msgid "Show desktop popup on new notifications"
 msgstr "Desktop Benachrichtigungen einschalten"
 
-#: mod/settings.php:1334
+#: mod/settings.php:1339
 msgid "Text-only notification emails"
 msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: mod/settings.php:1336
+#: mod/settings.php:1341
 msgid "Send text only notification emails, without the html part"
 msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: mod/settings.php:1338
+#: mod/settings.php:1343
 msgid "Advanced Account/Page Type Settings"
 msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: mod/settings.php:1339
+#: mod/settings.php:1344
 msgid "Change the behaviour of this account for special situations"
 msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: mod/settings.php:1342
+#: mod/settings.php:1347
 msgid "Relocate"
 msgstr "Umziehen"
 
-#: mod/settings.php:1343
+#: mod/settings.php:1348
 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:1344
+#: mod/settings.php:1349
 msgid "Resend relocate message to contacts"
 msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
+#: mod/videos.php:120
+msgid "Do you really want to delete this video?"
+msgstr "Möchtest Du dieses Video wirklich löschen?"
+
+#: mod/videos.php:125
+msgid "Delete Video"
+msgstr "Video Löschen"
+
+#: mod/videos.php:204
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Neueste Videos"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
+
+#: mod/viewcontacts.php:72
+msgid "No contacts."
+msgstr "Keine Kontakte."
+
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
+#: mod/wall_upload.php:122 mod/wall_upload.php:125
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
+
+#: mod/wall_attach.php:94
+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/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "Die Datei ist größer als das erlaubte Limit von %s"
+
+#: mod/wall_attach.php:156 mod/wall_attach.php:172
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
+
 #: object/Item.php:370
 msgid "via"
 msgstr "via"
@@ -8707,23 +8748,6 @@ msgstr "Gast"
 msgid "Visitor"
 msgstr "Besucher"
 
-#: 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)"
-
-#: 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"
-
-#: view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Theme Breite festlegen"
-
-#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Farbschema"
-
 #: view/theme/quattro/config.php:67
 msgid "Alignment"
 msgstr "Ausrichtung"
@@ -8736,6 +8760,10 @@ msgstr "Links"
 msgid "Center"
 msgstr "Mitte"
 
+#: view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Farbschema"
+
 #: view/theme/quattro/config.php:69
 msgid "Posts font size"
 msgstr "Schriftgröße in Beiträgen"
@@ -8744,33 +8772,19 @@ msgstr "Schriftgröße in Beiträgen"
 msgid "Textareas font size"
 msgstr "Schriftgröße in Eingabefeldern"
 
-#: 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"
-
-#: view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Farbschema wählen"
-
 #: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
-#: view/theme/diabook/config.php:160
 msgid "Community Profiles"
 msgstr "Community-Profile"
 
 #: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
-#: view/theme/diabook/config.php:164
 msgid "Last users"
 msgstr "Letzte Nutzer"
 
 #: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
-#: view/theme/diabook/config.php:163
 msgid "Find Friends"
 msgstr "Kontakte finden"
 
-#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524
+#: view/theme/vier/theme.php:200
 msgid "Local Directory"
 msgstr "Lokales Verzeichnis"
 
@@ -8779,8 +8793,6 @@ msgid "Quick Start"
 msgstr "Schnell-Start"
 
 #: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
-#: view/theme/diabook/config.php:162
 msgid "Connect Services"
 msgstr "Verbinde Dienste"
 
@@ -8792,68 +8804,14 @@ msgstr "Komma-Separierte Liste der Helfer-Foren"
 msgid "Set style"
 msgstr "Stil auswählen"
 
-#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
-#: view/theme/diabook/config.php:158
+#: view/theme/vier/config.php:111
 msgid "Community Pages"
 msgstr "Foren"
 
-#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599
-#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161
+#: view/theme/vier/config.php:113
 msgid "Help or @NewHere ?"
 msgstr "Hilfe oder @NewHere"
 
-#: view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Deine Kontakte"
-
-#: view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Deine privaten Fotos"
-
-#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632
-#: view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Zuletzt gemocht"
-
-#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
-#: view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Letzte Fotos"
-
-#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
-#: view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Earth Layers"
-
-#: view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Zoomfaktor der Earth Layer"
-
-#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Longitude (X) der Earth Layer"
-
-#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Latitude (Y) der Earth Layer"
-
-#: view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
-
-#: view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Auflösung für die Mittelspalte setzen"
-
-#: view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Wähle Farbschema"
-
-#: view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Zoomfaktor der Earth Layer"
-
 #: view/theme/duepuntozero/config.php:45
 msgid "greenzero"
 msgstr "greenzero"
@@ -8886,51 +8844,51 @@ msgstr "Variationen"
 msgid "toggle mobile"
 msgstr "auf/von Mobile Ansicht wechseln"
 
-#: boot.php:968
+#: boot.php:969
 msgid "Delete this item?"
 msgstr "Diesen Beitrag löschen?"
 
-#: boot.php:971
+#: boot.php:972
 msgid "show fewer"
 msgstr "weniger anzeigen"
 
-#: boot.php:1641
+#: boot.php:1650
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: boot.php:1753
+#: boot.php:1762
 msgid "Create a New Account"
 msgstr "Neues Konto erstellen"
 
-#: boot.php:1782
+#: boot.php:1791
 msgid "Password: "
 msgstr "Passwort: "
 
-#: boot.php:1783
+#: boot.php:1792
 msgid "Remember me"
 msgstr "Anmeldedaten merken"
 
-#: boot.php:1786
+#: boot.php:1795
 msgid "Or login using OpenID: "
 msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: boot.php:1792
+#: boot.php:1801
 msgid "Forgot your password?"
 msgstr "Passwort vergessen?"
 
-#: boot.php:1795
+#: boot.php:1804
 msgid "Website Terms of Service"
 msgstr "Website Nutzungsbedingungen"
 
-#: boot.php:1796
+#: boot.php:1805
 msgid "terms of service"
 msgstr "Nutzungsbedingungen"
 
-#: boot.php:1798
+#: boot.php:1807
 msgid "Website Privacy Policy"
 msgstr "Website Datenschutzerklärung"
 
-#: boot.php:1799
+#: boot.php:1808
 msgid "privacy policy"
 msgstr "Datenschutzerklärung"
index 346cd32024643e5ac2d335d031e175c1cd015f8c..ee0ffb6fd97af3355471ed76b72d69a8788ad762 100644 (file)
@@ -115,28 +115,6 @@ $a->strings["Create a new group"] = "Neue Gruppe erstellen";
 $a->strings["Group Name: "] = "Gruppenname:";
 $a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
 $a->strings["add"] = "hinzufügen";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$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 \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
-$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["default"] = "Standard";
-$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["Profile Photos"] = "Profilbilder";
-$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["Registration details for %s"] = "Details der Registration von %s";
 $a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
 $a->strings["Block immediately"] = "Sofort blockieren";
 $a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
@@ -166,7 +144,6 @@ $a->strings["Diaspora Connector"] = "Diaspora";
 $a->strings["GNU Social"] = "GNU Social";
 $a->strings["App.net"] = "App.net";
 $a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
-$a->strings["view full size"] = "Volle Größe anzeigen";
 $a->strings["Post to Email"] = "An E-Mail senden";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist.";
 $a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
@@ -201,24 +178,6 @@ $a->strings["%d contact not imported"] = array(
        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["System"] = "System";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$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 attending %s's event"] = "%s nimmt an %s's Event teil";
-$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
-$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
 $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";
@@ -269,115 +228,10 @@ $a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stum
 $a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
 $a->strings["Advanced Profile Settings"] = "Erweiterte Profil-Einstellungen";
 $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Zeige Besuchern öffentliche Gemeinschafts-Foren auf der Erweiterten Profil-Seite";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["noreply"] = "noreply";
-$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["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["$1 wrote:"] = "$1 hat geschrieben:";
 $a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$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["post/item"] = "Nachricht/Beitrag";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
-$a->strings["Likes"] = "Likes";
-$a->strings["Dislikes"] = "Dislikes";
-$a->strings["Attending"] = array(
-       0 => "Teilnehmend",
-       1 => "Teilnehmend",
-);
-$a->strings["Not attending"] = "Nicht teilnehmend";
-$a->strings["Might attend"] = "Eventuell teilnehmend";
-$a->strings["Select"] = "Auswählen";
-$a->strings["Delete"] = "Löschen";
-$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
-$a->strings["Categories:"] = "Kategorien:";
-$a->strings["Filed under:"] = "Abgelegt unter:";
-$a->strings["%s from %s"] = "%s von %s";
-$a->strings["View in context"] = "Im Zusammenhang betrachten";
-$a->strings["Please wait"] = "Bitte warten";
-$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["View Contact"] = "Kontakt anzeigen";
-$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["%s attends."] = "%s nimmt teil.";
-$a->strings["%s doesn't attend."] = "%s nimmt nicht teil.";
-$a->strings["%s attends maybe."] = "%s nimmt eventuell teil.";
-$a->strings["and"] = "und";
-$a->strings[", and %d other people"] = " und %d andere";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
-$a->strings["%s like this."] = "%s mögen das.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
-$a->strings["%s don't like this."] = "%s mögen dies nicht.";
-$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span %1\$s>%2\$d Personen</span> nehmen teil";
-$a->strings["%s attend."] = "%s nehmen teil.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span %1\$s>%2\$d Personen</span> nehmen nicht teil";
-$a->strings["%s don't attend."] = "%s nehmen nicht teil.";
-$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span %1\$s>%2\$d Personen</span> nehmen eventuell teil";
-$a->strings["%s anttend maybe."] = "%s  nehmen vielleicht teil.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
-$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
-$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
-$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Save to Folder:"] = "In diesem Ordner speichern:";
-$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?";
-$a->strings["Delete item(s)?"] = "Einträge löschen?";
-$a->strings["Share"] = "Teilen";
-$a->strings["Upload photo"] = "Foto hochladen";
-$a->strings["upload photo"] = "Bild hochladen";
-$a->strings["Attach file"] = "Datei anhängen";
-$a->strings["attach file"] = "Datei anhängen";
-$a->strings["Insert web link"] = "Einen Link einfügen";
-$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["Set title"] = "Titel setzen";
-$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
-$a->strings["Permission settings"] = "Berechtigungseinstellungen";
-$a->strings["permissions"] = "Zugriffsrechte";
-$a->strings["Public post"] = "Öffentlicher Beitrag";
-$a->strings["Preview"] = "Vorschau";
-$a->strings["Cancel"] = "Abbrechen";
-$a->strings["Post to Groups"] = "Poste an Gruppe";
-$a->strings["Post to Contacts"] = "Poste an Kontakte";
-$a->strings["Private post"] = "Privater Beitrag";
-$a->strings["Message"] = "Nachricht";
-$a->strings["Browser"] = "Browser";
-$a->strings["View all"] = "Zeige alle";
-$a->strings["Like"] = array(
-       0 => "mag ich",
-       1 => "Mag ich",
-);
-$a->strings["Dislike"] = array(
-       0 => "mag ich nicht",
-       1 => "Mag ich nicht",
-);
-$a->strings["Not Attending"] = array(
-       0 => "Nicht teilnehmend ",
-       1 => "Nicht teilnehmend",
-);
 $a->strings["Miscellaneous"] = "Verschiedenes";
 $a->strings["Birthday:"] = "Geburtstag:";
 $a->strings["Age: "] = "Alter: ";
@@ -401,15 +255,11 @@ $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["\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["%s\\'s birthday"] = "%ss Geburtstag";
 $a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
 $a->strings["Thank You,"] = "Danke,";
 $a->strings["%s Administrator"] = "der Administrator von %s";
 $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
+$a->strings["noreply"] = "noreply";
 $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.";
@@ -524,87 +374,26 @@ $a->strings["The profile address specified belongs to a network which has been d
 $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["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["Atom feed"] = "Atom-Feed";
-$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["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["About:"] = "Über:";
-$a->strings["XMPP:"] = "XMPP:";
-$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["Profile"] = "Profil";
-$a->strings["Full Name:"] = "Kompletter Name:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
-$a->strings["Hometown:"] = "Heimatort:";
-$a->strings["Tags:"] = "Tags:";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Likes:"] = "Likes:";
-$a->strings["Dislikes:"] = "Dislikes:";
-$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["Forums:"] = "Foren:";
-$a->strings["Basic"] = "Allgemein";
-$a->strings["Advanced"] = "Erweitert";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events"] = "Veranstaltungen";
-$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["Contacts"] = "Kontakte";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
-$a->strings["Yes"] = "Ja";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Archives"] = "Archiv";
 $a->strings["Nothing new here"] = "Keine Neuigkeiten";
 $a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
 $a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, content";
 $a->strings["Logout"] = "Abmelden";
 $a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Status"] = "Status";
 $a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Profile"] = "Profil";
 $a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Photos"] = "Bilder";
 $a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Videos"] = "Videos";
 $a->strings["Your videos"] = "Deine Videos";
+$a->strings["Events"] = "Veranstaltungen";
 $a->strings["Your events"] = "Deine Ereignisse";
 $a->strings["Personal notes"] = "Persönliche Notizen";
 $a->strings["Your personal notes"] = "Deine persönlichen Notizen";
 $a->strings["Login"] = "Anmeldung";
 $a->strings["Sign in"] = "Anmelden";
+$a->strings["Home"] = "Pinnwand";
 $a->strings["Home Page"] = "Homepage";
 $a->strings["Register"] = "Registrieren";
 $a->strings["Create an account"] = "Nutzerkonto erstellen";
@@ -616,16 +405,20 @@ $a->strings["Search"] = "Suche";
 $a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
 $a->strings["Full Text"] = "Volltext";
 $a->strings["Tags"] = "Tags";
+$a->strings["Contacts"] = "Kontakte";
 $a->strings["Community"] = "Gemeinschaft";
 $a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
 $a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
 $a->strings["Directory"] = "Verzeichnis";
 $a->strings["People directory"] = "Nutzerverzeichnis";
 $a->strings["Information"] = "Information";
 $a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
+$a->strings["Network"] = "Netzwerk";
 $a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
 $a->strings["Network Reset"] = "Netzwerk zurücksetzen";
 $a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
+$a->strings["Introductions"] = "Kontaktanfragen";
 $a->strings["Friend Requests"] = "Kontaktanfragen";
 $a->strings["Notifications"] = "Benachrichtigungen";
 $a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
@@ -642,6 +435,7 @@ $a->strings["Delegations"] = "Delegationen";
 $a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
 $a->strings["Settings"] = "Einstellungen";
 $a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Profiles"] = "Profile";
 $a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
 $a->strings["Manage/edit friends and contacts"] = " Kontakte verwalten/editieren";
 $a->strings["Admin"] = "Administration";
@@ -655,6 +449,195 @@ $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["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["View Contact"] = "Kontakt anzeigen";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["Poke"] = "Anstupsen";
+$a->strings["Organisation"] = "Organisation";
+$a->strings["News"] = "Nachrichten";
+$a->strings["Forum"] = "Forum";
+$a->strings["System"] = "System";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$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 attending %s's event"] = "%s nimmt an %s's Event teil";
+$a->strings["%s is not attending %s's event"] = "%s nimmt nicht an %s's Event teil";
+$a->strings["%s may attend %s's event"] = "%s nimmt eventuell an %s's Event teil";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$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["%1\$s attends %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil.";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s nimmt nicht an %2\$ss %3\$s teil.";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s nimmt eventuell an %2\$ss %3\$s teil.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
+$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["post/item"] = "Nachricht/Beitrag";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
+$a->strings["Likes"] = "Likes";
+$a->strings["Dislikes"] = "Dislikes";
+$a->strings["Attending"] = array(
+       0 => "Teilnehmend",
+       1 => "Teilnehmend",
+);
+$a->strings["Not attending"] = "Nicht teilnehmend";
+$a->strings["Might attend"] = "Eventuell teilnehmend";
+$a->strings["Select"] = "Auswählen";
+$a->strings["Delete"] = "Löschen";
+$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
+$a->strings["Categories:"] = "Kategorien:";
+$a->strings["Filed under:"] = "Abgelegt unter:";
+$a->strings["%s from %s"] = "%s von %s";
+$a->strings["View in context"] = "Im Zusammenhang betrachten";
+$a->strings["Please wait"] = "Bitte warten";
+$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["%s likes this."] = "%s mag das.";
+$a->strings["%s doesn't like this."] = "%s mag das nicht.";
+$a->strings["%s attends."] = "%s nimmt teil.";
+$a->strings["%s doesn't attend."] = "%s nimmt nicht teil.";
+$a->strings["%s attends maybe."] = "%s nimmt eventuell teil.";
+$a->strings["and"] = "und";
+$a->strings[", and %d other people"] = " und %d andere";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
+$a->strings["%s like this."] = "%s mögen das.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
+$a->strings["%s don't like this."] = "%s mögen dies nicht.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span %1\$s>%2\$d Personen</span> nehmen teil";
+$a->strings["%s attend."] = "%s nehmen teil.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span %1\$s>%2\$d Personen</span> nehmen nicht teil";
+$a->strings["%s don't attend."] = "%s nehmen nicht teil.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span %1\$s>%2\$d Personen</span> nehmen eventuell teil";
+$a->strings["%s anttend maybe."] = "%s  nehmen vielleicht teil.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
+$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
+$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
+$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
+$a->strings["Tag term:"] = "Tag:";
+$a->strings["Save to Folder:"] = "In diesem Ordner speichern:";
+$a->strings["Where are you right now?"] = "Wo hältst Du Dich jetzt gerade auf?";
+$a->strings["Delete item(s)?"] = "Einträge löschen?";
+$a->strings["Share"] = "Teilen";
+$a->strings["Upload photo"] = "Foto hochladen";
+$a->strings["upload photo"] = "Bild hochladen";
+$a->strings["Attach file"] = "Datei anhängen";
+$a->strings["attach file"] = "Datei anhängen";
+$a->strings["Insert web link"] = "Einen Link einfügen";
+$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["Set title"] = "Titel setzen";
+$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
+$a->strings["Permission settings"] = "Berechtigungseinstellungen";
+$a->strings["permissions"] = "Zugriffsrechte";
+$a->strings["Public post"] = "Öffentlicher Beitrag";
+$a->strings["Preview"] = "Vorschau";
+$a->strings["Cancel"] = "Abbrechen";
+$a->strings["Post to Groups"] = "Poste an Gruppe";
+$a->strings["Post to Contacts"] = "Poste an Kontakte";
+$a->strings["Private post"] = "Privater Beitrag";
+$a->strings["Message"] = "Nachricht";
+$a->strings["Browser"] = "Browser";
+$a->strings["View all"] = "Zeige alle";
+$a->strings["Like"] = array(
+       0 => "mag ich",
+       1 => "Mag ich",
+);
+$a->strings["Dislike"] = array(
+       0 => "mag ich nicht",
+       1 => "Mag ich nicht",
+);
+$a->strings["Not Attending"] = array(
+       0 => "Nicht teilnehmend ",
+       1 => "Nicht teilnehmend",
+);
+$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["(no subject)"] = "(kein Betreff)";
+$a->strings["%s\\'s birthday"] = "%ss Geburtstag";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$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["Atom feed"] = "Atom-Feed";
+$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["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Über:";
+$a->strings["XMPP:"] = "XMPP:";
+$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["Full Name:"] = "Kompletter Name:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
+$a->strings["Hometown:"] = "Heimatort:";
+$a->strings["Tags:"] = "Tags:";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
+$a->strings["Likes:"] = "Likes:";
+$a->strings["Dislikes:"] = "Dislikes:";
+$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["Forums:"] = "Foren:";
+$a->strings["Basic"] = "Allgemein";
+$a->strings["Advanced"] = "Erweitert";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["Item not found."] = "Beitrag nicht gefunden.";
+$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
+$a->strings["Yes"] = "Ja";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["Archives"] = "Archiv";
+$a->strings["view full size"] = "Volle Größe anzeigen";
 $a->strings["newer"] = "neuer";
 $a->strings["older"] = "älter";
 $a->strings["prev"] = "vorige";
@@ -714,11 +697,30 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "Beitrag";
 $a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Organisation"] = "Organisation";
-$a->strings["News"] = "Nachrichten";
-$a->strings["Forum"] = "Forum";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$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 \"_\"."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen.";
+$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["default"] = "Standard";
+$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["Profile Photos"] = "Profilbilder";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde muss noch vom Admin des Knotens geprüft werden.";
+$a->strings["Registration at %s"] = "Registrierung als %s";
+$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["Registration details for %s"] = "Details der Registration von %s";
 $a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
 $a->strings["Access denied."] = "Zugriff verweigert.";
 $a->strings["Welcome to %s"] = "Willkommen zu %s";
@@ -763,10 +765,6 @@ $a->strings["No profile"] = "Kein Profil";
 $a->strings["Help:"] = "Hilfe:";
 $a->strings["Not Found"] = "Nicht gefunden";
 $a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["Invalid request."] = "Ungültige Anfrage";
-$a->strings["Image exceeds size limit of %s"] = "Bildgröße überschreitet das Limit von %s";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
 $a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
 $a->strings["Visible to:"] = "Sichtbar für:";
 $a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
@@ -820,10 +818,6 @@ $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["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 %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
 $a->strings["Resubscribing to OStatus contacts"] = "Erneuern der OStatus Abonements";
 $a->strings["Error"] = "Fehler";
 $a->strings["Done"] = "Erledigt";
@@ -1098,6 +1092,8 @@ $a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, ab
 $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 %s"] = "Bildgröße überschreitet das Limit von %s";
+$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";
@@ -1108,6 +1104,7 @@ $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["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.";
@@ -1211,6 +1208,207 @@ $a->strings["Work/employment"] = "Arbeit/Anstellung";
 $a->strings["School/education"] = "Schule/Ausbildung";
 $a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
 $a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["View"] = "Ansehen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["list"] = "Liste";
+$a->strings["User not found"] = "Nutzer nicht gefunden";
+$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
+$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
+$a->strings["calendar"] = "Kalender";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Common Friends"] = "Gemeinsame Kontakte";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["%d contact edited."] = array(
+       0 => "%d Kontakt bearbeitet.",
+       1 => "%d Kontakte bearbeitet.",
+);
+$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["Drop contact"] = "Kontakt löschen";
+$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["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["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$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["Contact"] = "Kontakt: ";
+$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["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["Last update:"] = "Letzte Aktualisierung: ";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$a->strings["Unblock"] = "Entsperren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Currently blocked"] = "Derzeit geblockt";
+$a->strings["Currently ignored"] = "Derzeit ignoriert";
+$a->strings["Currently archived"] = "Momentan archiviert";
+$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["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["Actions"] = "Aktionen";
+$a->strings["Contact Settings"] = "Kontakteinstellungen";
+$a->strings["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
+$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["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Update"] = "Aktualisierungen";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Batch Actions"] = "Stapelverarbeitung";
+$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$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["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Results for:"] = "Ergebnisse für:";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["People Search - %s"] = "Personensuche - %s";
+$a->strings["Forum Search - %s"] = "Forensuche - %s";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$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["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["Database already in use."] = "Die Datenbank wird bereits verwendet.";
+$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["System Language:"] = "Systemsprache:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
+$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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</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["mcrypt PHP module"] = "PHP mcrypt Modul";
+$a->strings["XML PHP module"] = "XML PHP Modul";
+$a->strings["iconv module"] = "iconv module";
+$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["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
+$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
+$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
+$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
+$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
+$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich 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["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
+$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["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$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["Profile Match"] = "Profilübereinstimmungen";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
+$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["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
 $a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
 $a->strings["Site"] = "Seite";
 $a->strings["Users"] = "Nutzer";
@@ -1227,6 +1425,7 @@ $a->strings["check webfinger"] = "Webfinger überprüfen";
 $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["unknown"] = "Unbekannt";
 $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt.";
 $a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "Die Funktion um <em>Automatisch ein Kontaktverzeichnis erstellen</em> ist nicht aktiv. Es wird die hier angezeigten Daten verbessern.";
 $a->strings["Administration"] = "Administration";
@@ -1237,6 +1436,8 @@ $a->strings["Recipient Profile"] = "Empfänger Profil";
 $a->strings["Created"] = "Erstellt";
 $a->strings["Last Tried"] = "Zuletzt versucht";
 $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Auf dieser Seite werden die in der Warteschlange eingereihten Beiträge aufgelistet. Bei diesen Beiträgen schlug die erste Zustellung fehl. Es wird später wiederholt versucht die Beiträge zuzustellen, bis sie schließlich gelöscht werden.";
+$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "Deine DB enthält einige Tabellen die noch auf MyISAM laufen. Du solltest den Engine-Type auf InnoDB umstellen, da Friendica in Zukunft einige InnoDB Features nutzen wird. Eine Anleitung zur Umstellung kannst du <a href=\"%s\">hier</a> finden. Außerdem kannst du das <tt>convert_innodb.sql</tt> Skript verwenden, das du im <tt>/util</tt> Verzeichnis deiner Friendica Installation findest.";
+$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Du verwendets eine MySQL Version die nicht alle Features unterstützt die Friendica verwendet. Wir empfehlen dir einen Wechsel auf MariaDB, falls dies möglich ist.";
 $a->strings["Normal Account"] = "Normales Konto";
 $a->strings["Soapbox Account"] = "Marktschreier-Konto";
 $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
@@ -1256,9 +1457,7 @@ $a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für
 $a->strings["No community page"] = "Keine Gemeinschaftsseite";
 $a->strings["Public postings from users of this site"] = "Öffentliche Beiträge von Nutzer_innen dieser Seite";
 $a->strings["Global community page"] = "Globale Gemeinschaftsseite";
-$a->strings["Never"] = "Niemals";
 $a->strings["At post arrival"] = "Beim Empfang von Nachrichten";
-$a->strings["Disabled"] = "Deaktiviert";
 $a->strings["Users, Global Contacts"] = "Nutzer, globale Kontakte";
 $a->strings["Users, Global Contacts/fallback"] = "Nutzer, globale Kontakte / Fallback";
 $a->strings["One month"] = "ein Monat";
@@ -1469,9 +1668,8 @@ $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf
 $a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
 $a->strings["Request date"] = "Anfragedatum";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
+$a->strings["Note from the user"] = "Hinweis vom Nutzer";
 $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";
@@ -1511,194 +1709,6 @@ $a->strings["Off"] = "Aus";
 $a->strings["On"] = "An";
 $a->strings["Lock feature %s"] = "Feature festlegen: %s";
 $a->strings["Manage Additional Features"] = "Zusätzliche Features Verwalten";
-$a->strings["No friends to display."] = "Keine Kontakte zum Anzeigen.";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["View"] = "Ansehen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["list"] = "Liste";
-$a->strings["User not found"] = "Nutzer nicht gefunden";
-$a->strings["This calendar format is not supported"] = "Dieses Kalenderformat wird nicht unterstützt.";
-$a->strings["No exportable data found"] = "Keine exportierbaren Daten gefunden";
-$a->strings["calendar"] = "Kalender";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Common Friends"] = "Gemeinsame Kontakte";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet.",
-);
-$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["Drop contact"] = "Kontakt löschen";
-$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["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Contact"] = "Kontakt: ";
-$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["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["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$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["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["Actions"] = "Aktionen";
-$a->strings["Contact Settings"] = "Kontakteinstellungen";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Kontakte vorschlagen";
-$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["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Batch Actions"] = "Stapelverarbeitung";
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["View all common friends"] = "Alle Kontakte anzeigen";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$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["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
-$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Results for:"] = "Ergebnisse für:";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["People Search - %s"] = "Personensuche - %s";
-$a->strings["Forum Search - %s"] = "Forensuche - %s";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["Event can not end before it has started."] = "Die Veranstaltung kann nicht enden bevor sie beginnt.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Starting date and Title are required."] = "Anfangszeitpunkt und Titel werden benötigt";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$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["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["Database already in use."] = "Die Datenbank wird bereits verwendet.";
-$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["System Language:"] = "Systemsprache:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Wähle die Standardsprache für deine Friendica-Installations-Oberfläche und den E-Mail-Versand";
-$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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Wenn Du keine Kommandozeilen-Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</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["mcrypt PHP module"] = "PHP mcrypt Modul";
-$a->strings["XML PHP module"] = "XML PHP Modul";
-$a->strings["iconv module"] = "iconv module";
-$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["Error: mcrypt PHP module required but not installed."] = "Fehler: Das mcrypt Modul von PHP ist nicht installiert";
-$a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Das iconv-Modul von PHP ist nicht installiert.";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Wenn du das Modul \"php_cli\" benutzt dann versichere dich, daß das mcrypt Modul in seiner Konfigurationsdatei aktiviert ist. ";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Die Funktion mcrypt_create_iv() ist nicht festgelegt. Dies ist notwendig um den RINO2-Encryption-Layer zu aktivieren.";
-$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() function";
-$a->strings["Error, XML PHP module required but not installed."] = "Fehler: XML PHP Modul erforderlich 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["ImageMagick PHP extension is installed"] = "ImageMagick PHP Erweiterung ist installiert";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick unterstützt GIF";
-$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["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.";
@@ -1706,15 +1716,11 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
 $a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$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["Profile Match"] = "Profilübereinstimmungen";
-$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["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem Netzwerk das keine nicht öffentlichen Beiträge empfangen kann.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus Netzwerken die keine nicht-öffentlichen Beiträge empfangen können.",
 );
-$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["Messages in this group won't be send to these receivers."] = "Beiträge in dieser Gruppe werden deshalb nicht an diese Personen zugestellt werden.";
 $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["Commented Order"] = "Neueste Kommentare";
@@ -1777,7 +1783,6 @@ $a->strings["View Album"] = "Album betrachten";
 $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["Tips for New Members"] = "Tipps für neue Nutzer";
 $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["Registration successful."] = "Registrierung erfolgreich.";
@@ -1787,6 +1792,8 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your
 $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["Note for the admin"] = "Hinweis für den Admin";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Hinterlasse eine Nachricht an den Admin, warum du einen Account auf dieser Instanz haben möchtest.";
 $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, real or real-looking): "] = "Dein vollständiger Name (z.B. Hans Mustermann, echt oder echt erscheinend):";
@@ -1797,16 +1804,6 @@ $a->strings["Confirm:"] = "Bestätigen:";
 $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 your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
-$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["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
-$a->strings["Delete Video"] = "Video Löschen";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["No contacts."] = "Keine Kontakte.";
 $a->strings["Display"] = "Anzeige";
 $a->strings["Social Networks"] = "Soziale Netzwerke";
 $a->strings["Connected apps"] = "Verbundene Programme";
@@ -1872,6 +1869,8 @@ $a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
 $a->strings["Display Settings"] = "Anzeige-Einstellungen";
 $a->strings["Display Theme:"] = "Theme:";
 $a->strings["Mobile Theme:"] = "Mobiles Theme";
+$a->strings["Suppress warning of insecure networks"] = "Warnung wegen unsicheren Netzwerken unterdrücken";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Soll das System Warnungen unterdrücken, die angezeigt werden weil von dir eingerichtete Kontakt-Gruppen Accounts aus Netzwerken beinhalten, die keine nicht öffentlichen Beiträge empfangen können.";
 $a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
 $a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimum sind 10 Sekeunden. Gib -1 ein um abzuschalten.";
 $a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
@@ -1976,6 +1975,17 @@ $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["Do you really want to delete this video?"] = "Möchtest Du dieses Video wirklich löschen?";
+$a->strings["Delete Video"] = "Video Löschen";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$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 %s"] = "Die Datei ist größer als das erlaubte Limit von %s";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
 $a->strings["via"] = "via";
 $a->strings["Repeat the image"] = "Bild wiederholen";
 $a->strings["Will repeat your image to fill the background."] = "Wiederholt das Bild um den Hintergrund auszufüllen.";
@@ -1997,17 +2007,12 @@ $a->strings["Content background transparency"] = "Transparanz des Hintergrunds v
 $a->strings["Set the background image"] = "Hintergrundbild festlegen";
 $a->strings["Guest"] = "Gast";
 $a->strings["Visitor"] = "Besucher";
-$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["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 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["Community Profiles"] = "Community-Profile";
 $a->strings["Last users"] = "Letzte Nutzer";
 $a->strings["Find Friends"] = "Kontakte finden";
@@ -2018,18 +2023,6 @@ $a->strings["Comma separated list of helper forums"] = "Komma-Separierte Liste d
 $a->strings["Set style"] = "Stil auswählen";
 $a->strings["Community Pages"] = "Foren";
 $a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Your contacts"] = "Deine Kontakte";
-$a->strings["Your personal photos"] = "Deine privaten Fotos";
-$a->strings["Last likes"] = "Zuletzt gemocht";
-$a->strings["Last photos"] = "Letzte Fotos";
-$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["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
-$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["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
 $a->strings["easterbunny"] = "easterbunny";
index ebbee4173060f49c9e7a4ffeb214d1bc925ecd17..0f7d5df6ed0f4f3536c88310b359dfca4c5ef9cd 100644 (file)
@@ -35,8 +35,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-11-10 15:43+0100\n"
-"PO-Revision-Date: 2016-11-16 16:33+0000\n"
+"POT-Creation-Date: 2016-11-20 21:45+0100\n"
+"PO-Revision-Date: 2016-11-21 13:20+0000\n"
 "Last-Translator: Albert\n"
 "Language-Team: Spanish (http://www.transifex.com/Friendica/friendica/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -78,8 +78,8 @@ msgstr "Buscar personas"
 msgid "Enter name or interest"
 msgstr "Introduzce nombre o intereses"
 
-#: include/contact_widgets.php:32 include/conversation.php:981
-#: include/Contact.php:347 mod/follow.php:103 mod/allfriends.php:66
+#: include/contact_widgets.php:32 include/Contact.php:375
+#: include/conversation.php:981 mod/follow.php:103 mod/allfriends.php:66
 #: mod/contacts.php:602 mod/dirfind.php:204 mod/match.php:72
 #: mod/suggest.php:83
 msgid "Connect/Follow"
@@ -94,12 +94,11 @@ msgid "Find"
 msgstr "Buscar"
 
 #: include/contact_widgets.php:35 mod/suggest.php:114
-#: view/theme/vier/theme.php:203 view/theme/diabook/theme.php:527
+#: view/theme/vier/theme.php:203
 msgid "Friend Suggestions"
 msgstr "Sugerencias de amigos"
 
 #: include/contact_widgets.php:36 view/theme/vier/theme.php:202
-#: view/theme/diabook/theme.php:526
 msgid "Similar Interests"
 msgstr "Intereses similares"
 
@@ -108,7 +107,6 @@ msgid "Random Profile"
 msgstr "Perfil aleatorio"
 
 #: include/contact_widgets.php:38 view/theme/vier/theme.php:204
-#: view/theme/diabook/theme.php:528
 msgid "Invite Friends"
 msgstr "Invitar amigos"
 
@@ -140,8 +138,8 @@ msgstr[0] "%d contacto en común"
 msgstr[1] "%d contactos en común"
 
 #: include/contact_widgets.php:242 include/ForumManager.php:119
-#: include/items.php:2188 mod/content.php:624 object/Item.php:432
-#: view/theme/vier/theme.php:260 boot.php:970
+#: include/items.php:2223 mod/content.php:624 object/Item.php:432
+#: view/theme/vier/theme.php:260 boot.php:971
 msgid "show more"
 msgstr "ver más"
 
@@ -478,133 +476,6 @@ msgstr "Contactos sin grupo"
 msgid "add"
 msgstr "añadir"
 
-#: include/user.php:39 mod/settings.php:371
-msgid "Passwords do not match. Password unchanged."
-msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada."
-
-#: include/user.php:48
-msgid "An invitation is required."
-msgstr "Se necesita invitación."
-
-#: include/user.php:53
-msgid "Invitation could not be verified."
-msgstr "No se puede verificar la invitación."
-
-#: include/user.php:61
-msgid "Invalid OpenID url"
-msgstr "Dirección OpenID no válida"
-
-#: include/user.php:82
-msgid "Please enter the required information."
-msgstr "Por favor, introduce la información necesaria."
-
-#: include/user.php:96
-msgid "Please use a shorter name."
-msgstr "Por favor, usa un nombre más corto."
-
-#: include/user.php:98
-msgid "Name too short."
-msgstr "El nombre es demasiado corto."
-
-#: include/user.php:113
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "No parece que ese sea tu nombre completo."
-
-#: include/user.php:118
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio."
-
-#: include/user.php:121
-msgid "Not a valid email address."
-msgstr "No es una dirección de correo electrónico válida."
-
-#: include/user.php:134
-msgid "Cannot use that email."
-msgstr "No se puede utilizar este correo electrónico."
-
-#: include/user.php:140
-msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
-msgstr "El apodo solo puede contener  \"a-z\", \"0-9\" y \"_\"."
-
-#: include/user.php:147 include/user.php:245
-msgid "Nickname is already registered. Please choose another."
-msgstr "Apodo ya registrado. Por favor, elije otro."
-
-#: include/user.php:157
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."
-
-#: include/user.php:173
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado."
-
-#: include/user.php:231
-msgid "An error occurred during registration. Please try again."
-msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."
-
-#: include/user.php:256 view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "predeterminado"
-
-#: include/user.php:266
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."
-
-#: include/user.php:345 include/user.php:352 include/user.php:359
-#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
-#: mod/profile_photo.php:210 mod/profile_photo.php:302
-#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
-#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
-#: mod/photos.php:1819 view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Foto del perfil"
-
-#: include/user.php:387
-#, 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\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t"
-
-#: include/user.php:391
-#, 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\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3$s\n\t\t\tNombre de la cuenta:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a  %2$s."
-
-#: include/user.php:423 mod/admin.php:1184
-#, php-format
-msgid "Registration details for %s"
-msgstr "Detalles de registro para %s"
-
 #: include/contact_selectors.php:32
 msgid "Unknown | Not categorised"
 msgstr "Desconocido | No clasificado"
@@ -629,19 +500,19 @@ msgstr "OK, probablemente inofensivo"
 msgid "Reputable, has my trust"
 msgstr "Buena reputación, tiene mi confianza"
 
-#: include/contact_selectors.php:56 mod/admin.php:862
+#: include/contact_selectors.php:56 mod/admin.php:887
 msgid "Frequently"
 msgstr "Frequentemente"
 
-#: include/contact_selectors.php:57 mod/admin.php:863
+#: include/contact_selectors.php:57 mod/admin.php:888
 msgid "Hourly"
 msgstr "Cada hora"
 
-#: include/contact_selectors.php:58 mod/admin.php:864
+#: include/contact_selectors.php:58 mod/admin.php:889
 msgid "Twice daily"
 msgstr "Dos veces al día"
 
-#: include/contact_selectors.php:59 mod/admin.php:865
+#: include/contact_selectors.php:59 mod/admin.php:890
 msgid "Daily"
 msgstr "Diariamente"
 
@@ -666,12 +537,12 @@ msgid "RSS/Atom"
 msgstr "RSS/Atom"
 
 #: include/contact_selectors.php:79 include/contact_selectors.php:86
-#: mod/admin.php:1367 mod/admin.php:1380 mod/admin.php:1392 mod/admin.php:1410
+#: mod/admin.php:1392 mod/admin.php:1405 mod/admin.php:1418 mod/admin.php:1436
 msgid "Email"
 msgstr "Correo electrónico"
 
 #: include/contact_selectors.php:80 mod/dfrn_request.php:869
-#: mod/settings.php:840
+#: mod/settings.php:842
 msgid "Diaspora"
 msgstr "Diaspora*"
 
@@ -723,10 +594,6 @@ msgstr "App.net"
 msgid "Hubzilla/Redmatrix"
 msgstr "Hubzilla/Redmatrix"
 
-#: include/network.php:595
-msgid "view full size"
-msgstr "Ver a tamaño completo"
-
 #: include/acl_selectors.php:327
 msgid "Post to Email"
 msgstr "Publicar mediante correo electrónico"
@@ -736,7 +603,7 @@ msgstr "Publicar mediante correo electrónico"
 msgid "Connectors disabled, since \"%s\" is enabled."
 msgstr "Conectores deshabilitados, ya que \"%s\" es habilitado."
 
-#: include/acl_selectors.php:333 mod/settings.php:1176
+#: include/acl_selectors.php:333 mod/settings.php:1181
 msgid "Hide your profile details from unknown viewers?"
 msgstr "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?"
 
@@ -745,12 +612,10 @@ msgid "Visible to everybody"
 msgstr "Visible para cualquiera"
 
 #: include/acl_selectors.php:339 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
 msgid "show"
 msgstr "mostrar"
 
 #: include/acl_selectors.php:340 view/theme/vier/config.php:103
-#: view/theme/diabook/theme.php:621 view/theme/diabook/config.php:142
 msgid "don't show"
 msgstr "no mostrar"
 
@@ -773,25 +638,23 @@ msgstr "Cerrado"
 
 #: include/like.php:163 include/conversation.php:130
 #: include/conversation.php:266 include/text.php:1808 mod/subthread.php:87
-#: mod/tagger.php:62 view/theme/diabook/theme.php:471
+#: mod/tagger.php:62
 msgid "photo"
 msgstr "foto"
 
-#: include/like.php:163 include/diaspora.php:1402 include/conversation.php:125
+#: include/like.php:163 include/conversation.php:125
 #: include/conversation.php:134 include/conversation.php:261
-#: include/conversation.php:270 mod/subthread.php:87 mod/tagger.php:62
-#: view/theme/diabook/theme.php:466 view/theme/diabook/theme.php:475
+#: include/conversation.php:270 include/diaspora.php:1406 mod/subthread.php:87
+#: mod/tagger.php:62
 msgid "status"
 msgstr "estado"
 
 #: include/like.php:165 include/conversation.php:122
 #: include/conversation.php:258 include/text.php:1806
-#: view/theme/diabook/theme.php:463
 msgid "event"
 msgstr "evento"
 
-#: include/like.php:182 include/diaspora.php:1398 include/conversation.php:141
-#: view/theme/diabook/theme.php:480
+#: include/like.php:182 include/conversation.php:141 include/diaspora.php:1402
 #, php-format
 msgid "%1$s likes %2$s's %3$s"
 msgstr "A %1$s le gusta %3$s de %2$s"
@@ -820,9 +683,9 @@ msgstr "%1$s puede que atienda %2$s's %3$s"
 msgid "[no subject]"
 msgstr "[sin asunto]"
 
-#: include/message.php:145 include/Photo.php:1045 include/Photo.php:1061
-#: include/Photo.php:1069 include/Photo.php:1094 mod/wall_upload.php:218
-#: mod/wall_upload.php:232 mod/wall_upload.php:239 mod/item.php:477
+#: include/message.php:145 include/Photo.php:1040 include/Photo.php:1056
+#: include/Photo.php:1064 include/Photo.php:1089 mod/item.php:477
+#: mod/wall_upload.php:218 mod/wall_upload.php:232 mod/wall_upload.php:239
 msgid "Wall Photos"
 msgstr "Foto del Muro"
 
@@ -874,89 +737,6 @@ msgstr[1] "%d contactos no importado"
 msgid "Done. You can now login with your username and password"
 msgstr "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña."
 
-#: include/NotificationsManager.php:153
-msgid "System"
-msgstr "Sistema"
-
-#: include/NotificationsManager.php:160 include/nav.php:158 mod/admin.php:402
-#: view/theme/frio/theme.php:253
-msgid "Network"
-msgstr "Red"
-
-#: include/NotificationsManager.php:167 mod/profiles.php:703
-#: mod/network.php:845
-msgid "Personal"
-msgstr "Personal"
-
-#: include/NotificationsManager.php:174 include/nav.php:105
-#: include/nav.php:161 view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Inicio"
-
-#: include/NotificationsManager.php:181 include/nav.php:166
-msgid "Introductions"
-msgstr "Presentaciones"
-
-#: include/NotificationsManager.php:234 include/NotificationsManager.php:245
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s comentó la publicación de %s"
-
-#: include/NotificationsManager.php:244
-#, php-format
-msgid "%s created a new post"
-msgstr "%s creó una nueva publicación"
-
-#: include/NotificationsManager.php:258
-#, php-format
-msgid "%s liked %s's post"
-msgstr "A %s le gusta la publicación de %s"
-
-#: include/NotificationsManager.php:269
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "A %s no le gusta la publicación de %s"
-
-#: include/NotificationsManager.php:280
-#, php-format
-msgid "%s is attending %s's event"
-msgstr "%s está asistiendo al evento %s's"
-
-#: include/NotificationsManager.php:291
-#, php-format
-msgid "%s is not attending %s's event"
-msgstr "%s no está asistiendo al evento %s's"
-
-#: include/NotificationsManager.php:302
-#, php-format
-msgid "%s may attend %s's event"
-msgstr "%s podría asistir al evento %s's"
-
-#: include/NotificationsManager.php:317
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s es ahora es amigo de %s"
-
-#: include/NotificationsManager.php:750
-msgid "Friend Suggestion"
-msgstr "Propuestas de amistad"
-
-#: include/NotificationsManager.php:783
-msgid "Friend/Connect Request"
-msgstr "Solicitud de Amistad/Conexión"
-
-#: include/NotificationsManager.php:783
-msgid "New Follower"
-msgstr "Nuevo seguidor"
-
-#: include/diaspora.php:1954
-msgid "Sharing notification from Diaspora network"
-msgstr "Compartir notificaciones con la red Diaspora*"
-
-#: include/diaspora.php:2854
-msgid "Attachments:"
-msgstr "Archivos adjuntos:"
-
 #: include/features.php:63
 msgid "General Features"
 msgstr "Opciones generales"
@@ -1160,29 +940,6 @@ msgstr "Ajustes avanzados del perfil"
 msgid "Show visitors public community forums at the Advanced Profile Page"
 msgstr "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles."
 
-#: include/delivery.php:439
-msgid "(no subject)"
-msgstr "(sin asunto)"
-
-#: include/delivery.php:450 include/enotify.php:43
-msgid "noreply"
-msgstr "no responder"
-
-#: include/api.php:1019
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."
-
-#: include/api.php:1039
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."
-
-#: include/api.php:1060
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."
-
 #: include/bbcode.php:348 include/bbcode.php:1055 include/bbcode.php:1056
 msgid "Image/photo"
 msgstr "Imagen/Foto"
@@ -1200,1663 +957,1784 @@ msgstr "$1 escribió:"
 msgid "Encrypted content"
 msgstr "Contenido cifrado"
 
-#: include/conversation.php:147
-#, php-format
-msgid "%1$s attends %2$s's %3$s"
-msgstr "%1$s atenderá %2$s's %3$s"
-
-#: include/conversation.php:150
-#, php-format
-msgid "%1$s doesn't attend %2$s's %3$s"
-msgstr "%1$s no atenderá %2$s's %3$s"
+#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
+msgid "Miscellaneous"
+msgstr "Varios"
 
-#: include/conversation.php:153
-#, php-format
-msgid "%1$s attends maybe %2$s's %3$s"
-msgstr "%1$s atenderá quizás %2$s's %3$s"
+#: include/datetime.php:183 include/identity.php:629
+msgid "Birthday:"
+msgstr "Fecha de nacimiento:"
 
-#: include/conversation.php:185 mod/dfrn_confirm.php:473
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ahora es amigo de %2$s"
+#: include/datetime.php:185 mod/profiles.php:728
+msgid "Age: "
+msgstr "Edad: "
 
-#: include/conversation.php:219
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s le dio un toque a %2$s"
+#: include/datetime.php:187
+msgid "YYYY-MM-DD or MM-DD"
+msgstr "YYYY-MM-DD o MM-DD"
 
-#: include/conversation.php:239 mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s está actualmente %2$s"
+#: include/datetime.php:341
+msgid "never"
+msgstr "nunca"
 
-#: include/conversation.php:278 mod/tagger.php:95
-#, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s"
+#: include/datetime.php:347
+msgid "less than a second ago"
+msgstr "hace menos de un segundo"
 
-#: include/conversation.php:303
-msgid "post/item"
-msgstr "publicación/tema"
-
-#: include/conversation.php:304
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s ha marcado %3$s de %2$s como Favorito"
-
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
-#: mod/photos.php:1607
-msgid "Likes"
-msgstr "Me gusta"
-
-#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
-#: mod/photos.php:1607
-msgid "Dislikes"
-msgstr "No me gusta"
-
-#: include/conversation.php:586 include/conversation.php:1477
-#: mod/content.php:373 mod/photos.php:1608
-msgid "Attending"
-msgid_plural "Attending"
-msgstr[0] "Atendiendo"
-msgstr[1] "Atendiendo"
-
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Not attending"
-msgstr "No atendiendo"
+#: include/datetime.php:350
+msgid "year"
+msgstr "año"
 
-#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
-msgid "Might attend"
-msgstr "Puede que atienda"
+#: include/datetime.php:350
+msgid "years"
+msgstr "años"
 
-#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
-#: mod/photos.php:1681 object/Item.php:133
-msgid "Select"
-msgstr "Seleccionar"
+#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
+#: mod/events.php:389
+msgid "month"
+msgstr "mes"
 
-#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
-#: mod/content.php:759 mod/admin.php:1384 mod/contacts.php:808
-#: mod/contacts.php:1016 mod/photos.php:1682 mod/settings.php:739
-#: object/Item.php:134
-msgid "Delete"
-msgstr "Eliminar"
+#: include/datetime.php:351
+msgid "months"
+msgstr "meses"
 
-#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
-#: mod/content.php:911 object/Item.php:367 object/Item.php:368
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Ver perfil de %s @ %s"
+#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
+#: mod/events.php:390
+msgid "week"
+msgstr "semana"
 
-#: include/conversation.php:765 object/Item.php:355
-msgid "Categories:"
-msgstr "Categorías:"
+#: include/datetime.php:352
+msgid "weeks"
+msgstr "semanas"
 
-#: include/conversation.php:766 object/Item.php:356
-msgid "Filed under:"
-msgstr "Archivado en:"
+#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
+#: mod/events.php:391
+msgid "day"
+msgstr "día"
 
-#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
-#: object/Item.php:381
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+#: include/datetime.php:353
+msgid "days"
+msgstr "días"
 
-#: include/conversation.php:789 mod/content.php:513
-msgid "View in context"
-msgstr "Verlo en contexto"
+#: include/datetime.php:354
+msgid "hour"
+msgstr "hora"
 
-#: include/conversation.php:791 include/conversation.php:1261
-#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
-#: mod/message.php:548 mod/content.php:515 mod/content.php:948
-#: mod/photos.php:1570 object/Item.php:406
-msgid "Please wait"
-msgstr "Por favor, espera"
+#: include/datetime.php:354
+msgid "hours"
+msgstr "horas"
 
-#: include/conversation.php:870
-msgid "remove"
-msgstr "eliminar"
+#: include/datetime.php:355
+msgid "minute"
+msgstr "minuto"
 
-#: include/conversation.php:874
-msgid "Delete Selected Items"
-msgstr "Eliminar el elemento seleccionado"
+#: include/datetime.php:355
+msgid "minutes"
+msgstr "minutos"
 
-#: include/conversation.php:966
-msgid "Follow Thread"
-msgstr "Seguir publicacion"
+#: include/datetime.php:356
+msgid "second"
+msgstr "segundo"
 
-#: include/conversation.php:967 include/Contact.php:390
-msgid "View Status"
-msgstr "Ver estado"
+#: include/datetime.php:356
+msgid "seconds"
+msgstr "segundos"
 
-#: include/conversation.php:968 include/conversation.php:984
-#: include/Contact.php:333 include/Contact.php:346 include/Contact.php:391
-#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
-#: mod/match.php:71 mod/suggest.php:82
-msgid "View Profile"
-msgstr "Ver perfil"
+#: include/datetime.php:365
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "hace %1$d %2$s"
 
-#: include/conversation.php:969 include/Contact.php:392
-msgid "View Photos"
-msgstr "Ver fotos"
+#: include/datetime.php:572
+#, php-format
+msgid "%s's birthday"
+msgstr "Cumpleaños de %s"
 
-#: include/conversation.php:970 include/Contact.php:393
-msgid "Network Posts"
-msgstr "Publicaciones en la red"
+#: include/datetime.php:573 include/dfrn.php:1108
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Feliz cumpleaños %s"
 
-#: include/conversation.php:971 include/Contact.php:394
-msgid "View Contact"
-msgstr "Ver contacto"
+#: include/enotify.php:24
+msgid "Friendica Notification"
+msgstr "Notificación de Friendica"
 
-#: include/conversation.php:972 include/Contact.php:396
-msgid "Send PM"
-msgstr "Enviar mensaje privado"
+#: include/enotify.php:27
+msgid "Thank You,"
+msgstr "Gracias,"
 
-#: include/conversation.php:976 include/Contact.php:397
-msgid "Poke"
-msgstr "Toque"
+#: include/enotify.php:30
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrador"
 
-#: include/conversation.php:1094
+#: include/enotify.php:32
 #, php-format
-msgid "%s likes this."
-msgstr "A %s le gusta esto."
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrador"
 
-#: include/conversation.php:1097
+#: include/enotify.php:43 include/delivery.php:457
+msgid "noreply"
+msgstr "no responder"
+
+#: include/enotify.php:70
 #, php-format
-msgid "%s doesn't like this."
-msgstr "A %s no le gusta esto."
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: include/conversation.php:1100
+#: include/enotify.php:83
 #, php-format
-msgid "%s attends."
-msgstr "%s atiende."
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notificación] Nuevo correo recibido de %s"
 
-#: include/conversation.php:1103
+#: include/enotify.php:85
 #, php-format
-msgid "%s doesn't attend."
-msgstr "%s no atenderá."
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s te ha enviado un mensaje privado desde %2$s."
 
-#: include/conversation.php:1106
+#: include/enotify.php:86
 #, php-format
-msgid "%s attends maybe."
-msgstr "%s quizás atenderá"
+msgid "%1$s sent you %2$s."
+msgstr "%1$s te ha enviado %2$s."
 
-#: include/conversation.php:1116
-msgid "and"
-msgstr "y"
+#: include/enotify.php:86
+msgid "a private message"
+msgstr "un mensaje privado"
 
-#: include/conversation.php:1122
+#: include/enotify.php:88
 #, php-format
-msgid ", and %d other people"
-msgstr " y a otras %d personas"
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Por favor, visita %s para ver y/o responder a tus mensajes privados."
 
-#: include/conversation.php:1131
+#: include/enotify.php:134
 #, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d personas</span> les gusta esto"
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s comentó en [url=%2$s]a %3$s[/url]"
 
-#: include/conversation.php:1132
+#: include/enotify.php:141
 #, php-format
-msgid "%s like this."
-msgstr "A %s le gusta esto."
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s comentó en [url=%2$s] %4$s de %3$s[/url]"
 
-#: include/conversation.php:1135
+#: include/enotify.php:149
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d personas</span> no les gusta esto"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s comentó en [url=%2$s] tu %3$s[/url]"
 
-#: include/conversation.php:1136
+#: include/enotify.php:159
 #, php-format
-msgid "%s don't like this."
-msgstr "A %s no le gusta esto."
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notificación] Comentario en la conversación de #%1$d por %2$s"
 
-#: include/conversation.php:1139
+#: include/enotify.php:161
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend"
-msgstr "<span  %1$s>%2$d personas</span> atienden"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s ha comentado en una conversación/elemento que sigues."
 
-#: include/conversation.php:1140
+#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
+#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
 #, php-format
-msgid "%s attend."
-msgstr "%s atiende."
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Por favor, visita %s para ver y/o responder a la conversación."
 
-#: include/conversation.php:1143
+#: include/enotify.php:171
 #, php-format
-msgid "<span  %1$s>%2$d people</span> don't attend"
-msgstr "<span  %1$s>%2$d personas</span>no atienden"
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notificación] %s publicó en tu muro"
 
-#: include/conversation.php:1144
+#: include/enotify.php:173
 #, php-format
-msgid "%s don't attend."
-msgstr "%s no atiende."
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s publicó en tu perfil de %2$s"
 
-#: include/conversation.php:1147
+#: include/enotify.php:174
 #, php-format
-msgid "<span  %1$s>%2$d people</span> attend maybe"
-msgstr "<span  %1$s>%2$d people</span> quizá asistan"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s publicó en [url=%2$s]tu muro[/url]"
 
-#: include/conversation.php:1148
+#: include/enotify.php:185
 #, php-format
-msgid "%s anttend maybe."
-msgstr "%s atiende quizás."
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notificación] %s te ha nombrado"
 
-#: include/conversation.php:1187 include/conversation.php:1205
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible para <strong>cualquiera</strong>"
+#: include/enotify.php:187
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s te ha nombrado en %2$s"
 
-#: include/conversation.php:1188 include/conversation.php:1206
-#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
-#: mod/message.php:299 mod/message.php:442 mod/message.php:450
-msgid "Please enter a link URL:"
-msgstr "Introduce la dirección del enlace:"
+#: include/enotify.php:188
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]te nombró[/url]."
 
-#: include/conversation.php:1189 include/conversation.php:1207
-msgid "Please enter a video link/URL:"
-msgstr "Por favor, introduce la URL/enlace del vídeo:"
+#: include/enotify.php:199
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Notificacion Friendica] %s compartio una nueva publicacion"
 
-#: include/conversation.php:1190 include/conversation.php:1208
-msgid "Please enter an audio link/URL:"
-msgstr "Por favor, introduce la URL/enlace del audio:"
+#: include/enotify.php:201
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s compartió un nuevo tema en %2$s"
 
-#: include/conversation.php:1191 include/conversation.php:1209
-msgid "Tag term:"
-msgstr "Etiquetar:"
+#: include/enotify.php:202
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]compartió una publicación[/url]."
 
-#: include/conversation.php:1192 include/conversation.php:1210
-#: mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Guardar en directorio:"
+#: include/enotify.php:213
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s te dio un toque"
 
-#: include/conversation.php:1193 include/conversation.php:1211
-msgid "Where are you right now?"
-msgstr "¿Dónde estás ahora?"
+#: include/enotify.php:215
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s te dio un toque en %2$s"
 
-#: include/conversation.php:1194
-msgid "Delete item(s)?"
-msgstr "¿Borrar objeto(s)?"
+#: include/enotify.php:216
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]te dio un toque[/url]."
 
-#: include/conversation.php:1242 mod/photos.php:1569
-msgid "Share"
-msgstr "Compartir"
+#: include/enotify.php:231
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notificación] %s ha etiquetado tu publicación"
 
-#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
-#: mod/message.php:354 mod/message.php:545
-msgid "Upload photo"
-msgstr "Subir foto"
+#: include/enotify.php:233
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s ha etiquetado tu publicación en %2$s"
 
-#: include/conversation.php:1244 mod/editpost.php:111
-msgid "upload photo"
-msgstr "subir imagen"
+#: include/enotify.php:234
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s ha etiquetado [url=%2$s]tu publicación[/url]"
 
-#: include/conversation.php:1245 mod/editpost.php:112
-msgid "Attach file"
-msgstr "Adjuntar archivo"
+#: include/enotify.php:245
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notificación] Presentación recibida"
 
-#: include/conversation.php:1246 mod/editpost.php:113
-msgid "attach file"
-msgstr "adjuntar archivo"
+#: include/enotify.php:247
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Has recibido una presentación de '%1$s' en %2$s"
 
-#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
-#: mod/message.php:355 mod/message.php:546
-msgid "Insert web link"
-msgstr "Insertar enlace"
+#: include/enotify.php:248
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Has recibido [url=%1$s]una presentación[/url] de %2$s."
 
-#: include/conversation.php:1248 mod/editpost.php:115
-msgid "web link"
-msgstr "enlace web"
+#: include/enotify.php:252 include/enotify.php:295
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Puedes visitar su perfil en %s"
 
-#: include/conversation.php:1249 mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Insertar enlace del vídeo"
+#: include/enotify.php:254
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Visita %s para aceptar o rechazar la presentación por favor."
 
-#: include/conversation.php:1250 mod/editpost.php:117
-msgid "video link"
-msgstr "enlace de video"
+#: include/enotify.php:262
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Notificación:Friendica] Un nuevo contacto comparte contigo"
 
-#: include/conversation.php:1251 mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Insertar vínculo del audio"
+#: include/enotify.php:264 include/enotify.php:265
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s comparte con tigo en %2$s"
 
-#: include/conversation.php:1252 mod/editpost.php:119
-msgid "audio link"
-msgstr "enlace de audio"
+#: include/enotify.php:271
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Notificación:Friendica] Tienes un nuevo seguidor"
 
-#: include/conversation.php:1253 mod/editpost.php:120
-msgid "Set your location"
-msgstr "Configurar tu localización"
+#: include/enotify.php:273 include/enotify.php:274
+#, php-format
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Tienes un nuevo seguidor en %2$s : %1$s"
 
-#: include/conversation.php:1254 mod/editpost.php:121
-msgid "set location"
-msgstr "establecer tu ubicación"
+#: include/enotify.php:285
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notificación] Sugerencia de amigo recibida"
 
-#: include/conversation.php:1255 mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Borrar la localización del navegador"
+#: include/enotify.php:287
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Has recibido una sugerencia de amigo de '%1$s' en %2$s"
 
-#: include/conversation.php:1256 mod/editpost.php:123
-msgid "clear location"
-msgstr "limpiar la localización"
+#: include/enotify.php:288
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Has recibido [url=%1$s]una sugerencia de amigo[/url] en %2$s de %3$s."
 
-#: include/conversation.php:1258 mod/editpost.php:137
-msgid "Set title"
-msgstr "Establecer el título"
+#: include/enotify.php:293
+msgid "Name:"
+msgstr "Nombre: "
 
-#: include/conversation.php:1260 mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Categorías (lista separada por comas)"
+#: include/enotify.php:294
+msgid "Photo:"
+msgstr "Foto: "
 
-#: include/conversation.php:1262 mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Configuración de permisos"
+#: include/enotify.php:297
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Visita %s para aceptar o rechazar la sugerencia por favor."
 
-#: include/conversation.php:1263 mod/editpost.php:154
-msgid "permissions"
-msgstr "permisos"
+#: include/enotify.php:305 include/enotify.php:319
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Notificación:Friendica] Conexión aceptada"
 
-#: include/conversation.php:1271 mod/editpost.php:134
-msgid "Public post"
-msgstr "Publicación pública"
+#: include/enotify.php:307 include/enotify.php:321
+#, php-format
+msgid "'%1$s' has accepted your connection request at %2$s"
+msgstr "'%1$s' acepto tu consulta de conexión %2$s"
 
-#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
-#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
-#: mod/photos.php:1725 object/Item.php:729
-msgid "Preview"
-msgstr "Vista previa"
+#: include/enotify.php:308 include/enotify.php:322
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hacepto tu [url=%1$s]consulta de conexión[/url]."
 
-#: include/conversation.php:1280 include/items.php:1917 mod/fbrowser.php:101
-#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
-#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
-#: mod/contacts.php:445 mod/photos.php:235 mod/photos.php:322
-#: mod/suggest.php:32 mod/videos.php:128 mod/settings.php:677
-#: mod/settings.php:703
-msgid "Cancel"
-msgstr "Cancelar"
+#: include/enotify.php:312
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and "
+"email without restriction."
+msgstr "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción."
 
-#: include/conversation.php:1286
-msgid "Post to Groups"
-msgstr "Publicar hacia grupos"
+#: include/enotify.php:314
+#, php-format
+msgid "Please visit %s if you wish to make any changes to this relationship."
+msgstr "Por favor visite %s si desea hacer algún cambio a su relación."
 
-#: include/conversation.php:1287
-msgid "Post to Contacts"
-msgstr "Publicar hacia contactos"
+#: include/enotify.php:326
+#, 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' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente."
 
-#: include/conversation.php:1288
-msgid "Private post"
-msgstr "Publicación privada"
+#: include/enotify.php:328
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future."
+msgstr "'%1$s' puede elegir extender esto en una relación más permisiva o ambidireccional en el futuro."
 
-#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
-msgid "Message"
-msgstr "Mensaje"
+#: include/enotify.php:330
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto."
 
-#: include/conversation.php:1294 mod/editpost.php:153
-msgid "Browser"
-msgstr "Navegador"
+#: include/enotify.php:340
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Notificacion:Friendica] consulta de registro"
 
-#: include/conversation.php:1449
-msgid "View all"
-msgstr "Ver todos los contactos"
+#: include/enotify.php:342
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Recibiste una consulta de registro de '%1$s' en %2$s"
 
-#: include/conversation.php:1471
-msgid "Like"
-msgid_plural "Likes"
-msgstr[0] "Me gusta"
-msgstr[1] "Me gusta"
+#: include/enotify.php:343
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Recibiste una [url=%1$s]consulta de registro[/url] from %2$s."
 
-#: include/conversation.php:1474
-msgid "Dislike"
-msgid_plural "Dislikes"
-msgstr[0] "No me gusta"
-msgstr[1] "No me gusta"
+#: include/enotify.php:347
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Nombre completo:\t%1$s\\nUbicación del sitio:\t%2$s\\nLogin Nombre:\t%3$s (%4$s)"
 
-#: include/conversation.php:1480
-msgid "Not Attending"
-msgid_plural "Not Attending"
-msgstr[0] "No atendiendo"
-msgstr[1] "No atendiendo"
+#: include/enotify.php:350
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Por favor visita %s para aprobar o negar la solicitud."
 
-#: include/datetime.php:57 include/datetime.php:59 mod/profiles.php:705
-msgid "Miscellaneous"
-msgstr "Varios"
+#: include/event.php:441
+msgid "Sun"
+msgstr "Dom"
 
-#: include/datetime.php:183 include/identity.php:629
-msgid "Birthday:"
-msgstr "Fecha de nacimiento:"
+#: include/event.php:442
+msgid "Mon"
+msgstr "Lun"
 
-#: include/datetime.php:185 mod/profiles.php:728
-msgid "Age: "
-msgstr "Edad: "
+#: include/event.php:443
+msgid "Tue"
+msgstr "Mar"
 
-#: include/datetime.php:187
-msgid "YYYY-MM-DD or MM-DD"
-msgstr "YYYY-MM-DD o MM-DD"
+#: include/event.php:444
+msgid "Wed"
+msgstr "Mie"
 
-#: include/datetime.php:341
-msgid "never"
-msgstr "nunca"
+#: include/event.php:445
+msgid "Thu"
+msgstr "Jue"
 
-#: include/datetime.php:347
-msgid "less than a second ago"
-msgstr "hace menos de un segundo"
+#: include/event.php:446
+msgid "Fri"
+msgstr "Vie"
 
-#: include/datetime.php:350
-msgid "year"
-msgstr "año"
+#: include/event.php:447
+msgid "Sat"
+msgstr "Sab"
 
-#: include/datetime.php:350
-msgid "years"
-msgstr "años"
+#: include/event.php:448 include/text.php:1130 mod/settings.php:972
+msgid "Sunday"
+msgstr "Domingo"
 
-#: include/datetime.php:351 include/event.php:480 mod/cal.php:284
-#: mod/events.php:389
-msgid "month"
-msgstr "mes"
+#: include/event.php:449 include/text.php:1130 mod/settings.php:972
+msgid "Monday"
+msgstr "Lunes"
 
-#: include/datetime.php:351
-msgid "months"
-msgstr "meses"
+#: include/event.php:450 include/text.php:1130
+msgid "Tuesday"
+msgstr "Martes"
 
-#: include/datetime.php:352 include/event.php:481 mod/cal.php:285
-#: mod/events.php:390
-msgid "week"
-msgstr "semana"
+#: include/event.php:451 include/text.php:1130
+msgid "Wednesday"
+msgstr "Miércoles"
 
-#: include/datetime.php:352
-msgid "weeks"
-msgstr "semanas"
+#: include/event.php:452 include/text.php:1130
+msgid "Thursday"
+msgstr "Jueves"
 
-#: include/datetime.php:353 include/event.php:482 mod/cal.php:286
-#: mod/events.php:391
-msgid "day"
-msgstr "día"
+#: include/event.php:453 include/text.php:1130
+msgid "Friday"
+msgstr "Viernes"
 
-#: include/datetime.php:353
-msgid "days"
-msgstr "días"
+#: include/event.php:454 include/text.php:1130
+msgid "Saturday"
+msgstr "Sábado"
 
-#: include/datetime.php:354
-msgid "hour"
-msgstr "hora"
+#: include/event.php:455
+msgid "Jan"
+msgstr "Ene"
 
-#: include/datetime.php:354
-msgid "hours"
-msgstr "horas"
+#: include/event.php:456
+msgid "Feb"
+msgstr "Feb"
 
-#: include/datetime.php:355
-msgid "minute"
-msgstr "minuto"
+#: include/event.php:457
+msgid "Mar"
+msgstr "Mar"
 
-#: include/datetime.php:355
-msgid "minutes"
-msgstr "minutos"
+#: include/event.php:458
+msgid "Apr"
+msgstr "Abr"
 
-#: include/datetime.php:356
-msgid "second"
-msgstr "segundo"
+#: include/event.php:459 include/event.php:471 include/text.php:1134
+msgid "May"
+msgstr "Mayo"
 
-#: include/datetime.php:356
-msgid "seconds"
-msgstr "segundos"
+#: include/event.php:460
+msgid "Jun"
+msgstr "Jun"
 
-#: include/datetime.php:365
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "hace %1$d %2$s"
+#: include/event.php:461
+msgid "Jul"
+msgstr "Jul"
 
-#: include/datetime.php:572
-#, php-format
-msgid "%s's birthday"
-msgstr "Cumpleaños de %s"
+#: include/event.php:462
+msgid "Aug"
+msgstr "Ago"
 
-#: include/datetime.php:573 include/dfrn.php:1108
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Feliz cumpleaños %s"
+#: include/event.php:463
+msgid "Sept"
+msgstr "Sept"
 
-#: 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."
-msgstr "\n\t\t\tLos desarolladores de friendica publicaron una actualización  %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido."
+#: include/event.php:464
+msgid "Oct"
+msgstr "Oct"
 
-#: include/dbstructure.php:31
-#, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "El mensaje de error es\n[pre]%s[/pre]"
+#: include/event.php:465
+msgid "Nov"
+msgstr "Nov"
 
-#: include/dbstructure.php:183
-msgid "Errors encountered creating database tables."
-msgstr "Se han encontrados errores creando las tablas de la base de datos."
+#: include/event.php:466
+msgid "Dec"
+msgstr "Dec"
 
-#: include/dbstructure.php:260
-msgid "Errors encountered performing database changes."
-msgstr "Errores encontrados al ejecutar cambios en la base de datos."
+#: include/event.php:467 include/text.php:1134
+msgid "January"
+msgstr "Enero"
 
-#: include/dfrn.php:1107
-#, php-format
-msgid "%s\\'s birthday"
-msgstr "%s\\'s cumpleaños"
+#: include/event.php:468 include/text.php:1134
+msgid "February"
+msgstr "Febrero"
 
-#: include/enotify.php:24
-msgid "Friendica Notification"
-msgstr "Notificación de Friendica"
+#: include/event.php:469 include/text.php:1134
+msgid "March"
+msgstr "Marzo"
 
-#: include/enotify.php:27
-msgid "Thank You,"
-msgstr "Gracias,"
+#: include/event.php:470 include/text.php:1134
+msgid "April"
+msgstr "Abril"
 
-#: include/enotify.php:30
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrador"
+#: include/event.php:472 include/text.php:1134
+msgid "June"
+msgstr "Junio"
 
-#: include/enotify.php:32
-#, php-format
-msgid "%1$s, %2$s Administrator"
-msgstr "%1$s, %2$s Administrador"
+#: include/event.php:473 include/text.php:1134
+msgid "July"
+msgstr "Julio"
 
-#: include/enotify.php:70
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: include/event.php:474 include/text.php:1134
+msgid "August"
+msgstr "Agosto"
 
-#: include/enotify.php:83
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notificación] Nuevo correo recibido de %s"
+#: include/event.php:475 include/text.php:1134
+msgid "September"
+msgstr "Septiembre"
 
-#: include/enotify.php:85
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s te ha enviado un mensaje privado desde %2$s."
+#: include/event.php:476 include/text.php:1134
+msgid "October"
+msgstr "Octubre"
 
-#: include/enotify.php:86
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s te ha enviado %2$s."
+#: include/event.php:477 include/text.php:1134
+msgid "November"
+msgstr "Noviembre"
 
-#: include/enotify.php:86
-msgid "a private message"
-msgstr "un mensaje privado"
+#: include/event.php:478 include/text.php:1134
+msgid "December"
+msgstr "Diciembre"
 
-#: include/enotify.php:88
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Por favor, visita %s para ver y/o responder a tus mensajes privados."
+#: include/event.php:479 mod/cal.php:283 mod/events.php:388
+msgid "today"
+msgstr "hoy"
 
-#: include/enotify.php:134
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s comentó en [url=%2$s]a %3$s[/url]"
+#: include/event.php:483
+msgid "all-day"
+msgstr "todo el día"
 
-#: include/enotify.php:141
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s comentó en [url=%2$s] %4$s de %3$s[/url]"
+#: include/event.php:485
+msgid "No events to display"
+msgstr "No hay eventos a mostrar"
 
-#: include/enotify.php:149
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s comentó en [url=%2$s] tu %3$s[/url]"
+#: include/event.php:574
+msgid "l, F j"
+msgstr "l, F j"
 
-#: include/enotify.php:159
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notificación] Comentario en la conversación de #%1$d por %2$s"
+#: include/event.php:593
+msgid "Edit event"
+msgstr "Editar evento"
 
-#: include/enotify.php:161
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s ha comentado en una conversación/elemento que sigues."
+#: include/event.php:615 include/text.php:1536 include/text.php:1543
+msgid "link to source"
+msgstr "Enlace al original"
 
-#: include/enotify.php:164 include/enotify.php:178 include/enotify.php:192
-#: include/enotify.php:206 include/enotify.php:224 include/enotify.php:238
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Por favor, visita %s para ver y/o responder a la conversación."
+#: include/event.php:850
+msgid "Export"
+msgstr "Exportar"
 
-#: include/enotify.php:171
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notificación] %s publicó en tu muro"
+#: include/event.php:851
+msgid "Export calendar as ical"
+msgstr "Exportar calendario como ical"
 
-#: include/enotify.php:173
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s publicó en tu perfil de %2$s"
+#: include/event.php:852
+msgid "Export calendar as csv"
+msgstr "Exportar calendario como csv"
 
-#: include/enotify.php:174
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s publicó en [url=%2$s]tu muro[/url]"
+#: include/follow.php:77 mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "Dirección de perfil no permitida."
 
-#: include/enotify.php:185
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notificación] %s te ha nombrado"
+#: include/follow.php:82
+msgid "Connect URL missing."
+msgstr "Falta el conector URL."
 
-#: include/enotify.php:187
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s te ha nombrado en %2$s"
+#: include/follow.php:109
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Este sitio no está configurado para permitir la comunicación con otras redes."
 
-#: include/enotify.php:188
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]te nombró[/url]."
+#: include/follow.php:110 include/follow.php:130
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles."
 
-#: include/enotify.php:199
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Notificacion Friendica] %s compartio una nueva publicacion"
+#: include/follow.php:128
+msgid "The profile address specified does not provide adequate information."
+msgstr "La dirección del perfil especificado no proporciona información adecuada."
 
-#: include/enotify.php:201
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s compartió un nuevo tema en %2$s"
+#: include/follow.php:132
+msgid "An author or name was not found."
+msgstr "No se ha encontrado un autor o nombre."
 
-#: include/enotify.php:202
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]compartió una publicación[/url]."
+#: include/follow.php:134
+msgid "No browser URL could be matched to this address."
+msgstr "Ninguna dirección concuerda con la suministrada."
 
-#: include/enotify.php:213
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s te dio un toque"
+#: include/follow.php:136
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto."
 
-#: include/enotify.php:215
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s te dio un toque en %2$s"
+#: include/follow.php:137
+msgid "Use mailto: in front of address to force email check."
+msgstr "Escribe mailto: al principio de la dirección para forzar el envío."
 
-#: include/enotify.php:216
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]te dio un toque[/url]."
+#: include/follow.php:143
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."
 
-#: include/enotify.php:231
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notificación] %s ha etiquetado tu publicación"
+#: include/follow.php:153
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas."
 
-#: include/enotify.php:233
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s ha etiquetado tu publicación en %2$s"
+#: include/follow.php:254
+msgid "Unable to retrieve contact information."
+msgstr "No ha sido posible recibir la información del contacto."
 
-#: include/enotify.php:234
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s ha etiquetado [url=%2$s]tu publicación[/url]"
+#: include/follow.php:287
+msgid "following"
+msgstr "siguiendo"
 
-#: include/enotify.php:245
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notificación] Presentación recibida"
+#: include/nav.php:35 mod/navigation.php:19
+msgid "Nothing new here"
+msgstr "Nada nuevo por aquí"
 
-#: include/enotify.php:247
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Has recibido una presentación de '%1$s' en %2$s"
+#: include/nav.php:39 mod/navigation.php:23
+msgid "Clear notifications"
+msgstr "Limpiar notificaciones"
 
-#: include/enotify.php:248
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Has recibido [url=%1$s]una presentación[/url] de %2$s."
+#: include/nav.php:40 include/text.php:1015
+msgid "@name, !forum, #tags, content"
+msgstr "@name, !forum, #tags, contenido"
 
-#: include/enotify.php:252 include/enotify.php:295
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Puedes visitar su perfil en %s"
+#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1787
+msgid "Logout"
+msgstr "Salir"
 
-#: include/enotify.php:254
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Visita %s para aceptar o rechazar la presentación por favor."
+#: include/nav.php:78 view/theme/frio/theme.php:243
+msgid "End this session"
+msgstr "Cerrar la sesión"
 
-#: include/enotify.php:262
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Notificación:Friendica] Un nuevo contacto comparte contigo"
+#: include/nav.php:81 include/identity.php:714 mod/contacts.php:637
+#: mod/contacts.php:833 view/theme/frio/theme.php:246
+msgid "Status"
+msgstr "Estado"
 
-#: include/enotify.php:264 include/enotify.php:265
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s comparte con tigo en %2$s"
+#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
+msgid "Your posts and conversations"
+msgstr "Tus publicaciones y conversaciones"
 
-#: include/enotify.php:271
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Notificación:Friendica] Tienes un nuevo seguidor"
+#: include/nav.php:82 include/identity.php:605 include/identity.php:691
+#: include/identity.php:722 mod/profperm.php:104 mod/newmember.php:32
+#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
+msgid "Profile"
+msgstr "Perfil"
 
-#: include/enotify.php:273 include/enotify.php:274
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Tienes un nuevo seguidor en %2$s : %1$s"
+#: include/nav.php:82 view/theme/frio/theme.php:247
+msgid "Your profile page"
+msgstr "Tu página de perfil"
 
-#: include/enotify.php:285
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notificación] Sugerencia de amigo recibida"
+#: include/nav.php:83 include/identity.php:730 mod/fbrowser.php:32
+#: view/theme/frio/theme.php:248
+msgid "Photos"
+msgstr "Fotografías"
+
+#: include/nav.php:83 view/theme/frio/theme.php:248
+msgid "Your photos"
+msgstr "Tus fotos"
+
+#: include/nav.php:84 include/identity.php:738 include/identity.php:741
+#: view/theme/frio/theme.php:249
+msgid "Videos"
+msgstr "Videos"
+
+#: include/nav.php:84 view/theme/frio/theme.php:249
+msgid "Your videos"
+msgstr "Tus videos"
+
+#: include/nav.php:85 include/nav.php:149 include/identity.php:750
+#: include/identity.php:761 mod/cal.php:275 mod/events.php:379
+#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
+msgid "Events"
+msgstr "Eventos"
+
+#: include/nav.php:85 view/theme/frio/theme.php:250
+msgid "Your events"
+msgstr "Tus eventos"
+
+#: include/nav.php:86
+msgid "Personal notes"
+msgstr "Notas personales"
+
+#: include/nav.php:86
+msgid "Your personal notes"
+msgstr "Tus notas personales"
+
+#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1788
+msgid "Login"
+msgstr "Acceder"
+
+#: include/nav.php:95
+msgid "Sign in"
+msgstr "Date de alta"
+
+#: include/nav.php:105 include/nav.php:161
+#: include/NotificationsManager.php:174
+msgid "Home"
+msgstr "Inicio"
+
+#: include/nav.php:105
+msgid "Home Page"
+msgstr "Página de inicio"
+
+#: include/nav.php:109 mod/register.php:289 boot.php:1763
+msgid "Register"
+msgstr "Registrarse"
+
+#: include/nav.php:109
+msgid "Create an account"
+msgstr "Crea una cuenta"
+
+#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
+msgid "Help"
+msgstr "Ayuda"
+
+#: include/nav.php:115
+msgid "Help and documentation"
+msgstr "Ayuda y documentación"
+
+#: include/nav.php:119
+msgid "Apps"
+msgstr "Aplicaciones"
+
+#: include/nav.php:119
+msgid "Addon applications, utilities, games"
+msgstr "Aplicaciones, utilidades, juegos"
+
+#: include/nav.php:123 include/text.php:1012 mod/search.php:149
+msgid "Search"
+msgstr "Buscar"
+
+#: include/nav.php:123
+msgid "Search site content"
+msgstr " Busca contenido en la página"
+
+#: include/nav.php:126 include/text.php:1020
+msgid "Full Text"
+msgstr "Texto completo"
+
+#: include/nav.php:127 include/text.php:1021
+msgid "Tags"
+msgstr "Tags"
+
+#: include/nav.php:128 include/nav.php:192 include/identity.php:783
+#: include/identity.php:786 include/text.php:1022 mod/contacts.php:792
+#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
+msgid "Contacts"
+msgstr "Contactos"
+
+#: include/nav.php:143 include/nav.php:145 mod/community.php:36
+msgid "Community"
+msgstr "Comunidad"
+
+#: include/nav.php:143
+msgid "Conversations on this site"
+msgstr "Conversaciones en este sitio"
+
+#: include/nav.php:145
+msgid "Conversations on the network"
+msgstr "Conversaciones en la red"
+
+#: include/nav.php:149 include/identity.php:753 include/identity.php:764
+#: view/theme/frio/theme.php:254
+msgid "Events and Calendar"
+msgstr "Eventos y Calendario"
+
+#: include/nav.php:152
+msgid "Directory"
+msgstr "Directorio"
+
+#: include/nav.php:152
+msgid "People directory"
+msgstr "Directorio de usuarios"
+
+#: include/nav.php:154
+msgid "Information"
+msgstr "Información"
+
+#: include/nav.php:154
+msgid "Information about this friendica instance"
+msgstr "Información sobre esta instancia de friendica"
+
+#: include/nav.php:158 include/NotificationsManager.php:160 mod/admin.php:411
+#: view/theme/frio/theme.php:253
+msgid "Network"
+msgstr "Red"
+
+#: include/nav.php:158 view/theme/frio/theme.php:253
+msgid "Conversations from your friends"
+msgstr "Conversaciones de tus amigos"
+
+#: include/nav.php:159
+msgid "Network Reset"
+msgstr "Reseteo de la red"
 
-#: include/enotify.php:287
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Has recibido una sugerencia de amigo de '%1$s' en %2$s"
+#: include/nav.php:159
+msgid "Load Network page with no filters"
+msgstr "Cargar pagina de redes sin filtros"
 
-#: include/enotify.php:288
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Has recibido [url=%1$s]una sugerencia de amigo[/url] en %2$s de %3$s."
+#: include/nav.php:166 include/NotificationsManager.php:181
+msgid "Introductions"
+msgstr "Presentaciones"
 
-#: include/enotify.php:293
-msgid "Name:"
-msgstr "Nombre: "
+#: include/nav.php:166
+msgid "Friend Requests"
+msgstr "Solicitudes de amistad"
 
-#: include/enotify.php:294
-msgid "Photo:"
-msgstr "Foto: "
+#: include/nav.php:169 mod/notifications.php:96
+msgid "Notifications"
+msgstr "Notificaciones"
 
-#: include/enotify.php:297
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Visita %s para aceptar o rechazar la sugerencia por favor."
+#: include/nav.php:170
+msgid "See all notifications"
+msgstr "Ver todas las notificaciones"
 
-#: include/enotify.php:305 include/enotify.php:319
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Notificación:Friendica] Conexión aceptada"
+#: include/nav.php:171 mod/settings.php:902
+msgid "Mark as seen"
+msgstr "Marcar como leído"
 
-#: include/enotify.php:307 include/enotify.php:321
-#, php-format
-msgid "'%1$s' has accepted your connection request at %2$s"
-msgstr "'%1$s' acepto tu consulta de conexión %2$s"
+#: include/nav.php:171
+msgid "Mark all system notifications seen"
+msgstr "Marcar todas las notificaciones del sistema como leídas"
 
-#: include/enotify.php:308 include/enotify.php:322
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s hacepto tu [url=%1$s]consulta de conexión[/url]."
+#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
+msgid "Messages"
+msgstr "Mensajes"
 
-#: include/enotify.php:312
-msgid ""
-"You are now mutual friends and may exchange status updates, photos, and "
-"email without restriction."
-msgstr "Ahora tiene amigos en común y puede intercambiar actualizaciones de estado, fotos y email sin restricción."
+#: include/nav.php:175 view/theme/frio/theme.php:255
+msgid "Private mail"
+msgstr "Correo privado"
 
-#: include/enotify.php:314
-#, php-format
-msgid "Please visit %s if you wish to make any changes to this relationship."
-msgstr "Por favor visite %s si desea hacer algún cambio a su relación."
+#: include/nav.php:176
+msgid "Inbox"
+msgstr "Entrada"
 
-#: include/enotify.php:326
-#, 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' eligió de aceptarte como fan/hincha lo que restringe algunas formas de comunicación - tales como mensajes privados y algunas interacciones de los perfiles. Si esto es una pagina de celebridad o comunidad, estas configuraciones se adoptaron automáticamente."
+#: include/nav.php:177
+msgid "Outbox"
+msgstr "Enviados"
 
-#: include/enotify.php:328
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future."
-msgstr "'%1$s' puede elegir extender esto en una relación más permisiva o ambidireccional en el futuro."
+#: include/nav.php:178 mod/message.php:16
+msgid "New Message"
+msgstr "Nuevo mensaje"
 
-#: include/enotify.php:330
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Por favor visita %s si es preciso de hacer algún cambio a la relación con este contacto."
+#: include/nav.php:181
+msgid "Manage"
+msgstr "Administrar"
 
-#: include/enotify.php:340
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Notificacion:Friendica] consulta de registro"
+#: include/nav.php:181
+msgid "Manage other pages"
+msgstr "Administrar otras páginas"
 
-#: include/enotify.php:342
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Recibiste una consulta de registro de '%1$s' en %2$s"
+#: include/nav.php:184 mod/settings.php:81
+msgid "Delegations"
+msgstr "Delegaciones"
 
-#: include/enotify.php:343
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Recibiste una [url=%1$s]consulta de registro[/url] from %2$s."
+#: include/nav.php:184 mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegar la administración de la página"
 
-#: include/enotify.php:347
-#, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Nombre completo:\t%1$s\\nUbicación del sitio:\t%2$s\\nLogin Nombre:\t%3$s (%4$s)"
+#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1520
+#: mod/admin.php:1778 mod/settings.php:111 view/theme/frio/theme.php:256
+msgid "Settings"
+msgstr "Configuración"
 
-#: include/enotify.php:350
-#, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Por favor visita %s para aprobar o negar la solicitud."
+#: include/nav.php:186 view/theme/frio/theme.php:256
+msgid "Account settings"
+msgstr "Configuración de tu cuenta"
 
-#: include/event.php:441
-msgid "Sun"
-msgstr "Dom"
+#: include/nav.php:189 include/identity.php:282
+msgid "Profiles"
+msgstr "Perfiles"
 
-#: include/event.php:442
-msgid "Mon"
-msgstr "Lun"
+#: include/nav.php:189
+msgid "Manage/Edit Profiles"
+msgstr "Manejar/editar Perfiles"
 
-#: include/event.php:443
-msgid "Tue"
-msgstr "Mar"
+#: include/nav.php:192 view/theme/frio/theme.php:257
+msgid "Manage/edit friends and contacts"
+msgstr "Administrar/editar amigos y contactos"
 
-#: include/event.php:444
-msgid "Wed"
-msgstr "Mie"
+#: include/nav.php:197 mod/admin.php:186
+msgid "Admin"
+msgstr "Admin"
 
-#: include/event.php:445
-msgid "Thu"
-msgstr "Jue"
+#: include/nav.php:197
+msgid "Site setup and configuration"
+msgstr "Opciones y configuración del sitio"
 
-#: include/event.php:446
-msgid "Fri"
-msgstr "Vie"
+#: include/nav.php:200
+msgid "Navigation"
+msgstr "Navegación"
 
-#: include/event.php:447
-msgid "Sat"
-msgstr "Sab"
+#: include/nav.php:200
+msgid "Site map"
+msgstr "Mapa del sitio"
 
-#: include/event.php:448 include/text.php:1130 mod/settings.php:968
-msgid "Sunday"
-msgstr "Domingo"
+#: include/oembed.php:252
+msgid "Embedded content"
+msgstr "Contenido integrado"
 
-#: include/event.php:449 include/text.php:1130 mod/settings.php:968
-msgid "Monday"
-msgstr "Lunes"
+#: include/oembed.php:260
+msgid "Embedding disabled"
+msgstr "Contenido incrustrado desabilitado"
 
-#: include/event.php:450 include/text.php:1130
-msgid "Tuesday"
-msgstr "Martes"
+#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
+#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
+#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
+msgid "Contact Photos"
+msgstr "Foto del contacto"
 
-#: include/event.php:451 include/text.php:1130
-msgid "Wednesday"
-msgstr "Miércoles"
+#: include/security.php:22
+msgid "Welcome "
+msgstr "Bienvenido "
 
-#: include/event.php:452 include/text.php:1130
-msgid "Thursday"
-msgstr "Jueves"
+#: include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Por favor sube una foto para tu perfil."
 
-#: include/event.php:453 include/text.php:1130
-msgid "Friday"
-msgstr "Viernes"
+#: include/security.php:26
+msgid "Welcome back "
+msgstr "Bienvenido de nuevo "
 
-#: include/event.php:454 include/text.php:1130
-msgid "Saturday"
-msgstr "Sábado"
+#: include/security.php:373
+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 "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."
 
-#: include/event.php:455
-msgid "Jan"
-msgstr "Ene"
+#: include/Contact.php:119
+msgid "stopped following"
+msgstr "dejó de seguir"
 
-#: include/event.php:456
-msgid "Feb"
-msgstr "Feb"
+#: include/Contact.php:361 include/Contact.php:374 include/Contact.php:419
+#: include/conversation.php:968 include/conversation.php:984
+#: mod/allfriends.php:65 mod/directory.php:155 mod/dirfind.php:203
+#: mod/match.php:71 mod/suggest.php:82
+msgid "View Profile"
+msgstr "Ver perfil"
 
-#: include/event.php:457
-msgid "Mar"
-msgstr "Mar"
+#: include/Contact.php:418 include/conversation.php:967
+msgid "View Status"
+msgstr "Ver estado"
 
-#: include/event.php:458
-msgid "Apr"
-msgstr "Abr"
+#: include/Contact.php:420 include/conversation.php:969
+msgid "View Photos"
+msgstr "Ver fotos"
 
-#: include/event.php:459 include/event.php:471 include/text.php:1134
-msgid "May"
-msgstr "Mayo"
+#: include/Contact.php:421 include/conversation.php:970
+msgid "Network Posts"
+msgstr "Publicaciones en la red"
 
-#: include/event.php:460
-msgid "Jun"
-msgstr "Jun"
+#: include/Contact.php:422 include/conversation.php:971
+msgid "View Contact"
+msgstr "Ver contacto"
 
-#: include/event.php:461
-msgid "Jul"
-msgstr "Jul"
+#: include/Contact.php:423
+msgid "Drop Contact"
+msgstr "Eliminar contacto"
 
-#: include/event.php:462
-msgid "Aug"
-msgstr "Ago"
+#: include/Contact.php:424 include/conversation.php:972
+msgid "Send PM"
+msgstr "Enviar mensaje privado"
 
-#: include/event.php:463
-msgid "Sept"
-msgstr "Sept"
+#: include/Contact.php:425 include/conversation.php:976
+msgid "Poke"
+msgstr "Toque"
 
-#: include/event.php:464
-msgid "Oct"
-msgstr "Oct"
+#: include/Contact.php:798
+msgid "Organisation"
+msgstr "Organización"
 
-#: include/event.php:465
-msgid "Nov"
-msgstr "Nov"
+#: include/Contact.php:801
+msgid "News"
+msgstr "Noticias"
 
-#: include/event.php:466
-msgid "Dec"
-msgstr "Dec"
+#: include/Contact.php:804
+msgid "Forum"
+msgstr "Foro"
 
-#: include/event.php:467 include/text.php:1134
-msgid "January"
-msgstr "Enero"
+#: include/NotificationsManager.php:153
+msgid "System"
+msgstr "Sistema"
 
-#: include/event.php:468 include/text.php:1134
-msgid "February"
-msgstr "Febrero"
+#: include/NotificationsManager.php:167 mod/profiles.php:703
+#: mod/network.php:846
+msgid "Personal"
+msgstr "Personal"
 
-#: include/event.php:469 include/text.php:1134
-msgid "March"
-msgstr "Marzo"
+#: include/NotificationsManager.php:234 include/NotificationsManager.php:244
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s comentó la publicación de %s"
 
-#: include/event.php:470 include/text.php:1134
-msgid "April"
-msgstr "Abril"
+#: include/NotificationsManager.php:243
+#, php-format
+msgid "%s created a new post"
+msgstr "%s creó una nueva publicación"
 
-#: include/event.php:472 include/text.php:1134
-msgid "June"
-msgstr "Junio"
+#: include/NotificationsManager.php:256
+#, php-format
+msgid "%s liked %s's post"
+msgstr "A %s le gusta la publicación de %s"
 
-#: include/event.php:473 include/text.php:1134
-msgid "July"
-msgstr "Julio"
+#: include/NotificationsManager.php:267
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "A %s no le gusta la publicación de %s"
 
-#: include/event.php:474 include/text.php:1134
-msgid "August"
-msgstr "Agosto"
+#: include/NotificationsManager.php:278
+#, php-format
+msgid "%s is attending %s's event"
+msgstr "%s está asistiendo al evento %s's"
 
-#: include/event.php:475 include/text.php:1134
-msgid "September"
-msgstr "Septiembre"
+#: include/NotificationsManager.php:289
+#, php-format
+msgid "%s is not attending %s's event"
+msgstr "%s no está asistiendo al evento %s's"
 
-#: include/event.php:476 include/text.php:1134
-msgid "October"
-msgstr "Octubre"
+#: include/NotificationsManager.php:300
+#, php-format
+msgid "%s may attend %s's event"
+msgstr "%s podría asistir al evento %s's"
 
-#: include/event.php:477 include/text.php:1134
-msgid "November"
-msgstr "Noviembre"
+#: include/NotificationsManager.php:315
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s es ahora es amigo de %s"
 
-#: include/event.php:478 include/text.php:1134
-msgid "December"
-msgstr "Diciembre"
+#: include/NotificationsManager.php:748
+msgid "Friend Suggestion"
+msgstr "Propuestas de amistad"
 
-#: include/event.php:479 mod/cal.php:283 mod/events.php:388
-msgid "today"
-msgstr "hoy"
+#: include/NotificationsManager.php:781
+msgid "Friend/Connect Request"
+msgstr "Solicitud de Amistad/Conexión"
 
-#: include/event.php:483
-msgid "all-day"
-msgstr "todo el día"
+#: include/NotificationsManager.php:781
+msgid "New Follower"
+msgstr "Nuevo seguidor"
 
-#: include/event.php:485
-msgid "No events to display"
-msgstr "No hay eventos a mostrar"
+#: include/api.php:1018
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada."
 
-#: include/event.php:574
-msgid "l, F j"
-msgstr "l, F j"
+#: include/api.php:1038
+#, php-format
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada."
 
-#: include/event.php:593
-msgid "Edit event"
-msgstr "Editar evento"
+#: include/api.php:1059
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada."
 
-#: include/event.php:615 include/text.php:1536 include/text.php:1543
-msgid "link to source"
-msgstr "Enlace al original"
+#: include/conversation.php:147
+#, php-format
+msgid "%1$s attends %2$s's %3$s"
+msgstr "%1$s atenderá %2$s's %3$s"
 
-#: include/event.php:850
-msgid "Export"
-msgstr "Exportar"
+#: include/conversation.php:150
+#, php-format
+msgid "%1$s doesn't attend %2$s's %3$s"
+msgstr "%1$s no atenderá %2$s's %3$s"
 
-#: include/event.php:851
-msgid "Export calendar as ical"
-msgstr "Exportar calendario como ical"
+#: include/conversation.php:153
+#, php-format
+msgid "%1$s attends maybe %2$s's %3$s"
+msgstr "%1$s atenderá quizás %2$s's %3$s"
 
-#: include/event.php:852
-msgid "Export calendar as csv"
-msgstr "Exportar calendario como csv"
+#: include/conversation.php:185 mod/dfrn_confirm.php:473
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ahora es amigo de %2$s"
 
-#: include/follow.php:77 mod/dfrn_request.php:507
-msgid "Disallowed profile URL."
-msgstr "Dirección de perfil no permitida."
+#: include/conversation.php:219
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s le dio un toque a %2$s"
 
-#: include/follow.php:82
-msgid "Connect URL missing."
-msgstr "Falta el conector URL."
+#: include/conversation.php:239 mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s está actualmente %2$s"
 
-#: include/follow.php:109
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Este sitio no está configurado para permitir la comunicación con otras redes."
+#: include/conversation.php:278 mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s ha etiquetado el %3$s de %2$s con %4$s"
 
-#: include/follow.php:110 include/follow.php:130
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles."
+#: include/conversation.php:303
+msgid "post/item"
+msgstr "publicación/tema"
 
-#: include/follow.php:128
-msgid "The profile address specified does not provide adequate information."
-msgstr "La dirección del perfil especificado no proporciona información adecuada."
+#: include/conversation.php:304
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s ha marcado %3$s de %2$s como Favorito"
 
-#: include/follow.php:132
-msgid "An author or name was not found."
-msgstr "No se ha encontrado un autor o nombre."
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:346
+#: mod/photos.php:1607
+msgid "Likes"
+msgstr "Me gusta"
 
-#: include/follow.php:134
-msgid "No browser URL could be matched to this address."
-msgstr "Ninguna dirección concuerda con la suministrada."
+#: include/conversation.php:585 mod/content.php:372 mod/profiles.php:350
+#: mod/photos.php:1607
+msgid "Dislikes"
+msgstr "No me gusta"
 
-#: include/follow.php:136
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Imposible identificar la dirección @ con algún protocolo conocido o dirección de contacto."
+#: include/conversation.php:586 include/conversation.php:1477
+#: mod/content.php:373 mod/photos.php:1608
+msgid "Attending"
+msgid_plural "Attending"
+msgstr[0] "Atendiendo"
+msgstr[1] "Atendiendo"
 
-#: include/follow.php:137
-msgid "Use mailto: in front of address to force email check."
-msgstr "Escribe mailto: al principio de la dirección para forzar el envío."
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Not attending"
+msgstr "No atendiendo"
 
-#: include/follow.php:143
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "La dirección del perfil especificada pertenece a una red que ha sido deshabilitada en este sitio."
+#: include/conversation.php:586 mod/content.php:373 mod/photos.php:1608
+msgid "Might attend"
+msgstr "Puede que atienda"
 
-#: include/follow.php:153
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas."
+#: include/conversation.php:708 mod/content.php:453 mod/content.php:758
+#: mod/photos.php:1681 object/Item.php:133
+msgid "Select"
+msgstr "Seleccionar"
 
-#: include/follow.php:254
-msgid "Unable to retrieve contact information."
-msgstr "No ha sido posible recibir la información del contacto."
+#: include/conversation.php:709 mod/group.php:171 mod/content.php:454
+#: mod/content.php:759 mod/contacts.php:808 mod/contacts.php:1016
+#: mod/admin.php:1410 mod/photos.php:1682 mod/settings.php:741
+#: object/Item.php:134
+msgid "Delete"
+msgstr "Eliminar"
 
-#: include/follow.php:287
-msgid "following"
-msgstr "siguiendo"
+#: include/conversation.php:753 mod/content.php:487 mod/content.php:910
+#: mod/content.php:911 object/Item.php:367 object/Item.php:368
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Ver perfil de %s @ %s"
 
-#: include/identity.php:42
-msgid "Requested account is not available."
-msgstr "La cuenta solicitada no está disponible."
+#: include/conversation.php:765 object/Item.php:355
+msgid "Categories:"
+msgstr "Categorías:"
 
-#: include/identity.php:51 mod/profile.php:21
-msgid "Requested profile is not available."
-msgstr "El perfil solicitado no está disponible."
+#: include/conversation.php:766 object/Item.php:356
+msgid "Filed under:"
+msgstr "Archivado en:"
 
-#: include/identity.php:95 include/identity.php:311 include/identity.php:688
-msgid "Edit profile"
-msgstr "Editar perfil"
+#: include/conversation.php:773 mod/content.php:497 mod/content.php:923
+#: object/Item.php:381
+#, php-format
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: include/identity.php:251
-msgid "Atom feed"
-msgstr "Atom feed"
+#: include/conversation.php:789 mod/content.php:513
+msgid "View in context"
+msgstr "Verlo en contexto"
 
-#: include/identity.php:282 include/nav.php:189
-msgid "Profiles"
-msgstr "Perfiles"
+#: include/conversation.php:791 include/conversation.php:1261
+#: mod/editpost.php:124 mod/wallmessage.php:156 mod/message.php:356
+#: mod/message.php:548 mod/content.php:515 mod/content.php:948
+#: mod/photos.php:1570 object/Item.php:406
+msgid "Please wait"
+msgstr "Por favor, espera"
 
-#: include/identity.php:282
-msgid "Manage/edit profiles"
-msgstr "Administrar/editar perfiles"
+#: include/conversation.php:870
+msgid "remove"
+msgstr "eliminar"
 
-#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
-msgid "Change profile photo"
-msgstr "Cambiar foto del perfil"
+#: include/conversation.php:874
+msgid "Delete Selected Items"
+msgstr "Eliminar el elemento seleccionado"
 
-#: include/identity.php:288 mod/profiles.php:796
-msgid "Create New Profile"
-msgstr "Crear nuevo perfil"
+#: include/conversation.php:966
+msgid "Follow Thread"
+msgstr "Seguir publicacion"
 
-#: include/identity.php:298 mod/profiles.php:785
-msgid "Profile Image"
-msgstr "Imagen del Perfil"
+#: include/conversation.php:1094
+#, php-format
+msgid "%s likes this."
+msgstr "A %s le gusta esto."
 
-#: include/identity.php:301 mod/profiles.php:787
-msgid "visible to everybody"
-msgstr "Visible para todos"
+#: include/conversation.php:1097
+#, php-format
+msgid "%s doesn't like this."
+msgstr "A %s no le gusta esto."
 
-#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
-msgid "Edit visibility"
-msgstr "Editar visibilidad"
+#: include/conversation.php:1100
+#, php-format
+msgid "%s attends."
+msgstr "%s atiende."
 
-#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
-#: mod/directory.php:139
-msgid "Gender:"
-msgstr "Género:"
+#: include/conversation.php:1103
+#, php-format
+msgid "%s doesn't attend."
+msgstr "%s no atenderá."
 
-#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
-msgid "Status:"
-msgstr "Estado:"
+#: include/conversation.php:1106
+#, php-format
+msgid "%s attends maybe."
+msgstr "%s quizás atenderá"
 
-#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
-msgid "Homepage:"
-msgstr "Página de inicio:"
+#: include/conversation.php:1116
+msgid "and"
+msgstr "y"
 
-#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
-#: mod/contacts.php:632 mod/directory.php:145
-msgid "About:"
-msgstr "Acerca de:"
+#: include/conversation.php:1122
+#, php-format
+msgid ", and %d other people"
+msgstr " y a otras %d personas"
 
-#: include/identity.php:339 mod/contacts.php:630
-msgid "XMPP:"
-msgstr "XMPP:"
+#: include/conversation.php:1131
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d personas</span> les gusta esto"
 
-#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
-msgid "Network:"
-msgstr "Red:"
+#: include/conversation.php:1132
+#, php-format
+msgid "%s like this."
+msgstr "A %s le gusta esto."
 
-#: include/identity.php:451 include/identity.php:535
-msgid "g A l F d"
-msgstr "g A l F d"
+#: include/conversation.php:1135
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d personas</span> no les gusta esto"
 
-#: include/identity.php:452 include/identity.php:536
-msgid "F d"
-msgstr "F d"
+#: include/conversation.php:1136
+#, php-format
+msgid "%s don't like this."
+msgstr "A %s no le gusta esto."
 
-#: include/identity.php:497 include/identity.php:582
-msgid "[today]"
-msgstr "[hoy]"
+#: include/conversation.php:1139
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend"
+msgstr "<span  %1$s>%2$d personas</span> atienden"
 
-#: include/identity.php:509
-msgid "Birthday Reminders"
-msgstr "Recordatorios de cumpleaños"
+#: include/conversation.php:1140
+#, php-format
+msgid "%s attend."
+msgstr "%s atiende."
 
-#: include/identity.php:510
-msgid "Birthdays this week:"
-msgstr "Cumpleaños esta semana:"
+#: include/conversation.php:1143
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't attend"
+msgstr "<span  %1$s>%2$d personas</span>no atienden"
 
-#: include/identity.php:569
-msgid "[No description]"
-msgstr "[Sin descripción]"
+#: include/conversation.php:1144
+#, php-format
+msgid "%s don't attend."
+msgstr "%s no atiende."
 
-#: include/identity.php:593
-msgid "Event Reminders"
-msgstr "Recordatorios de eventos"
+#: include/conversation.php:1147
+#, php-format
+msgid "<span  %1$s>%2$d people</span> attend maybe"
+msgstr "<span  %1$s>%2$d people</span> quizá asistan"
 
-#: include/identity.php:594
-msgid "Events this week:"
-msgstr "Eventos de esta semana:"
+#: include/conversation.php:1148
+#, php-format
+msgid "%s anttend maybe."
+msgstr "%s atiende quizás."
 
-#: include/identity.php:605 include/identity.php:691 include/identity.php:722
-#: include/nav.php:82 mod/profperm.php:104 mod/newmember.php:32
-#: mod/contacts.php:639 mod/contacts.php:841 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Perfil"
+#: include/conversation.php:1187 include/conversation.php:1205
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible para <strong>cualquiera</strong>"
 
-#: include/identity.php:614 mod/settings.php:1274
-msgid "Full Name:"
-msgstr "Nombre completo:"
+#: include/conversation.php:1188 include/conversation.php:1206
+#: mod/wallmessage.php:127 mod/wallmessage.php:135 mod/message.php:291
+#: mod/message.php:299 mod/message.php:442 mod/message.php:450
+msgid "Please enter a link URL:"
+msgstr "Introduce la dirección del enlace:"
 
-#: include/identity.php:621
-msgid "j F, Y"
-msgstr "j F, Y"
+#: include/conversation.php:1189 include/conversation.php:1207
+msgid "Please enter a video link/URL:"
+msgstr "Por favor, introduce la URL/enlace del vídeo:"
 
-#: include/identity.php:622
-msgid "j F"
-msgstr "j F"
+#: include/conversation.php:1190 include/conversation.php:1208
+msgid "Please enter an audio link/URL:"
+msgstr "Por favor, introduce la URL/enlace del audio:"
 
-#: include/identity.php:633
-msgid "Age:"
-msgstr "Edad:"
+#: include/conversation.php:1191 include/conversation.php:1209
+msgid "Tag term:"
+msgstr "Etiquetar:"
 
-#: include/identity.php:642
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "por %1$d %2$s"
+#: include/conversation.php:1192 include/conversation.php:1210
+#: mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Guardar en directorio:"
 
-#: include/identity.php:645 mod/profiles.php:710
-msgid "Sexual Preference:"
-msgstr "Preferencia sexual:"
+#: include/conversation.php:1193 include/conversation.php:1211
+msgid "Where are you right now?"
+msgstr "¿Dónde estás ahora?"
 
-#: include/identity.php:649 mod/profiles.php:737
-msgid "Hometown:"
-msgstr "Ciudad de origen:"
+#: include/conversation.php:1194
+msgid "Delete item(s)?"
+msgstr "¿Borrar objeto(s)?"
 
-#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
-#: mod/contacts.php:634
-msgid "Tags:"
-msgstr "Etiquetas:"
+#: include/conversation.php:1242 mod/photos.php:1569
+msgid "Share"
+msgstr "Compartir"
 
-#: include/identity.php:653 mod/profiles.php:738
-msgid "Political Views:"
-msgstr "Ideas políticas:"
+#: include/conversation.php:1243 mod/editpost.php:110 mod/wallmessage.php:154
+#: mod/message.php:354 mod/message.php:545
+msgid "Upload photo"
+msgstr "Subir foto"
 
-#: include/identity.php:655
-msgid "Religion:"
-msgstr "Religión:"
+#: include/conversation.php:1244 mod/editpost.php:111
+msgid "upload photo"
+msgstr "subir imagen"
 
-#: include/identity.php:659
-msgid "Hobbies/Interests:"
-msgstr "Aficiones/Intereses:"
+#: include/conversation.php:1245 mod/editpost.php:112
+msgid "Attach file"
+msgstr "Adjuntar archivo"
 
-#: include/identity.php:661 mod/profiles.php:742
-msgid "Likes:"
-msgstr "Me gusta:"
+#: include/conversation.php:1246 mod/editpost.php:113
+msgid "attach file"
+msgstr "adjuntar archivo"
 
-#: include/identity.php:663 mod/profiles.php:743
-msgid "Dislikes:"
-msgstr "No me gusta:"
+#: include/conversation.php:1247 mod/editpost.php:114 mod/wallmessage.php:155
+#: mod/message.php:355 mod/message.php:546
+msgid "Insert web link"
+msgstr "Insertar enlace"
 
-#: include/identity.php:666
-msgid "Contact information and Social Networks:"
-msgstr "Información de contacto y Redes sociales:"
+#: include/conversation.php:1248 mod/editpost.php:115
+msgid "web link"
+msgstr "enlace web"
 
-#: include/identity.php:668
-msgid "Musical interests:"
-msgstr "Intereses musicales:"
+#: include/conversation.php:1249 mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Insertar enlace del vídeo"
 
-#: include/identity.php:670
-msgid "Books, literature:"
-msgstr "Libros, literatura:"
+#: include/conversation.php:1250 mod/editpost.php:117
+msgid "video link"
+msgstr "enlace de video"
 
-#: include/identity.php:672
-msgid "Television:"
-msgstr "Televisión:"
+#: include/conversation.php:1251 mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Insertar vínculo del audio"
 
-#: include/identity.php:674
-msgid "Film/dance/culture/entertainment:"
-msgstr "Películas/baile/cultura/entretenimiento:"
+#: include/conversation.php:1252 mod/editpost.php:119
+msgid "audio link"
+msgstr "enlace de audio"
 
-#: include/identity.php:676
-msgid "Love/Romance:"
-msgstr "Amor/Romance:"
+#: include/conversation.php:1253 mod/editpost.php:120
+msgid "Set your location"
+msgstr "Configurar tu localización"
 
-#: include/identity.php:678
-msgid "Work/employment:"
-msgstr "Trabajo/ocupación:"
+#: include/conversation.php:1254 mod/editpost.php:121
+msgid "set location"
+msgstr "establecer tu ubicación"
 
-#: include/identity.php:680
-msgid "School/education:"
-msgstr "Escuela/estudios:"
+#: include/conversation.php:1255 mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Borrar la localización del navegador"
 
-#: include/identity.php:684
-msgid "Forums:"
-msgstr "Foros:"
+#: include/conversation.php:1256 mod/editpost.php:123
+msgid "clear location"
+msgstr "limpiar la localización"
 
-#: include/identity.php:692 mod/events.php:507
-msgid "Basic"
-msgstr "Basic"
+#: include/conversation.php:1258 mod/editpost.php:137
+msgid "Set title"
+msgstr "Establecer el título"
 
-#: include/identity.php:693 mod/admin.php:931 mod/contacts.php:870
-#: mod/events.php:508
-msgid "Advanced"
-msgstr "Avanzado"
+#: include/conversation.php:1260 mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Categorías (lista separada por comas)"
 
-#: include/identity.php:714 include/nav.php:81 mod/contacts.php:637
-#: mod/contacts.php:833 view/theme/frio/theme.php:246
-msgid "Status"
-msgstr "Estado"
+#: include/conversation.php:1262 mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Configuración de permisos"
 
-#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
-msgid "Status Messages and Posts"
-msgstr "Mensajes de Estado y Publicaciones"
+#: include/conversation.php:1263 mod/editpost.php:154
+msgid "permissions"
+msgstr "permisos"
 
-#: include/identity.php:725 mod/contacts.php:844
-msgid "Profile Details"
-msgstr "Detalles del Perfil"
+#: include/conversation.php:1271 mod/editpost.php:134
+msgid "Public post"
+msgstr "Publicación pública"
 
-#: include/identity.php:730 include/nav.php:83 mod/fbrowser.php:32
-#: view/theme/frio/theme.php:248 view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Fotografías"
+#: include/conversation.php:1276 mod/editpost.php:145 mod/content.php:737
+#: mod/events.php:504 mod/photos.php:1591 mod/photos.php:1639
+#: mod/photos.php:1725 object/Item.php:729
+msgid "Preview"
+msgstr "Vista previa"
 
-#: include/identity.php:733 mod/photos.php:87
-msgid "Photo Albums"
-msgstr "Álbum de Fotos"
+#: include/conversation.php:1280 include/items.php:1952 mod/fbrowser.php:101
+#: mod/fbrowser.php:136 mod/tagrm.php:11 mod/tagrm.php:94 mod/follow.php:121
+#: mod/editpost.php:148 mod/message.php:220 mod/dfrn_request.php:875
+#: mod/contacts.php:445 mod/suggest.php:32 mod/photos.php:235
+#: mod/photos.php:322 mod/settings.php:679 mod/settings.php:705
+#: mod/videos.php:128
+msgid "Cancel"
+msgstr "Cancelar"
 
-#: include/identity.php:738 include/identity.php:741 include/nav.php:84
-#: view/theme/frio/theme.php:249
-msgid "Videos"
-msgstr "Videos"
+#: include/conversation.php:1286
+msgid "Post to Groups"
+msgstr "Publicar hacia grupos"
 
-#: include/identity.php:750 include/identity.php:761 include/nav.php:85
-#: include/nav.php:149 mod/cal.php:275 mod/events.php:379
-#: view/theme/frio/theme.php:250 view/theme/frio/theme.php:254
-#: view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Eventos"
+#: include/conversation.php:1287
+msgid "Post to Contacts"
+msgstr "Publicar hacia contactos"
 
-#: include/identity.php:753 include/identity.php:764 include/nav.php:149
-#: view/theme/frio/theme.php:254
-msgid "Events and Calendar"
-msgstr "Eventos y Calendario"
+#: include/conversation.php:1288
+msgid "Private post"
+msgstr "Publicación privada"
 
-#: include/identity.php:772 mod/notes.php:46
-msgid "Personal Notes"
-msgstr "Notas personales"
+#: include/conversation.php:1293 include/identity.php:256 mod/editpost.php:152
+msgid "Message"
+msgstr "Mensaje"
 
-#: include/identity.php:775
-msgid "Only You Can See This"
-msgstr "Únicamente tú puedes ver esto"
+#: include/conversation.php:1294 mod/editpost.php:153
+msgid "Browser"
+msgstr "Navegador"
 
-#: include/identity.php:783 include/identity.php:786 include/nav.php:128
-#: include/nav.php:192 include/text.php:1022 mod/contacts.php:792
-#: mod/contacts.php:853 mod/viewcontacts.php:116 view/theme/frio/theme.php:257
-#: view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contactos"
+#: include/conversation.php:1449
+msgid "View all"
+msgstr "Ver todos los contactos"
 
-#: include/items.php:1518 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
-msgid "[Name Withheld]"
-msgstr "[Nombre oculto]"
+#: include/conversation.php:1471
+msgid "Like"
+msgid_plural "Likes"
+msgstr[0] "Me gusta"
+msgstr[1] "Me gusta"
 
-#: include/items.php:1873 mod/viewsrc.php:15 mod/notice.php:15
-#: mod/admin.php:234 mod/admin.php:1441 mod/admin.php:1675 mod/display.php:103
-#: mod/display.php:279 mod/display.php:478
-msgid "Item not found."
-msgstr "Elemento no encontrado."
+#: include/conversation.php:1474
+msgid "Dislike"
+msgid_plural "Dislikes"
+msgstr[0] "No me gusta"
+msgstr[1] "No me gusta"
 
-#: include/items.php:1912
-msgid "Do you really want to delete this item?"
-msgstr "¿Realmente quieres borrar este objeto?"
+#: include/conversation.php:1480
+msgid "Not Attending"
+msgid_plural "Not Attending"
+msgstr[0] "No atendiendo"
+msgstr[1] "No atendiendo"
 
-#: include/items.php:1914 mod/follow.php:110 mod/api.php:105
-#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
-#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
-#: mod/register.php:238 mod/suggest.php:29 mod/settings.php:1158
-#: mod/settings.php:1164 mod/settings.php:1172 mod/settings.php:1176
-#: mod/settings.php:1181 mod/settings.php:1187 mod/settings.php:1193
-#: mod/settings.php:1199 mod/settings.php:1225 mod/settings.php:1226
-#: mod/settings.php:1227 mod/settings.php:1228 mod/settings.php:1229
-msgid "Yes"
-msgstr "Sí"
+#: 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."
+msgstr "\n\t\t\tLos desarolladores de friendica publicaron una actualización  %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido."
 
-#: include/items.php:2077 mod/wall_upload.php:77 mod/wall_upload.php:80
-#: mod/notes.php:22 mod/uimport.php:23 mod/nogroup.php:25 mod/invite.php:15
-#: mod/invite.php:101 mod/wall_attach.php:67 mod/wall_attach.php:70
-#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
-#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
-#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
-#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
-#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
-#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
-#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
-#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
-#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
-#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
-#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
-#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
-#: mod/events.php:190 mod/item.php:198 mod/item.php:210 mod/network.php:4
-#: mod/photos.php:159 mod/photos.php:1072 mod/register.php:42
-#: mod/suggest.php:58 mod/viewcontacts.php:45 mod/settings.php:22
-#: mod/settings.php:128 mod/settings.php:663 index.php:397
-msgid "Permission denied."
-msgstr "Permiso denegado."
+#: include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "El mensaje de error es\n[pre]%s[/pre]"
 
-#: include/items.php:2182
-msgid "Archives"
-msgstr "Archivos"
+#: include/dbstructure.php:183
+msgid "Errors encountered creating database tables."
+msgstr "Se han encontrados errores creando las tablas de la base de datos."
 
-#: include/nav.php:35 mod/navigation.php:19
-msgid "Nothing new here"
-msgstr "Nada nuevo por aquí"
+#: include/dbstructure.php:260
+msgid "Errors encountered performing database changes."
+msgstr "Errores encontrados al ejecutar cambios en la base de datos."
 
-#: include/nav.php:39 mod/navigation.php:23
-msgid "Clear notifications"
-msgstr "Limpiar notificaciones"
+#: include/delivery.php:446
+msgid "(no subject)"
+msgstr "(sin asunto)"
 
-#: include/nav.php:40 include/text.php:1015
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, contenido"
+#: include/dfrn.php:1107
+#, php-format
+msgid "%s\\'s birthday"
+msgstr "%s\\'s cumpleaños"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243 boot.php:1778
-msgid "Logout"
-msgstr "Salir"
+#: include/diaspora.php:1958
+msgid "Sharing notification from Diaspora network"
+msgstr "Compartir notificaciones con la red Diaspora*"
 
-#: include/nav.php:78 view/theme/frio/theme.php:243
-msgid "End this session"
-msgstr "Cerrar la sesión"
+#: include/diaspora.php:2864
+msgid "Attachments:"
+msgstr "Archivos adjuntos:"
 
-#: include/nav.php:81 include/nav.php:161 view/theme/frio/theme.php:246
-#: view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Tus publicaciones y conversaciones"
+#: include/identity.php:42
+msgid "Requested account is not available."
+msgstr "La cuenta solicitada no está disponible."
 
-#: include/nav.php:82 view/theme/frio/theme.php:247
-#: view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Tu página de perfil"
+#: include/identity.php:51 mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "El perfil solicitado no está disponible."
 
-#: include/nav.php:83 view/theme/frio/theme.php:248
-#: view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Tus fotos"
+#: include/identity.php:95 include/identity.php:311 include/identity.php:688
+msgid "Edit profile"
+msgstr "Editar perfil"
 
-#: include/nav.php:84 view/theme/frio/theme.php:249
-msgid "Your videos"
-msgstr "Tus videos"
+#: include/identity.php:251
+msgid "Atom feed"
+msgstr "Atom feed"
 
-#: include/nav.php:85 view/theme/frio/theme.php:250
-#: view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Tus eventos"
+#: include/identity.php:282
+msgid "Manage/edit profiles"
+msgstr "Administrar/editar perfiles"
 
-#: include/nav.php:86 view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Notas personales"
+#: include/identity.php:287 include/identity.php:313 mod/profiles.php:795
+msgid "Change profile photo"
+msgstr "Cambiar foto del perfil"
 
-#: include/nav.php:86
-msgid "Your personal notes"
-msgstr "Tus notas personales"
+#: include/identity.php:288 mod/profiles.php:796
+msgid "Create New Profile"
+msgstr "Crear nuevo perfil"
 
-#: include/nav.php:95 mod/bookmarklet.php:12 boot.php:1779
-msgid "Login"
-msgstr "Acceder"
+#: include/identity.php:298 mod/profiles.php:785
+msgid "Profile Image"
+msgstr "Imagen del Perfil"
 
-#: include/nav.php:95
-msgid "Sign in"
-msgstr "Date de alta"
+#: include/identity.php:301 mod/profiles.php:787
+msgid "visible to everybody"
+msgstr "Visible para todos"
 
-#: include/nav.php:105
-msgid "Home Page"
-msgstr "Página de inicio"
+#: include/identity.php:302 mod/profiles.php:691 mod/profiles.php:788
+msgid "Edit visibility"
+msgstr "Editar visibilidad"
 
-#: include/nav.php:109 mod/register.php:280 boot.php:1754
-msgid "Register"
-msgstr "Registrarse"
+#: include/identity.php:330 include/identity.php:616 mod/notifications.php:238
+#: mod/directory.php:139
+msgid "Gender:"
+msgstr "Género:"
 
-#: include/nav.php:109
-msgid "Create an account"
-msgstr "Crea una cuenta"
+#: include/identity.php:333 include/identity.php:636 mod/directory.php:141
+msgid "Status:"
+msgstr "Estado:"
 
-#: include/nav.php:115 mod/help.php:47 view/theme/vier/theme.php:298
-msgid "Help"
-msgstr "Ayuda"
+#: include/identity.php:335 include/identity.php:647 mod/directory.php:143
+msgid "Homepage:"
+msgstr "Página de inicio:"
 
-#: include/nav.php:115
-msgid "Help and documentation"
-msgstr "Ayuda y documentación"
+#: include/identity.php:337 include/identity.php:657 mod/notifications.php:234
+#: mod/contacts.php:632 mod/directory.php:145
+msgid "About:"
+msgstr "Acerca de:"
 
-#: include/nav.php:119
-msgid "Apps"
-msgstr "Aplicaciones"
+#: include/identity.php:339 mod/contacts.php:630
+msgid "XMPP:"
+msgstr "XMPP:"
 
-#: include/nav.php:119
-msgid "Addon applications, utilities, games"
-msgstr "Aplicaciones, utilidades, juegos"
+#: include/identity.php:422 mod/notifications.php:246 mod/contacts.php:50
+msgid "Network:"
+msgstr "Red:"
 
-#: include/nav.php:123 include/text.php:1012 mod/search.php:149
-msgid "Search"
-msgstr "Buscar"
+#: include/identity.php:451 include/identity.php:535
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: include/nav.php:123
-msgid "Search site content"
-msgstr " Busca contenido en la página"
+#: include/identity.php:452 include/identity.php:536
+msgid "F d"
+msgstr "F d"
 
-#: include/nav.php:126 include/text.php:1020
-msgid "Full Text"
-msgstr "Texto completo"
+#: include/identity.php:497 include/identity.php:582
+msgid "[today]"
+msgstr "[hoy]"
 
-#: include/nav.php:127 include/text.php:1021
-msgid "Tags"
-msgstr "Tags"
+#: include/identity.php:509
+msgid "Birthday Reminders"
+msgstr "Recordatorios de cumpleaños"
 
-#: include/nav.php:143 include/nav.php:145 mod/community.php:36
-#: view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Comunidad"
+#: include/identity.php:510
+msgid "Birthdays this week:"
+msgstr "Cumpleaños esta semana:"
 
-#: include/nav.php:143
-msgid "Conversations on this site"
-msgstr "Conversaciones en este sitio"
+#: include/identity.php:569
+msgid "[No description]"
+msgstr "[Sin descripción]"
 
-#: include/nav.php:145
-msgid "Conversations on the network"
-msgstr "Conversaciones en la red"
+#: include/identity.php:593
+msgid "Event Reminders"
+msgstr "Recordatorios de eventos"
 
-#: include/nav.php:152
-msgid "Directory"
-msgstr "Directorio"
+#: include/identity.php:594
+msgid "Events this week:"
+msgstr "Eventos de esta semana:"
 
-#: include/nav.php:152
-msgid "People directory"
-msgstr "Directorio de usuarios"
+#: include/identity.php:614 mod/settings.php:1279
+msgid "Full Name:"
+msgstr "Nombre completo:"
 
-#: include/nav.php:154
-msgid "Information"
-msgstr "Información"
+#: include/identity.php:621
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: include/nav.php:154
-msgid "Information about this friendica instance"
-msgstr "Información sobre esta instancia de friendica"
+#: include/identity.php:622
+msgid "j F"
+msgstr "j F"
 
-#: include/nav.php:158 view/theme/frio/theme.php:253
-msgid "Conversations from your friends"
-msgstr "Conversaciones de tus amigos"
+#: include/identity.php:633
+msgid "Age:"
+msgstr "Edad:"
 
-#: include/nav.php:159
-msgid "Network Reset"
-msgstr "Reseteo de la red"
+#: include/identity.php:642
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "por %1$d %2$s"
 
-#: include/nav.php:159
-msgid "Load Network page with no filters"
-msgstr "Cargar pagina de redes sin filtros"
+#: include/identity.php:645 mod/profiles.php:710
+msgid "Sexual Preference:"
+msgstr "Preferencia sexual:"
 
-#: include/nav.php:166
-msgid "Friend Requests"
-msgstr "Solicitudes de amistad"
+#: include/identity.php:649 mod/profiles.php:737
+msgid "Hometown:"
+msgstr "Ciudad de origen:"
 
-#: include/nav.php:169 mod/notifications.php:96
-msgid "Notifications"
-msgstr "Notificaciones"
+#: include/identity.php:651 mod/follow.php:134 mod/notifications.php:236
+#: mod/contacts.php:634
+msgid "Tags:"
+msgstr "Etiquetas:"
 
-#: include/nav.php:170
-msgid "See all notifications"
-msgstr "Ver todas las notificaciones"
+#: include/identity.php:653 mod/profiles.php:738
+msgid "Political Views:"
+msgstr "Ideas políticas:"
 
-#: include/nav.php:171 mod/settings.php:900
-msgid "Mark as seen"
-msgstr "Marcar como leído"
+#: include/identity.php:655
+msgid "Religion:"
+msgstr "Religión:"
 
-#: include/nav.php:171
-msgid "Mark all system notifications seen"
-msgstr "Marcar todas las notificaciones del sistema como leídas"
+#: include/identity.php:659
+msgid "Hobbies/Interests:"
+msgstr "Aficiones/Intereses:"
 
-#: include/nav.php:175 mod/message.php:190 view/theme/frio/theme.php:255
-msgid "Messages"
-msgstr "Mensajes"
+#: include/identity.php:661 mod/profiles.php:742
+msgid "Likes:"
+msgstr "Me gusta:"
 
-#: include/nav.php:175 view/theme/frio/theme.php:255
-msgid "Private mail"
-msgstr "Correo privado"
+#: include/identity.php:663 mod/profiles.php:743
+msgid "Dislikes:"
+msgstr "No me gusta:"
 
-#: include/nav.php:176
-msgid "Inbox"
-msgstr "Entrada"
+#: include/identity.php:666
+msgid "Contact information and Social Networks:"
+msgstr "Información de contacto y Redes sociales:"
 
-#: include/nav.php:177
-msgid "Outbox"
-msgstr "Enviados"
+#: include/identity.php:668
+msgid "Musical interests:"
+msgstr "Intereses musicales:"
 
-#: include/nav.php:178 mod/message.php:16
-msgid "New Message"
-msgstr "Nuevo mensaje"
+#: include/identity.php:670
+msgid "Books, literature:"
+msgstr "Libros, literatura:"
 
-#: include/nav.php:181
-msgid "Manage"
-msgstr "Administrar"
+#: include/identity.php:672
+msgid "Television:"
+msgstr "Televisión:"
 
-#: include/nav.php:181
-msgid "Manage other pages"
-msgstr "Administrar otras páginas"
+#: include/identity.php:674
+msgid "Film/dance/culture/entertainment:"
+msgstr "Películas/baile/cultura/entretenimiento:"
 
-#: include/nav.php:184 mod/settings.php:81
-msgid "Delegations"
-msgstr "Delegaciones"
+#: include/identity.php:676
+msgid "Love/Romance:"
+msgstr "Amor/Romance:"
 
-#: include/nav.php:184 mod/delegate.php:130
-msgid "Delegate Page Management"
-msgstr "Delegar la administración de la página"
+#: include/identity.php:678
+msgid "Work/employment:"
+msgstr "Trabajo/ocupación:"
 
-#: include/nav.php:186 mod/newmember.php:22 mod/admin.php:1494
-#: mod/admin.php:1752 mod/settings.php:111 view/theme/frio/theme.php:256
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Configuración"
+#: include/identity.php:680
+msgid "School/education:"
+msgstr "Escuela/estudios:"
 
-#: include/nav.php:186 view/theme/frio/theme.php:256
-msgid "Account settings"
-msgstr "Configuración de tu cuenta"
+#: include/identity.php:684
+msgid "Forums:"
+msgstr "Foros:"
 
-#: include/nav.php:189
-msgid "Manage/Edit Profiles"
-msgstr "Manejar/editar Perfiles"
+#: include/identity.php:692 mod/events.php:507
+msgid "Basic"
+msgstr "Basic"
 
-#: include/nav.php:192 view/theme/frio/theme.php:257
-msgid "Manage/edit friends and contacts"
-msgstr "Administrar/editar amigos y contactos"
+#: include/identity.php:693 mod/contacts.php:870 mod/events.php:508
+#: mod/admin.php:956
+msgid "Advanced"
+msgstr "Avanzado"
 
-#: include/nav.php:197 mod/admin.php:186
-msgid "Admin"
-msgstr "Admin"
+#: include/identity.php:717 mod/follow.php:143 mod/contacts.php:836
+msgid "Status Messages and Posts"
+msgstr "Mensajes de Estado y Publicaciones"
 
-#: include/nav.php:197
-msgid "Site setup and configuration"
-msgstr "Opciones y configuración del sitio"
+#: include/identity.php:725 mod/contacts.php:844
+msgid "Profile Details"
+msgstr "Detalles del Perfil"
 
-#: include/nav.php:200
-msgid "Navigation"
-msgstr "Navegación"
+#: include/identity.php:733 mod/photos.php:87
+msgid "Photo Albums"
+msgstr "Álbum de Fotos"
 
-#: include/nav.php:200
-msgid "Site map"
-msgstr "Mapa del sitio"
+#: include/identity.php:772 mod/notes.php:46
+msgid "Personal Notes"
+msgstr "Notas personales"
 
-#: include/oembed.php:252
-msgid "Embedded content"
-msgstr "Contenido integrado"
+#: include/identity.php:775
+msgid "Only You Can See This"
+msgstr "Únicamente tú puedes ver esto"
 
-#: include/oembed.php:260
-msgid "Embedding disabled"
-msgstr "Contenido incrustrado desabilitado"
+#: include/items.php:1553 mod/dfrn_request.php:745 mod/dfrn_confirm.php:726
+msgid "[Name Withheld]"
+msgstr "[Nombre oculto]"
 
-#: include/photos.php:53 mod/fbrowser.php:41 mod/fbrowser.php:62
-#: mod/photos.php:180 mod/photos.php:1086 mod/photos.php:1211
-#: mod/photos.php:1232 mod/photos.php:1795 mod/photos.php:1807
-#: view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Foto del contacto"
+#: include/items.php:1908 mod/viewsrc.php:15 mod/notice.php:15
+#: mod/display.php:103 mod/display.php:279 mod/display.php:478
+#: mod/admin.php:234 mod/admin.php:1467 mod/admin.php:1701
+msgid "Item not found."
+msgstr "Elemento no encontrado."
 
-#: include/security.php:22
-msgid "Welcome "
-msgstr "Bienvenido "
+#: include/items.php:1947
+msgid "Do you really want to delete this item?"
+msgstr "¿Realmente quieres borrar este objeto?"
 
-#: include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Por favor sube una foto para tu perfil."
+#: include/items.php:1949 mod/follow.php:110 mod/api.php:105
+#: mod/message.php:217 mod/dfrn_request.php:861 mod/profiles.php:648
+#: mod/profiles.php:651 mod/profiles.php:677 mod/contacts.php:442
+#: mod/suggest.php:29 mod/register.php:245 mod/settings.php:1163
+#: mod/settings.php:1169 mod/settings.php:1177 mod/settings.php:1181
+#: mod/settings.php:1186 mod/settings.php:1192 mod/settings.php:1198
+#: mod/settings.php:1204 mod/settings.php:1230 mod/settings.php:1231
+#: mod/settings.php:1232 mod/settings.php:1233 mod/settings.php:1234
+msgid "Yes"
+msgstr "Sí"
 
-#: include/security.php:26
-msgid "Welcome back "
-msgstr "Bienvenido de nuevo "
+#: include/items.php:2112 mod/notes.php:22 mod/uimport.php:23
+#: mod/nogroup.php:25 mod/invite.php:15 mod/invite.php:101
+#: mod/repair_ostatus.php:9 mod/delegate.php:12 mod/attach.php:33
+#: mod/follow.php:11 mod/follow.php:73 mod/follow.php:155 mod/editpost.php:10
+#: mod/group.php:19 mod/wallmessage.php:9 mod/wallmessage.php:33
+#: mod/wallmessage.php:79 mod/wallmessage.php:103 mod/api.php:26
+#: mod/api.php:31 mod/ostatus_subscribe.php:9 mod/message.php:46
+#: mod/message.php:182 mod/manage.php:96 mod/crepair.php:100
+#: mod/dfrn_confirm.php:57 mod/fsuggest.php:78 mod/mood.php:114
+#: mod/poke.php:150 mod/profile_photo.php:19 mod/profile_photo.php:175
+#: mod/profile_photo.php:186 mod/profile_photo.php:199 mod/regmod.php:110
+#: mod/notifications.php:71 mod/profiles.php:166 mod/profiles.php:605
+#: mod/allfriends.php:12 mod/cal.php:304 mod/common.php:18
+#: mod/contacts.php:350 mod/dirfind.php:11 mod/display.php:475
+#: mod/events.php:190 mod/suggest.php:58 mod/item.php:198 mod/item.php:210
+#: mod/network.php:4 mod/photos.php:159 mod/photos.php:1072
+#: mod/register.php:42 mod/settings.php:22 mod/settings.php:128
+#: mod/settings.php:665 mod/viewcontacts.php:45 mod/wall_attach.php:67
+#: mod/wall_attach.php:70 mod/wall_upload.php:77 mod/wall_upload.php:80
+#: index.php:397
+msgid "Permission denied."
+msgstr "Permiso denegado."
 
-#: include/security.php:373
-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 "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."
+#: include/items.php:2217
+msgid "Archives"
+msgstr "Archivos"
+
+#: include/network.php:595
+msgid "view full size"
+msgstr "Ver a tamaño completo"
 
 #: include/text.php:304
 msgid "newer"
@@ -3077,25 +2955,146 @@ msgstr "Publicación"
 msgid "Item filed"
 msgstr "Elemento archivado"
 
-#: include/Contact.php:119
-msgid "stopped following"
-msgstr "dejó de seguir"
+#: include/user.php:39 mod/settings.php:373
+msgid "Passwords do not match. Password unchanged."
+msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada."
 
-#: include/Contact.php:395
-msgid "Drop Contact"
-msgstr "Eliminar contacto"
+#: include/user.php:48
+msgid "An invitation is required."
+msgstr "Se necesita invitación."
 
-#: include/Contact.php:770
-msgid "Organisation"
-msgstr "Organización"
+#: include/user.php:53
+msgid "Invitation could not be verified."
+msgstr "No se puede verificar la invitación."
 
-#: include/Contact.php:773
-msgid "News"
-msgstr "Noticias"
+#: include/user.php:61
+msgid "Invalid OpenID url"
+msgstr "Dirección OpenID no válida"
 
-#: include/Contact.php:776
-msgid "Forum"
-msgstr "Foro"
+#: include/user.php:82
+msgid "Please enter the required information."
+msgstr "Por favor, introduce la información necesaria."
+
+#: include/user.php:96
+msgid "Please use a shorter name."
+msgstr "Por favor, usa un nombre más corto."
+
+#: include/user.php:98
+msgid "Name too short."
+msgstr "El nombre es demasiado corto."
+
+#: include/user.php:113
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "No parece que ese sea tu nombre completo."
+
+#: include/user.php:118
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Tu dominio de correo no se encuentra entre los permitidos en este sitio."
+
+#: include/user.php:121
+msgid "Not a valid email address."
+msgstr "No es una dirección de correo electrónico válida."
+
+#: include/user.php:134
+msgid "Cannot use that email."
+msgstr "No se puede utilizar este correo electrónico."
+
+#: include/user.php:140
+msgid "Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."
+msgstr "El apodo solo puede contener  \"a-z\", \"0-9\" y \"_\"."
+
+#: include/user.php:147 include/user.php:245
+msgid "Nickname is already registered. Please choose another."
+msgstr "Apodo ya registrado. Por favor, elije otro."
+
+#: include/user.php:157
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro."
+
+#: include/user.php:173
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERROR GRAVE: La generación de claves de seguridad ha fallado."
+
+#: include/user.php:231
+msgid "An error occurred during registration. Please try again."
+msgstr "Se produjo un error durante el registro. Por favor, inténtalo de nuevo."
+
+#: include/user.php:256 view/theme/duepuntozero/config.php:44
+msgid "default"
+msgstr "predeterminado"
+
+#: include/user.php:266
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo."
+
+#: include/user.php:345 include/user.php:352 include/user.php:359
+#: mod/profile_photo.php:74 mod/profile_photo.php:81 mod/profile_photo.php:88
+#: mod/profile_photo.php:210 mod/profile_photo.php:302
+#: mod/profile_photo.php:311 mod/photos.php:66 mod/photos.php:180
+#: mod/photos.php:751 mod/photos.php:1211 mod/photos.php:1232
+#: mod/photos.php:1819
+msgid "Profile Photos"
+msgstr "Foto del perfil"
+
+#: include/user.php:390
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n"
+"\t"
+msgstr "\n\t\tEstimado %1$s,\n\t\t\tGracias por registrarse en %2$s. Su cuenta está pendiente de aprobación por el administrador.\n\t"
+
+#: include/user.php:400
+#, php-format
+msgid "Registration at %s"
+msgstr "Registro en %s"
+
+#: include/user.php:410
+#, 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\tEstimado %1$s,\n\t\t\tGracias por registrar en %2$s. Su cuenta ha sido creada.\n\t"
+
+#: include/user.php:414
+#, 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\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3$s\n\t\t\tNombre de la cuenta:\t\t%1$s\n\t\t\tContraseña:\t\t%5$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a  %2$s."
+
+#: include/user.php:446 mod/admin.php:1209
+#, php-format
+msgid "Registration details for %s"
+msgstr "Detalles de registro para %s"
 
 #: mod/oexchange.php:25
 msgid "Post successful."
@@ -3242,7 +3241,7 @@ msgid ""
 "Password reset failed."
 msgstr "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña."
 
-#: mod/lostpass.php:109 boot.php:1793
+#: mod/lostpass.php:109 boot.php:1802
 msgid "Password Reset"
 msgstr "Restablecer la contraseña"
 
@@ -3308,7 +3307,7 @@ msgid ""
 "your email for further instructions."
 msgstr "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales."
 
-#: mod/lostpass.php:161 boot.php:1781
+#: mod/lostpass.php:161 boot.php:1790
 msgid "Nickname or Email: "
 msgstr "Apodo o Correo electrónico: "
 
@@ -3333,25 +3332,6 @@ msgstr "No se ha encontrado"
 msgid "Page not found."
 msgstr "Página no encontrada."
 
-#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
-#: mod/wall_upload.php:122 mod/wall_upload.php:125 mod/wall_attach.php:17
-#: mod/wall_attach.php:25 mod/wall_attach.php:76
-msgid "Invalid request."
-msgstr "Consulta invalida"
-
-#: mod/wall_upload.php:151 mod/profile_photo.php:150 mod/photos.php:786
-#, php-format
-msgid "Image exceeds size limit of %s"
-msgstr "La imagen excede el limite de %s"
-
-#: mod/wall_upload.php:188 mod/profile_photo.php:159 mod/photos.php:826
-msgid "Unable to process image."
-msgstr "Imposible procesar la imagen."
-
-#: mod/wall_upload.php:221 mod/profile_photo.php:307 mod/photos.php:853
-msgid "Image upload failed."
-msgstr "Error al subir la imagen."
-
 #: mod/lockview.php:31 mod/lockview.php:39
 msgid "Remote privacy information not available."
 msgstr "Privacidad de la información remota no disponible."
@@ -3369,13 +3349,13 @@ msgid ""
 "Account not found and OpenID registration is not permitted on this site."
 msgstr "Cuenta no encontrada y el registro OpenID no está permitido en ese sitio."
 
-#: mod/uimport.php:50 mod/register.php:191
+#: mod/uimport.php:50 mod/register.php:198
 msgid ""
 "This site has exceeded the number of allowed daily account registrations. "
 "Please try again tomorrow."
 msgstr "Este sitio ha excedido el número de registros diarios permitidos. Inténtalo de nuevo mañana por favor."
 
-#: mod/uimport.php:64 mod/register.php:286
+#: mod/uimport.php:64 mod/register.php:295
 msgid "Import"
 msgstr "Importar"
 
@@ -3553,10 +3533,8 @@ msgstr "Para más información sobre el Proyecto Friendica y sobre por qué pens
 #: mod/install.php:272 mod/install.php:312 mod/photos.php:1104
 #: mod/photos.php:1226 mod/photos.php:1539 mod/photos.php:1590
 #: mod/photos.php:1638 mod/photos.php:1724 object/Item.php:720
-#: view/theme/frio/config.php:59 view/theme/cleanzero/config.php:80
-#: view/theme/quattro/config.php:64 view/theme/dispy/config.php:70
-#: view/theme/vier/config.php:107 view/theme/diabook/theme.php:633
-#: view/theme/diabook/config.php:148 view/theme/duepuntozero/config.php:59
+#: view/theme/frio/config.php:59 view/theme/quattro/config.php:64
+#: view/theme/vier/config.php:107 view/theme/duepuntozero/config.php:59
 msgid "Submit"
 msgstr "Envíar"
 
@@ -3604,23 +3582,6 @@ msgstr "Selecciona una etiqueta para eliminar: "
 msgid "Remove"
 msgstr "Eliminar"
 
-#: mod/wall_attach.php:94
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."
-
-#: mod/wall_attach.php:94
-msgid "Or - did you try to upload an empty file?"
-msgstr "Si no - intento de subir un archivo vacío?"
-
-#: mod/wall_attach.php:105
-#, php-format
-msgid "File exceeds size limit of %s"
-msgstr "El archivo excede el limite de tamaño de %s"
-
-#: mod/wall_attach.php:156 mod/wall_attach.php:172
-msgid "File upload failed."
-msgstr "Ha fallado la subida del archivo."
-
 #: mod/repair_ostatus.php:14
 msgid "Resubscribing to OStatus contacts"
 msgstr "Resubscribir a contactos de OStatus"
@@ -3727,11 +3688,11 @@ msgstr "¿%s te conoce?"
 
 #: mod/follow.php:110 mod/api.php:106 mod/dfrn_request.php:861
 #: mod/profiles.php:648 mod/profiles.php:652 mod/profiles.php:677
-#: mod/register.php:239 mod/settings.php:1158 mod/settings.php:1164
-#: mod/settings.php:1172 mod/settings.php:1176 mod/settings.php:1181
-#: mod/settings.php:1187 mod/settings.php:1193 mod/settings.php:1199
-#: mod/settings.php:1225 mod/settings.php:1226 mod/settings.php:1227
-#: mod/settings.php:1228 mod/settings.php:1229
+#: mod/register.php:246 mod/settings.php:1163 mod/settings.php:1169
+#: mod/settings.php:1177 mod/settings.php:1181 mod/settings.php:1186
+#: mod/settings.php:1192 mod/settings.php:1198 mod/settings.php:1204
+#: mod/settings.php:1230 mod/settings.php:1231 mod/settings.php:1232
+#: mod/settings.php:1233 mod/settings.php:1234
 msgid "No"
 msgstr "No"
 
@@ -4035,7 +3996,7 @@ msgstr "Miembros"
 msgid "All Contacts"
 msgstr "Todos los contactos"
 
-#: mod/group.php:193 mod/content.php:130 mod/network.php:495
+#: mod/group.php:193 mod/content.php:130 mod/network.php:496
 msgid "Group is empty"
 msgstr "El grupo está vacío"
 
@@ -4331,9 +4292,9 @@ msgid ""
 "entries from this contact."
 msgstr "Marcar este contacto como perfil_remoto, esto generara que friendica reenvía nuevas publicaciones desde esta cuenta."
 
-#: mod/crepair.php:165 mod/admin.php:1367 mod/admin.php:1380
-#: mod/admin.php:1392 mod/admin.php:1408 mod/settings.php:678
-#: mod/settings.php:704
+#: mod/crepair.php:165 mod/admin.php:1392 mod/admin.php:1405
+#: mod/admin.php:1418 mod/admin.php:1434 mod/settings.php:680
+#: mod/settings.php:706
 msgid "Name"
 msgstr "Nombre"
 
@@ -4519,11 +4480,11 @@ msgid ""
 " bar."
 msgstr "(En vez de usar este formulario, introduce %s en la barra de búsqueda de Diaspora."
 
-#: mod/content.php:119 mod/network.php:468
+#: mod/content.php:119 mod/network.php:469
 msgid "No such group"
 msgstr "Ningún grupo"
 
-#: mod/content.php:135 mod/network.php:499
+#: mod/content.php:135 mod/network.php:500
 #, php-format
 msgid "Group: %s"
 msgstr "Grupo: %s"
@@ -4574,7 +4535,7 @@ msgstr "Este eres tú"
 
 #: mod/content.php:727 mod/content.php:945 mod/photos.php:1589
 #: mod/photos.php:1637 mod/photos.php:1723 object/Item.php:403
-#: object/Item.php:719 boot.php:969
+#: object/Item.php:719 boot.php:970
 msgid "Comment"
 msgstr "Comentar"
 
@@ -4610,7 +4571,7 @@ msgstr "Enlace"
 msgid "Video"
 msgstr "Vídeo"
 
-#: mod/content.php:746 mod/settings.php:738 object/Item.php:122
+#: mod/content.php:746 mod/settings.php:740 object/Item.php:122
 #: object/Item.php:124
 msgid "Edit"
 msgstr "Editar"
@@ -4816,6 +4777,15 @@ msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no
 msgid "Unable to process image"
 msgstr "Imposible procesar la imagen"
 
+#: mod/profile_photo.php:150 mod/photos.php:786 mod/wall_upload.php:151
+#, php-format
+msgid "Image exceeds size limit of %s"
+msgstr "La imagen excede el limite de %s"
+
+#: mod/profile_photo.php:159 mod/photos.php:826 mod/wall_upload.php:188
+msgid "Unable to process image."
+msgstr "Imposible procesar la imagen."
+
 #: mod/profile_photo.php:248
 msgid "Upload File:"
 msgstr "Subir archivo:"
@@ -4856,6 +4826,10 @@ msgstr "Editado"
 msgid "Image uploaded successfully."
 msgstr "Imagen subida con éxito."
 
+#: mod/profile_photo.php:307 mod/photos.php:853 mod/wall_upload.php:221
+msgid "Image upload failed."
+msgstr "Error al subir la imagen."
+
 #: mod/regmod.php:55
 msgid "Account approved."
 msgstr "Cuenta aprobada."
@@ -4925,7 +4899,7 @@ msgstr "Publica tu nueva amistad"
 msgid "if applicable"
 msgstr "Si corresponde"
 
-#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1382
+#: mod/notifications.php:176 mod/notifications.php:249 mod/admin.php:1408
 msgid "Approve"
 msgstr "Aprobar"
 
@@ -5283,2196 +5257,2259 @@ msgstr "Escuela/estudios"
 msgid "Contact information and Social Networks"
 msgstr "Informacioń de contacto y Redes sociales"
 
-#: mod/profiles.php:794
-msgid "Edit/Manage Profiles"
-msgstr "Editar/Administrar perfiles"
-
-#: mod/admin.php:92
-msgid "Theme settings updated."
-msgstr "Configuración de la apariencia actualizada."
-
-#: mod/admin.php:156 mod/admin.php:926
-msgid "Site"
-msgstr "Sitio"
-
-#: mod/admin.php:157 mod/admin.php:870 mod/admin.php:1375 mod/admin.php:1390
-msgid "Users"
-msgstr "Usuarios"
-
-#: mod/admin.php:158 mod/admin.php:1492 mod/admin.php:1552 mod/settings.php:74
-msgid "Plugins"
-msgstr "Módulos"
+#: mod/profiles.php:794
+msgid "Edit/Manage Profiles"
+msgstr "Editar/Administrar perfiles"
 
-#: mod/admin.php:159 mod/admin.php:1750 mod/admin.php:1800
-msgid "Themes"
-msgstr "Temas"
+#: mod/allfriends.php:43
+msgid "No friends to display."
+msgstr "No hay amigos para mostrar."
 
-#: mod/admin.php:160 mod/settings.php:52
-msgid "Additional features"
-msgstr "Características adicionales"
+#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "El acceso a este perfil ha sido restringido."
 
-#: mod/admin.php:161
-msgid "DB updates"
-msgstr "Actualizaciones de la Base de Datos"
+#: mod/cal.php:276 mod/events.php:380
+msgid "View"
+msgstr "Vista"
 
-#: mod/admin.php:162 mod/admin.php:397
-msgid "Inspect Queue"
-msgstr "Inspeccionar cola"
+#: mod/cal.php:277 mod/events.php:382
+msgid "Previous"
+msgstr "Previo"
 
-#: mod/admin.php:163 mod/admin.php:363
-msgid "Federation Statistics"
-msgstr "Estadísticas de federación"
+#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
+msgid "Next"
+msgstr "Siguiente"
 
-#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1874
-msgid "Logs"
-msgstr "Registros"
+#: mod/cal.php:287 mod/events.php:392
+msgid "list"
+msgstr "lista"
 
-#: mod/admin.php:178 mod/admin.php:1942
-msgid "View Logs"
-msgstr "Ver registro de depuración"
+#: mod/cal.php:297
+msgid "User not found"
+msgstr "Usuario no encontrado"
 
-#: mod/admin.php:179
-msgid "probe address"
-msgstr "probar direccion"
+#: mod/cal.php:313
+msgid "This calendar format is not supported"
+msgstr "Este formato de calendario no se soporta"
 
-#: mod/admin.php:180
-msgid "check webfinger"
-msgstr "Verificar webfinger"
+#: mod/cal.php:315
+msgid "No exportable data found"
+msgstr "No se ha encontrado información exportable"
 
-#: mod/admin.php:187
-msgid "Plugin Features"
-msgstr "Características del módulo"
+#: mod/cal.php:330
+msgid "calendar"
+msgstr "calendario"
 
-#: mod/admin.php:189
-msgid "diagnostics"
-msgstr "diagnosticos"
+#: mod/common.php:86
+msgid "No contacts in common."
+msgstr "Sin contactos en común."
 
-#: mod/admin.php:190
-msgid "User registrations waiting for confirmation"
-msgstr "Registro de usuarios esperando la confirmación"
+#: mod/common.php:134 mod/contacts.php:863
+msgid "Common Friends"
+msgstr "Amigos comunes"
 
-#: mod/admin.php:356
-msgid ""
-"This page offers you some numbers to the known part of the federated social "
-"network your Friendica node is part of. These numbers are not complete but "
-"only reflect the part of the network your node is aware of."
-msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "
+#: mod/community.php:27
+msgid "Not available."
+msgstr "No disponible"
 
-#: mod/admin.php:357
-msgid ""
-"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
-"will improve the data displayed here."
-msgstr "El modulo <em>directorio de contactos encontrados</em> no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí."
+#: mod/contacts.php:128
+#, php-format
+msgid "%d contact edited."
+msgid_plural "%d contacts edited."
+msgstr[0] "%d contacto editado."
+msgstr[1] "%d contacts edited."
 
-#: mod/admin.php:362 mod/admin.php:396 mod/admin.php:460 mod/admin.php:925
-#: mod/admin.php:1374 mod/admin.php:1491 mod/admin.php:1551 mod/admin.php:1749
-#: mod/admin.php:1799 mod/admin.php:1873 mod/admin.php:1941
-msgid "Administration"
-msgstr "Administración"
+#: mod/contacts.php:159 mod/contacts.php:368
+msgid "Could not access contact record."
+msgstr "No se pudo acceder a los datos del contacto."
 
-#: mod/admin.php:369
-#, php-format
-msgid "Currently this node is aware of %d nodes from the following platforms:"
-msgstr "Actualmente este nodo reconoce %d nodos de las siguientes plataformas:"
+#: mod/contacts.php:173
+msgid "Could not locate selected profile."
+msgstr "No se pudo encontrar el perfil seleccionado."
 
-#: mod/admin.php:399
-msgid "ID"
-msgstr "ID"
+#: mod/contacts.php:206
+msgid "Contact updated."
+msgstr "Contacto actualizado."
 
-#: mod/admin.php:400
-msgid "Recipient Name"
-msgstr "Nombre del recipiente"
+#: mod/contacts.php:389
+msgid "Contact has been blocked"
+msgstr "El contacto ha sido bloqueado"
 
-#: mod/admin.php:401
-msgid "Recipient Profile"
-msgstr "Perfil del recipiente"
+#: mod/contacts.php:389
+msgid "Contact has been unblocked"
+msgstr "El contacto ha sido desbloqueado"
 
-#: mod/admin.php:403
-msgid "Created"
-msgstr "Creado"
+#: mod/contacts.php:400
+msgid "Contact has been ignored"
+msgstr "El contacto ha sido ignorado"
 
-#: mod/admin.php:404
-msgid "Last Tried"
-msgstr "Ultimo intento"
+#: mod/contacts.php:400
+msgid "Contact has been unignored"
+msgstr "El contacto ya no está ignorado"
 
-#: mod/admin.php:405
-msgid ""
-"This page lists the content of the queue for outgoing postings. These are "
-"postings the initial delivery failed for. They will be resend later and "
-"eventually deleted if the delivery fails permanently."
-msgstr "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. "
+#: mod/contacts.php:412
+msgid "Contact has been archived"
+msgstr "El contacto ha sido archivado"
 
-#: mod/admin.php:424 mod/admin.php:1323
-msgid "Normal Account"
-msgstr "Cuenta normal"
+#: mod/contacts.php:412
+msgid "Contact has been unarchived"
+msgstr "El contacto ya no está archivado"
 
-#: mod/admin.php:425 mod/admin.php:1324
-msgid "Soapbox Account"
-msgstr "Cuenta tribuna"
+#: mod/contacts.php:437
+msgid "Drop contact"
+msgstr "Eliminar contacto"
 
-#: mod/admin.php:426 mod/admin.php:1325
-msgid "Community/Celebrity Account"
-msgstr "Cuenta de Comunidad/Celebridad"
+#: mod/contacts.php:440 mod/contacts.php:801
+msgid "Do you really want to delete this contact?"
+msgstr "¿Estás seguro de que quieres eliminar este contacto?"
 
-#: mod/admin.php:427 mod/admin.php:1326
-msgid "Automatic Friend Account"
-msgstr "Cuenta de amistad automática"
+#: mod/contacts.php:457
+msgid "Contact has been removed."
+msgstr "El contacto ha sido eliminado"
 
-#: mod/admin.php:428
-msgid "Blog Account"
-msgstr "Cuenta de blog"
+#: mod/contacts.php:498
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Ahora tienes una amistad mutua con %s"
 
-#: mod/admin.php:429
-msgid "Private Forum"
-msgstr "Foro privado"
+#: mod/contacts.php:502
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Estás compartiendo con %s"
 
-#: mod/admin.php:455
-msgid "Message queues"
-msgstr "Cola de mensajes"
+#: mod/contacts.php:507
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s está compartiendo contigo"
 
-#: mod/admin.php:461
-msgid "Summary"
-msgstr "Resumen"
+#: mod/contacts.php:527
+msgid "Private communications are not available for this contact."
+msgstr "Las comunicaciones privadas no está disponibles para este contacto."
 
-#: mod/admin.php:464
-msgid "Registered users"
-msgstr "Usuarios registrados"
+#: mod/contacts.php:530 mod/admin.php:885
+msgid "Never"
+msgstr "Nunca"
 
-#: mod/admin.php:466
-msgid "Pending registrations"
-msgstr "Pendientes de registro"
+#: mod/contacts.php:534
+msgid "(Update was successful)"
+msgstr "(La actualización se ha completado)"
 
-#: mod/admin.php:467
-msgid "Version"
-msgstr "Versión"
+#: mod/contacts.php:534
+msgid "(Update was not successful)"
+msgstr "(La actualización no se ha completado)"
 
-#: mod/admin.php:472
-msgid "Active plugins"
-msgstr "Módulos activos"
+#: mod/contacts.php:536 mod/contacts.php:973
+msgid "Suggest friends"
+msgstr "Sugerir amigos"
 
-#: mod/admin.php:495
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos <scheme>://<domain>"
+#: mod/contacts.php:540
+#, php-format
+msgid "Network type: %s"
+msgstr "Tipo de red: %s"
 
-#: mod/admin.php:798
-msgid "RINO2 needs mcrypt php extension to work."
-msgstr "RINO2 precisa la extensión mcrypt para funcionar.  "
+#: mod/contacts.php:553
+msgid "Communications lost with this contact!"
+msgstr "¡Se ha perdido la comunicación con este contacto!"
 
-#: mod/admin.php:806
-msgid "Site settings updated."
-msgstr "Configuración de actualización."
+#: mod/contacts.php:556
+msgid "Fetch further information for feeds"
+msgstr "Recaudar informacion complementaria de los feeds"
 
-#: mod/admin.php:834 mod/settings.php:932
-msgid "No special theme for mobile devices"
-msgstr "No hay tema especial para dispositivos móviles"
+#: mod/contacts.php:557 mod/admin.php:894
+msgid "Disabled"
+msgstr "Deshabilitado"
 
-#: mod/admin.php:853
-msgid "No community page"
-msgstr "No hay pagina de comunidad"
+#: mod/contacts.php:557
+msgid "Fetch information"
+msgstr "Recaudar informacion"
 
-#: mod/admin.php:854
-msgid "Public postings from users of this site"
-msgstr "Temas públicos de perfiles de este sitio."
+#: mod/contacts.php:557
+msgid "Fetch information and keywords"
+msgstr "Recaudar informacion y palabras claves"
 
-#: mod/admin.php:855
-msgid "Global community page"
-msgstr "Pagina global de comunidad"
+#: mod/contacts.php:575
+msgid "Contact"
+msgstr "Contacto"
 
-#: mod/admin.php:860 mod/contacts.php:530
-msgid "Never"
-msgstr "Nunca"
+#: mod/contacts.php:578
+msgid "Profile Visibility"
+msgstr "Visibilidad del Perfil"
 
-#: mod/admin.php:861
-msgid "At post arrival"
-msgstr "A la llegada de una publicación"
+#: mod/contacts.php:579
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."
 
-#: mod/admin.php:869 mod/contacts.php:557
-msgid "Disabled"
-msgstr "Deshabilitado"
+#: mod/contacts.php:580
+msgid "Contact Information / Notes"
+msgstr "Información del Contacto / Notas"
 
-#: mod/admin.php:871
-msgid "Users, Global Contacts"
-msgstr "Perfiles, contactos globales"
+#: mod/contacts.php:581
+msgid "Edit contact notes"
+msgstr "Editar notas del contacto"
+
+#: mod/contacts.php:587
+msgid "Block/Unblock contact"
+msgstr "Boquear/Desbloquear contacto"
 
-#: mod/admin.php:872
-msgid "Users, Global Contacts/fallback"
-msgstr "Perfiles, contactos globales/fallback"
+#: mod/contacts.php:588
+msgid "Ignore contact"
+msgstr "Ignorar contacto"
 
-#: mod/admin.php:876
-msgid "One month"
-msgstr "Un mes"
+#: mod/contacts.php:589
+msgid "Repair URL settings"
+msgstr "Configuración de reparación de la dirección"
 
-#: mod/admin.php:877
-msgid "Three months"
-msgstr "Tres meses"
+#: mod/contacts.php:590
+msgid "View conversations"
+msgstr "Ver conversaciones"
 
-#: mod/admin.php:878
-msgid "Half a year"
-msgstr "Medio año"
+#: mod/contacts.php:596
+msgid "Last update:"
+msgstr "Última actualización:"
 
-#: mod/admin.php:879
-msgid "One year"
-msgstr "Un año"
+#: mod/contacts.php:598
+msgid "Update public posts"
+msgstr "Actualizar publicaciones públicas"
 
-#: mod/admin.php:884
-msgid "Multi user instance"
-msgstr "Sesión multi usuario"
+#: mod/contacts.php:600 mod/contacts.php:983
+msgid "Update now"
+msgstr "Actualizar ahora"
 
-#: mod/admin.php:907
-msgid "Closed"
-msgstr "Cerrado"
+#: mod/contacts.php:605 mod/contacts.php:805 mod/contacts.php:992
+#: mod/admin.php:1412
+msgid "Unblock"
+msgstr "Desbloquear"
 
-#: mod/admin.php:908
-msgid "Requires approval"
-msgstr "Requiere aprobación"
+#: mod/contacts.php:605 mod/contacts.php:805 mod/contacts.php:992
+#: mod/admin.php:1411
+msgid "Block"
+msgstr "Bloquear"
 
-#: mod/admin.php:909
-msgid "Open"
-msgstr "Abierto"
+#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
+msgid "Unignore"
+msgstr "Quitar de Ignorados"
 
-#: mod/admin.php:913
-msgid "No SSL policy, links will track page SSL state"
-msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"
+#: mod/contacts.php:610
+msgid "Currently blocked"
+msgstr "Bloqueados"
 
-#: mod/admin.php:914
-msgid "Force all links to use SSL"
-msgstr "Forzar todos los enlaces a utilizar SSL"
+#: mod/contacts.php:611
+msgid "Currently ignored"
+msgstr "Ignorados"
 
-#: mod/admin.php:915
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"
+#: mod/contacts.php:612
+msgid "Currently archived"
+msgstr "Archivados"
 
-#: mod/admin.php:927 mod/admin.php:1553 mod/admin.php:1801 mod/admin.php:1875
-#: mod/admin.php:2025 mod/settings.php:676 mod/settings.php:786
-#: mod/settings.php:833 mod/settings.php:902 mod/settings.php:992
-#: mod/settings.php:1259
-msgid "Save Settings"
-msgstr "Guardar configuración"
+#: mod/contacts.php:613
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles."
 
-#: mod/admin.php:928 mod/register.php:263
-msgid "Registration"
-msgstr "Registro"
+#: mod/contacts.php:614
+msgid "Notification for new posts"
+msgstr "Notificacion de nuevos temas."
 
-#: mod/admin.php:929
-msgid "File upload"
-msgstr "Subida de archivo"
+#: mod/contacts.php:614
+msgid "Send a notification of every new post of this contact"
+msgstr "Enviar una notificacion por nuevos temas de este contacto."
 
-#: mod/admin.php:930
-msgid "Policies"
-msgstr "Políticas"
+#: mod/contacts.php:617
+msgid "Blacklisted keywords"
+msgstr "Lista negra de palabras"
 
-#: mod/admin.php:932
-msgid "Auto Discovered Contact Directory"
-msgstr "Directorio de contactos descubierto automáticamente"
+#: mod/contacts.php:617
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"
 
-#: mod/admin.php:933
-msgid "Performance"
-msgstr "Rendimiento"
+#: mod/contacts.php:635
+msgid "Actions"
+msgstr "Acciones"
 
-#: mod/admin.php:934
-msgid "Worker"
-msgstr "Trabajador (??)"
+#: mod/contacts.php:638
+msgid "Contact Settings"
+msgstr "Ajustes del contacto"
 
-#: mod/admin.php:935
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. "
+#: mod/contacts.php:684
+msgid "Suggestions"
+msgstr "Sugerencias"
 
-#: mod/admin.php:938
-msgid "Site name"
-msgstr "Nombre del sitio"
+#: mod/contacts.php:687
+msgid "Suggest potential friends"
+msgstr "Amistades potenciales sugeridas"
 
-#: mod/admin.php:939
-msgid "Host name"
-msgstr "Nombre de dominio"
+#: mod/contacts.php:695
+msgid "Show all contacts"
+msgstr "Mostrar todos los contactos"
 
-#: mod/admin.php:940
-msgid "Sender Email"
-msgstr "Dirección de origen de correo electrónico"
+#: mod/contacts.php:700
+msgid "Unblocked"
+msgstr "Desbloqueados"
 
-#: mod/admin.php:940
-msgid ""
-"The email address your server shall use to send notification emails from."
-msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío."
+#: mod/contacts.php:703
+msgid "Only show unblocked contacts"
+msgstr "Mostrar solo contactos sin bloquear"
 
-#: mod/admin.php:941
-msgid "Banner/Logo"
-msgstr "Imagen/Logotipo"
+#: mod/contacts.php:709
+msgid "Blocked"
+msgstr "Bloqueados"
 
-#: mod/admin.php:942
-msgid "Shortcut icon"
-msgstr "Icono de atajo"
+#: mod/contacts.php:712
+msgid "Only show blocked contacts"
+msgstr "Mostrar solo contactos bloqueados"
 
-#: mod/admin.php:942
-msgid "Link to an icon that will be used for browsers."
-msgstr "Enlace hacia un icono que sera usado para el navegador."
+#: mod/contacts.php:718
+msgid "Ignored"
+msgstr "Ignorados"
 
-#: mod/admin.php:943
-msgid "Touch icon"
-msgstr "Icono touch"
+#: mod/contacts.php:721
+msgid "Only show ignored contacts"
+msgstr "Mostrar solo contactos ignorados"
 
-#: mod/admin.php:943
-msgid "Link to an icon that will be used for tablets and mobiles."
-msgstr "Enlace para un icono que sera usado para tablets y moviles."
+#: mod/contacts.php:727
+msgid "Archived"
+msgstr "Archivados"
 
-#: mod/admin.php:944
-msgid "Additional Info"
-msgstr "Información adicional"
+#: mod/contacts.php:730
+msgid "Only show archived contacts"
+msgstr "Mostrar solo contactos archivados"
 
-#: mod/admin.php:944
-#, php-format
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at %s/siteinfo."
-msgstr "Para servidores públicos: información adicional  que sera publicado en %s/siteinfo."
+#: mod/contacts.php:736
+msgid "Hidden"
+msgstr "Ocultos"
 
-#: mod/admin.php:945
-msgid "System language"
-msgstr "Idioma"
+#: mod/contacts.php:739
+msgid "Only show hidden contacts"
+msgstr "Mostrar solo contactos ocultos"
 
-#: mod/admin.php:946
-msgid "System theme"
-msgstr "Tema"
+#: mod/contacts.php:796
+msgid "Search your contacts"
+msgstr "Buscar en tus contactos"
 
-#: mod/admin.php:946
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración <a href='#' id='cnftheme'>cambiar configuración del tema</a>"
+#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:704
+msgid "Update"
+msgstr "Actualizar"
 
-#: mod/admin.php:947
-msgid "Mobile system theme"
-msgstr "Tema de sistema móvil"
+#: mod/contacts.php:807 mod/contacts.php:1008
+msgid "Archive"
+msgstr "Archivo"
 
-#: mod/admin.php:947
-msgid "Theme for mobile devices"
-msgstr "Tema para dispositivos móviles"
+#: mod/contacts.php:807 mod/contacts.php:1008
+msgid "Unarchive"
+msgstr "Sin archivar"
 
-#: mod/admin.php:948
-msgid "SSL link policy"
-msgstr "Política de enlaces SSL"
+#: mod/contacts.php:810
+msgid "Batch Actions"
+msgstr "Accones en lote"
 
-#: mod/admin.php:948
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL"
+#: mod/contacts.php:856
+msgid "View all contacts"
+msgstr "Ver todos los contactos"
 
-#: mod/admin.php:949
-msgid "Force SSL"
-msgstr "Forzar SSL"
+#: mod/contacts.php:866
+msgid "View all common friends"
+msgstr "Ver todos los conocidos en común "
 
-#: mod/admin.php:949
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."
+#: mod/contacts.php:873
+msgid "Advanced Contact Settings"
+msgstr "Configuración avanzada"
 
-#: mod/admin.php:950
-msgid "Old style 'Share'"
-msgstr "Viejo estilo de 'reenviar'"
+#: mod/contacts.php:916
+msgid "Mutual Friendship"
+msgstr "Amistad recíproca"
 
-#: mod/admin.php:950
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Desactiva el elemento bbcode 'reenviar' para objetos repetidos."
+#: mod/contacts.php:920
+msgid "is a fan of yours"
+msgstr "es tu fan"
 
-#: mod/admin.php:951
-msgid "Hide help entry from navigation menu"
-msgstr "Ocultar la ayuda en el menú de navegación"
+#: mod/contacts.php:924
+msgid "you are a fan of"
+msgstr "eres fan de"
 
-#: mod/admin.php:951
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente."
+#: mod/contacts.php:994
+msgid "Toggle Blocked status"
+msgstr "Cambiar bloqueados"
 
-#: mod/admin.php:952
-msgid "Single user instance"
-msgstr "Sesión de usuario único"
+#: mod/contacts.php:1002
+msgid "Toggle Ignored status"
+msgstr "Cambiar ignorados"
 
-#: mod/admin.php:952
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Haz esta sesión multi-usuario o usuario único para el usuario"
+#: mod/contacts.php:1010
+msgid "Toggle Archive status"
+msgstr "Cambiar archivados"
 
-#: mod/admin.php:953
-msgid "Maximum image size"
-msgstr "Tamaño máximo de la imagen"
+#: mod/contacts.php:1018
+msgid "Delete contact"
+msgstr "Eliminar contacto"
 
-#: mod/admin.php:953
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite."
+#: mod/directory.php:197 view/theme/vier/theme.php:201
+msgid "Global Directory"
+msgstr "Directorio global"
 
-#: mod/admin.php:954
-msgid "Maximum image length"
-msgstr "Largo máximo de imagen"
+#: mod/directory.php:199
+msgid "Find on this site"
+msgstr "Buscar en este sitio"
 
-#: mod/admin.php:954
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites."
+#: mod/directory.php:201
+msgid "Results for:"
+msgstr "Resultados para:"
 
-#: mod/admin.php:955
-msgid "JPEG image quality"
-msgstr "Calidad de imagen JPEG"
+#: mod/directory.php:203
+msgid "Site Directory"
+msgstr "Directorio del sitio"
 
-#: mod/admin.php:955
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima."
+#: mod/directory.php:210
+msgid "No entries (some entries may be hidden)."
+msgstr "Sin entradas (algunas pueden que estén ocultas)."
 
-#: mod/admin.php:957
-msgid "Register policy"
-msgstr "Política de registros"
+#: mod/dirfind.php:36
+#, php-format
+msgid "People Search - %s"
+msgstr "Buscar perfiles - %s"
 
-#: mod/admin.php:958
-msgid "Maximum Daily Registrations"
-msgstr "Registros Máximos Diarios"
+#: mod/dirfind.php:47
+#, php-format
+msgid "Forum Search - %s"
+msgstr "Búsqueda de foro - %s"
 
-#: mod/admin.php:958
-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 anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto."
+#: mod/dirfind.php:240 mod/match.php:107
+msgid "No matches"
+msgstr "Sin conincidencias"
 
-#: mod/admin.php:959
-msgid "Register text"
-msgstr "Términos"
+#: mod/display.php:473
+msgid "Item has been removed."
+msgstr "El elemento ha sido eliminado."
 
-#: mod/admin.php:959
-msgid "Will be displayed prominently on the registration page."
-msgstr "Se mostrará en un lugar destacado en la página de registro."
+#: mod/events.php:95 mod/events.php:97
+msgid "Event can not end before it has started."
+msgstr "Un evento no puede terminar antes de su comienzo."
 
-#: mod/admin.php:960
-msgid "Accounts abandoned after x days"
-msgstr "Cuentas abandonadas después de x días"
+#: mod/events.php:104 mod/events.php:106
+msgid "Event title and start time are required."
+msgstr "Título del evento y hora de inicio requeridas."
 
-#: mod/admin.php:960
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal."
+#: mod/events.php:381
+msgid "Create New Event"
+msgstr "Crea un evento nuevo"
 
-#: mod/admin.php:961
-msgid "Allowed friend domains"
-msgstr "Dominios amigos permitidos"
+#: mod/events.php:482
+msgid "Event details"
+msgstr "Detalles del evento"
 
-#: mod/admin.php:961
-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 separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"
+#: mod/events.php:483
+msgid "Starting date and Title are required."
+msgstr "Se requiere fecha de comienzo y titulo"
 
-#: mod/admin.php:962
-msgid "Allowed email domains"
-msgstr "Dominios de correo permitidos"
+#: mod/events.php:484 mod/events.php:485
+msgid "Event Starts:"
+msgstr "Inicio del evento:"
 
-#: mod/admin.php:962
-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 separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"
+#: mod/events.php:486 mod/events.php:502
+msgid "Finish date/time is not known or not relevant"
+msgstr "La fecha/hora de finalización no es conocida o es irrelevante."
 
-#: mod/admin.php:963
-msgid "Block public"
-msgstr "Bloqueo público"
+#: mod/events.php:488 mod/events.php:489
+msgid "Event Finishes:"
+msgstr "Finalización del evento:"
 
-#: mod/admin.php:963
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión."
+#: mod/events.php:490 mod/events.php:503
+msgid "Adjust for viewer timezone"
+msgstr "Ajuste de zona horaria"
 
-#: mod/admin.php:964
-msgid "Force publish"
-msgstr "Forzar publicación"
+#: mod/events.php:492
+msgid "Description:"
+msgstr "Descripción:"
 
-#: mod/admin.php:964
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio."
+#: mod/events.php:496 mod/events.php:498
+msgid "Title:"
+msgstr "Título:"
 
-#: mod/admin.php:965
-msgid "Global directory URL"
-msgstr "URL del directorio global."
+#: mod/events.php:499 mod/events.php:500
+msgid "Share this event"
+msgstr "Comparte este evento"
 
-#: mod/admin.php:965
-msgid ""
-"URL to the global directory. If this is not set, the global directory is "
-"completely unavailable to the application."
-msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia."
+#: mod/install.php:139
+msgid "Friendica Communications Server - Setup"
+msgstr "Servidor de comunicación Friendica - Configuración"
 
-#: mod/admin.php:966
-msgid "Allow threaded items"
-msgstr "Permitir elementos en hilo"
+#: mod/install.php:145
+msgid "Could not connect to database."
+msgstr "No es posible la conexión con la base de datos."
 
-#: mod/admin.php:966
-msgid "Allow infinite level threading for items on this site."
-msgstr "Permitir infinitos niveles de hilo para los elementos de este sitio."
+#: mod/install.php:149
+msgid "Could not create table."
+msgstr "No se puede crear la tabla."
 
-#: mod/admin.php:967
-msgid "Private posts by default for new users"
-msgstr "Publicaciones privadas por defecto para usuarios nuevos"
+#: mod/install.php:155
+msgid "Your Friendica site database has been installed."
+msgstr "La base de datos de su sitio web de Friendica ha sido instalada."
 
-#: mod/admin.php:967
+#: mod/install.php:160
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público."
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql."
 
-#: mod/admin.php:968
-msgid "Don't include post content in email notifications"
-msgstr "No incluir el contenido del post en las notificaciones de correo electrónico"
+#: mod/install.php:161 mod/install.php:230 mod/install.php:602
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Por favor, consulta el archivo \"INSTALL.txt\"."
 
-#: mod/admin.php:968
-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 "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad."
+#: mod/install.php:173
+msgid "Database already in use."
+msgstr "Base de datos ya se encuentra en uso"
 
-#: mod/admin.php:969
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones."
+#: mod/install.php:227
+msgid "System check"
+msgstr "Verificación del sistema"
 
-#: mod/admin.php:969
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."
+#: mod/install.php:232
+msgid "Check again"
+msgstr "Compruebalo de nuevo"
 
-#: mod/admin.php:970
-msgid "Don't embed private images in posts"
-msgstr "No agregar imágenes privados en las publicaciones"
+#: mod/install.php:251
+msgid "Database connection"
+msgstr "Conexión con la base de datos"
 
-#: mod/admin.php:970
+#: mod/install.php:252
 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 "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar."
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos."
 
-#: mod/admin.php:971
-msgid "Allow Users to set remote_self"
-msgstr "Permitir a los usuarios de definir perfiles_remotos"
+#: mod/install.php:253
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones."
 
-#: mod/admin.php:971
+#: mod/install.php:254
 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 "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones  de este contacto seran re-publicado  en el muro del perfil."
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar."
 
-#: mod/admin.php:972
-msgid "Block multiple registrations"
-msgstr "Bloquear registros multiples"
+#: mod/install.php:258
+msgid "Database Server Name"
+msgstr "Nombre del servidor de la base de datos"
 
-#: mod/admin.php:972
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas."
+#: mod/install.php:259
+msgid "Database Login Name"
+msgstr "Usuario de la base de datos"
 
-#: mod/admin.php:973
-msgid "OpenID support"
-msgstr "Soporte OpenID"
+#: mod/install.php:260
+msgid "Database Login Password"
+msgstr "Contraseña de la base de datos"
 
-#: mod/admin.php:973
-msgid "OpenID support for registration and logins."
-msgstr "Soporte OpenID para registros y accesos."
+#: mod/install.php:261
+msgid "Database Name"
+msgstr "Nombre de la base de datos"
 
-#: mod/admin.php:974
-msgid "Fullname check"
-msgstr "Comprobar Nombre completo"
+#: mod/install.php:262 mod/install.php:303
+msgid "Site administrator email address"
+msgstr "Dirección de correo del administrador de la web"
 
-#: mod/admin.php:974
+#: mod/install.php:262 mod/install.php:303
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam"
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web."
 
-#: mod/admin.php:975
-msgid "UTF-8 Regular expressions"
-msgstr "Expresiones regulares UTF-8"
+#: mod/install.php:266 mod/install.php:306
+msgid "Please select a default timezone for your website"
+msgstr "Por favor, selecciona la zona horaria predeterminada para tu web"
 
-#: mod/admin.php:975
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Usar expresiones regulares de UTF8 en PHP"
+#: mod/install.php:293
+msgid "Site settings"
+msgstr "Configuración de la página web"
 
-#: mod/admin.php:976
-msgid "Community Page Style"
-msgstr "Estilo de pagina de comunidad"
+#: mod/install.php:307
+msgid "System Language:"
+msgstr "Sistema de idioma:"
 
-#: mod/admin.php:976
+#: mod/install.php:307
 msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Tipo de pagina de comunidad a visualizar. 'Comunidad global' muestra todas las publicaciones publicas de la red abierta federada que llega a este servidor."
+"Set the default language for your Friendica installation interface and to "
+"send emails."
+msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails."
 
-#: mod/admin.php:977
-msgid "Posts per user on community page"
-msgstr "Publicaciones por usuario en la pagina de comunidad"
+#: mod/install.php:347
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web."
 
-#: mod/admin.php:977
+#: mod/install.php:348
 msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')"
+"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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
+"up-the-poller'>'Setup the poller'</a>"
+msgstr "Si no tienes una versión de command line de php installado en el servidor, no sera posible de efectuar polling como trabajo de fondo a traves de cron. Vea <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
 
-#: mod/admin.php:978
-msgid "Enable OStatus support"
-msgstr "Permitir soporte OStatus"
+#: mod/install.php:352
+msgid "PHP executable path"
+msgstr "Dirección al ejecutable PHP"
 
-#: mod/admin.php:978
+#: mod/install.php:352
 msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Proporcionar OStatus compatibilidad integrada (StatusNet, GNU Social, Quitter etc.). Todas las comunicaciones en OStatus son publicas así que eventuales advertencias serán ocasionalmente desplegadas."
-
-#: mod/admin.php:979
-msgid "OStatus conversation completion interval"
-msgstr "Intervalo de actualización de conversaciones OStatus"
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación."
 
-#: mod/admin.php:979
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Cuan seguido el recolector deberá buscar nuevas entradas en OStatus? Esto puede ser un trabajo de mucha carga para los recursos del servidor."
+#: mod/install.php:357
+msgid "Command line PHP"
+msgstr "Línea de comandos PHP"
 
-#: mod/admin.php:980
-msgid "Only import OStatus threads from our contacts"
-msgstr "Solo importar OStatus temas de nuestros (?) contactos."
+#: mod/install.php:366
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)"
 
-#: mod/admin.php:980
-msgid ""
-"Normally we import every content from our OStatus contacts. With this option"
-" we only store threads that are started by a contact that is known on our "
-"system."
-msgstr "Normalmente importamos todo el contenido de los contactos de OStatus. Con esta opción solamente se guardan temas que fueron iniciados por contactos que son conocidos de la instancia.\n(nota de traducción, no se entiende muy bien la función en base al texto original)"
+#: mod/install.php:367
+msgid "Found PHP version: "
+msgstr "Versión PHP encontrada:"
 
-#: mod/admin.php:981
-msgid "OStatus support can only be enabled if threading is enabled."
-msgstr "Solo se puede habilitar el soporte OStatus  si threading (comentarios en fila) se encuentra habilitado."
+#: mod/install.php:369
+msgid "PHP cli binary"
+msgstr "PHP cli binario"
 
-#: mod/admin.php:983
+#: mod/install.php:380
 msgid ""
-"Diaspora support can't be enabled because Friendica was installed into a sub"
-" directory."
-msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado."
 
-#: mod/admin.php:984
-msgid "Enable Diaspora support"
-msgstr "Habilitar el soporte para Diaspora*"
+#: mod/install.php:381
+msgid "This is required for message delivery to work."
+msgstr "Esto es necesario para que funcione la entrega de mensajes."
 
-#: mod/admin.php:984
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Provee una compatibilidad con la red de Diaspora."
+#: mod/install.php:383
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: mod/admin.php:985
-msgid "Only allow Friendica contacts"
-msgstr "Permitir solo contactos de Friendica"
+#: mod/install.php:404
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Error:  La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado"
 
-#: mod/admin.php:985
+#: mod/install.php:405
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados."
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: mod/admin.php:986
-msgid "Verify SSL"
-msgstr "Verificar SSL"
+#: mod/install.php:407
+msgid "Generate encryption keys"
+msgstr "Generar claves de encriptación"
 
-#: mod/admin.php:986
-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 quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados."
+#: mod/install.php:414
+msgid "libCurl PHP module"
+msgstr "Módulo PHP libCurl"
 
-#: mod/admin.php:987
-msgid "Proxy user"
-msgstr "Usuario proxy"
+#: mod/install.php:415
+msgid "GD graphics PHP module"
+msgstr "Módulo PHP gráficos GD"
 
-#: mod/admin.php:988
-msgid "Proxy URL"
-msgstr "Dirección proxy"
+#: mod/install.php:416
+msgid "OpenSSL PHP module"
+msgstr "Módulo PHP OpenSSL"
 
-#: mod/admin.php:989
-msgid "Network timeout"
-msgstr "Tiempo de espera de red"
+#: mod/install.php:417
+msgid "mysqli PHP module"
+msgstr "Módulo PHP mysqli"
 
-#: mod/admin.php:989
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)."
+#: mod/install.php:418
+msgid "mb_string PHP module"
+msgstr "Módulo PHP mb_string"
 
-#: mod/admin.php:990
-msgid "Delivery interval"
-msgstr "Intervalo de actualización"
+#: mod/install.php:419
+msgid "mcrypt PHP module"
+msgstr "modulo mycrypt PHP"
 
-#: mod/admin.php:990
-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 "Retrasar la entrega de procesos en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendamos: 4-5 para los servidores compartidos, 2-3 para servidores privados virtuales, 0-1 para los grandes servidores dedicados."
+#: mod/install.php:420
+msgid "XML PHP module"
+msgstr "Módulo XML PHP"
 
-#: mod/admin.php:991
-msgid "Poll interval"
-msgstr "Intervalo de sondeo"
+#: mod/install.php:421
+msgid "iconv module"
+msgstr "Módulo iconv"
 
-#: mod/admin.php:991
+#: mod/install.php:425 mod/install.php:427
+msgid "Apache mod_rewrite module"
+msgstr "Módulo mod_rewrite de Apache"
+
+#: mod/install.php:425
 msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Retrasar los procesos en segundo plano de sondeo en esta cantidad de segundos para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega."
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado."
 
-#: mod/admin.php:992
-msgid "Maximum Load Average"
-msgstr "Promedio de carga máxima"
+#: mod/install.php:433
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado."
 
-#: mod/admin.php:992
+#: mod/install.php:437
 msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50."
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado."
 
-#: mod/admin.php:993
-msgid "Maximum Load Average (Frontend)"
-msgstr "Carga máxima promedio (frontend)"
+#: mod/install.php:441
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Error: El módulo de PHP openssl es necesario, pero  no está instalado."
 
-#: mod/admin.php:993
-msgid "Maximum system load before the frontend quits service - default 50."
-msgstr "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50."
+#: mod/install.php:445
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Error: El módulo de PHP mysqli es necesario, pero no está instalado."
 
-#: mod/admin.php:994
-msgid "Maximum table size for optimization"
-msgstr "Tamaño máximo de las tablas para la optimización."
+#: mod/install.php:449
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado."
 
-#: mod/admin.php:994
-msgid ""
-"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
-"Enter -1 to disable it."
-msgstr "Tamaño máximo de tablas (en MB) para la optimización automática - por defecto 100MB. Ingrese -1 para deshabilitar."
+#: mod/install.php:453
+msgid "Error: mcrypt PHP module required but not installed."
+msgstr "Error: modulo mycrypt PHP requerido pero no instalado."
 
-#: mod/admin.php:995
-msgid "Minimum level of fragmentation"
-msgstr "Nivel mínimo de fragmentación "
+#: mod/install.php:457
+msgid "Error: iconv PHP module required but not installed."
+msgstr "Error: módulo iconv PHP requerido pero no instalado."
 
-#: mod/admin.php:995
+#: mod/install.php:466
 msgid ""
-"Minimum fragmenation level to start the automatic optimization - default "
-"value is 30%."
-msgstr "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. "
-
-#: mod/admin.php:997
-msgid "Periodical check of global contacts"
-msgstr "Verificación periódica de los contactos globales."
+"If you are using php_cli, please make sure that mcrypt module is enabled in "
+"its config file"
+msgstr "Si está utilizando php_cli, por favor asegúrese de que el módulo mcrypt está habilitado en este archivo de configuración"
 
-#: mod/admin.php:997
+#: mod/install.php:469
 msgid ""
-"If enabled, the global contacts are checked periodically for missing or "
-"outdated data and the vitality of the contacts and servers."
-msgstr "Habilitado los contactos globales son verificado periódicamente  por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores."
+"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
+"encryption layer."
+msgstr "Función mycrypt_create_iv() no esta definido. Esto es preciso para habilitar RINO2 encryption layer."
 
-#: mod/admin.php:998
-msgid "Days between requery"
-msgstr "Días entre búsquedas"
+#: mod/install.php:471
+msgid "mcrypt_create_iv() function"
+msgstr "mcrypt_create_iv() función"
 
-#: mod/admin.php:998
-msgid "Number of days after which a server is requeried for his contacts."
-msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos."
+#: mod/install.php:479
+msgid "Error, XML PHP module required but not installed."
+msgstr "Error, módulo XML PHP requerido pero no instalado."
 
-#: mod/admin.php:999
-msgid "Discover contacts from other servers"
-msgstr "Descubrir contactos de otros servidores"
+#: mod/install.php:494
+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 "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo."
 
-#: mod/admin.php:999
+#: mod/install.php:495
 msgid ""
-"Periodically query other servers for contacts. You can choose between "
-"'users': the users on the remote system, 'Global Contacts': active contacts "
-"that are known on the system. The fallback is meant for Redmatrix servers "
-"and older friendica servers, where global contacts weren't available. The "
-"fallback increases the server load, so the recommened setting is 'Users, "
-"Global Contacts'."
-msgstr "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'"
+"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 "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas."
 
-#: mod/admin.php:1000
-msgid "Timeframe for fetching global contacts"
-msgstr "Intervalos de tiempo para revisar contactos globales."
+#: mod/install.php:496
+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 "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica."
 
-#: mod/admin.php:1000
+#: mod/install.php:497
 msgid ""
-"When the discovery is activated, this value defines the timeframe for the "
-"activity of the global contacts that are fetched from other servers."
-msgstr "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)"
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones."
 
-#: mod/admin.php:1001
-msgid "Search the local directory"
-msgstr "Buscar el directorio local"
+#: mod/install.php:500
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php tiene permiso de escritura"
 
-#: mod/admin.php:1001
+#: mod/install.php:510
 msgid ""
-"Search the local directory instead of the global directory. When searching "
-"locally, every search will be executed on the global directory in the "
-"background. This improves the search results when the search is repeated."
-msgstr "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida."
-
-#: mod/admin.php:1003
-msgid "Publish server information"
-msgstr "Publicar información del servidor"
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar."
 
-#: mod/admin.php:1003
+#: mod/install.php:511
 msgid ""
-"If enabled, general server and usage data will be published. The data "
-"contains the name and version of the server, number of users with public "
-"profiles, number of posts and the activated protocols and connectors. See <a"
-" href='http://the-federation.info/'>the-federation.info</a> for details."
-msgstr "Si habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea <a href='http://the-federation.info/'>the-federation.info</a> por detalles."
+"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 poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica."
 
-#: mod/admin.php:1005
-msgid "Use MySQL full text engine"
-msgstr "Usar motor MySQL de texto completo"
+#: mod/install.php:512
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta."
 
-#: mod/admin.php:1005
+#: mod/install.php:513
 msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Activa el motor de texto completo. Agiliza las búsquedas, pero solo busca cuatro o más caracteres."
+"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 medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene."
 
-#: mod/admin.php:1006
-msgid "Suppress Language"
-msgstr "Suprimir idiomas"
+#: mod/install.php:516
+msgid "view/smarty3 is writable"
+msgstr "Se puede escribir en /view/smarty3"
 
-#: mod/admin.php:1006
-msgid "Suppress language information in meta information about a posting."
-msgstr "Suprimir la información de datos meta sobre informaciones de idiomas en las publicaciones."
+#: mod/install.php:532
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración."
 
-#: mod/admin.php:1007
-msgid "Suppress Tags"
-msgstr "Suprimir tags"
+#: mod/install.php:534
+msgid "Url rewrite is working"
+msgstr "Reescribiendo la dirección..."
 
-#: mod/admin.php:1007
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Suprimir la lista de tags al final de una publicación."
+#: mod/install.php:551
+msgid "ImageMagick PHP extension is installed"
+msgstr "ImageMagick PHP extension is installed"
 
-#: mod/admin.php:1008
-msgid "Path to item cache"
-msgstr "Ruta a la caché del objeto"
+#: mod/install.php:553
+msgid "ImageMagick supports GIF"
+msgstr "ImageMagick supporta GIF"
 
-#: mod/admin.php:1008
-msgid "The item caches buffers generated bbcode and external images."
-msgstr "El buffer de cache de items generado para bbcodes e imágenes externas. "
+#: mod/install.php:561
+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 "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web."
 
-#: mod/admin.php:1009
-msgid "Cache duration in seconds"
-msgstr "Duración de la caché en segundos"
+#: mod/install.php:600
+msgid "<h1>What next</h1>"
+msgstr "<h1>¿Ahora qué?</h1>"
 
-#: mod/admin.php:1009
+#: mod/install.php:601
 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 cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1."
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo"
 
-#: mod/admin.php:1010
-msgid "Maximum numbers of comments per post"
-msgstr "Numero máximo de respuestas por tema"
+#: mod/maintenance.php:9
+msgid "System down for maintenance"
+msgstr "Servicio suspendido por mantenimiento"
 
-#: mod/admin.php:1010
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."
+#: mod/match.php:33
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado."
 
-#: mod/admin.php:1011
-msgid "Path for lock file"
-msgstr "Ruta al archivo protegido"
+#: mod/match.php:86
+msgid "is interested in:"
+msgstr "estás interesado en:"
 
-#: mod/admin.php:1011
-msgid ""
-"The lock file is used to avoid multiple pollers at one time. Only define a "
-"folder here."
-msgstr "El archivo lock es usado para evitar multiples pooler (recolectores de información) a la vez. Defina solo una carpeta aquí."
+#: mod/match.php:100
+msgid "Profile Match"
+msgstr "Coincidencias de Perfil"
 
-#: mod/admin.php:1012
-msgid "Temp path"
-msgstr "Ruta a los temporales"
+#: mod/profile.php:179
+msgid "Tips for New Members"
+msgstr "Consejos para nuevos miembros"
 
-#: mod/admin.php:1012
+#: mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "¿Estás seguro de que quieres borrar esta sugerencia?"
+
+#: mod/suggest.php:71
 msgid ""
-"If you have a restricted system where the webserver can't access the system "
-"temp path, enter another path here."
-msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. "
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."
 
-#: mod/admin.php:1013
-msgid "Base path to installation"
-msgstr "Ruta base para la instalación"
+#: mod/suggest.php:84 mod/suggest.php:104
+msgid "Ignore/Hide"
+msgstr "Ignorar/Ocultar"
 
-#: mod/admin.php:1013
-msgid ""
-"If the system cannot detect the correct path to your installation, enter the"
-" correct path here. This setting should only be set if you are using a "
-"restricted system and symbolic links to your webroot."
-msgstr "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."
+#: mod/update_community.php:19 mod/update_display.php:23
+#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenido incrustado - recarga la página para verlo]"
 
-#: mod/admin.php:1014
-msgid "Disable picture proxy"
-msgstr "Deshabilitar proxy de imagen"
+#: mod/admin.php:92
+msgid "Theme settings updated."
+msgstr "Configuración de la apariencia actualizada."
 
-#: mod/admin.php:1014
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda."
+#: mod/admin.php:156 mod/admin.php:951
+msgid "Site"
+msgstr "Sitio"
 
-#: mod/admin.php:1015
-msgid "Enable old style pager"
-msgstr "Habilitar paginación estilo viejo"
+#: mod/admin.php:157 mod/admin.php:895 mod/admin.php:1400 mod/admin.php:1416
+msgid "Users"
+msgstr "Usuarios"
 
-#: mod/admin.php:1015
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr "La paginación al estilo viejo tiene números de paginas pero enlentece masivamente la velocidad de la pagina."
+#: mod/admin.php:158 mod/admin.php:1518 mod/admin.php:1578 mod/settings.php:74
+msgid "Plugins"
+msgstr "Módulos"
 
-#: mod/admin.php:1016
-msgid "Only search in tags"
-msgstr "Solo buscar en tags"
+#: mod/admin.php:159 mod/admin.php:1776 mod/admin.php:1826
+msgid "Themes"
+msgstr "Temas"
 
-#: mod/admin.php:1016
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."
+#: mod/admin.php:160 mod/settings.php:52
+msgid "Additional features"
+msgstr "Características adicionales"
 
-#: mod/admin.php:1018
-msgid "New base url"
-msgstr "Nueva URLbase"
+#: mod/admin.php:161
+msgid "DB updates"
+msgstr "Actualizaciones de la Base de Datos"
 
-#: mod/admin.php:1018
-msgid ""
-"Change base url for this server. Sends relocate message to all DFRN contacts"
-" of all users."
-msgstr "Cambiar base URL para este servidor. Envía mensajes de relocalisación a todos los contactos DFRN."
+#: mod/admin.php:162 mod/admin.php:406
+msgid "Inspect Queue"
+msgstr "Inspeccionar cola"
 
-#: mod/admin.php:1020
-msgid "RINO Encryption"
-msgstr "Encryptado RINO"
+#: mod/admin.php:163 mod/admin.php:372
+msgid "Federation Statistics"
+msgstr "Estadísticas de federación"
 
-#: mod/admin.php:1020
-msgid "Encryption layer between nodes."
-msgstr "Capa de encryptación entre nodos."
+#: mod/admin.php:177 mod/admin.php:188 mod/admin.php:1900
+msgid "Logs"
+msgstr "Registros"
 
-#: mod/admin.php:1021
-msgid "Embedly API key"
-msgstr "Embedly llave de API (API key) "
+#: mod/admin.php:178 mod/admin.php:1968
+msgid "View Logs"
+msgstr "Ver registro de depuración"
 
-#: mod/admin.php:1021
-msgid ""
-"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
-"web pages. This is an optional parameter."
-msgstr "<a href='http://embed.ly'>Embedly</a> es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional."
+#: mod/admin.php:179
+msgid "probe address"
+msgstr "probar direccion"
 
-#: mod/admin.php:1023
-msgid "Enable 'worker' background processing"
-msgstr "Habilitar procesos de fondo del \"trabajador\""
+#: mod/admin.php:180
+msgid "check webfinger"
+msgstr "Verificar webfinger"
 
-#: mod/admin.php:1023
-msgid ""
-"The worker background processing limits the number of parallel background "
-"jobs to a maximum number and respects the system load."
-msgstr "Limita los procesos del trabajo de fondo del numero paralelo de trabajos a un numero máximo que respeta la carga del sistema."
+#: mod/admin.php:187
+msgid "Plugin Features"
+msgstr "Características del módulo"
 
-#: mod/admin.php:1024
-msgid "Maximum number of parallel workers"
-msgstr "Numero máximo de trabajos paralelos de fondo."
+#: mod/admin.php:189
+msgid "diagnostics"
+msgstr "diagnosticos"
 
-#: mod/admin.php:1024
-msgid ""
-"On shared hosters set this to 2. On larger systems, values of 10 are great. "
-"Default value is 4."
-msgstr "Ajustar a 2 en un servidor compartido (shared hosting).\nEn sistemas grandes valores como 10 son excelentes.\nValor por defecto es 4."
+#: mod/admin.php:190
+msgid "User registrations waiting for confirmation"
+msgstr "Registro de usuarios esperando la confirmación"
 
-#: mod/admin.php:1025
-msgid "Don't use 'proc_open' with the worker"
-msgstr "No use 'proc_open' junto al \"trabajador\"!"
+#: mod/admin.php:306
+msgid "unknown"
+msgstr "desconocido"
 
-#: mod/admin.php:1025
+#: mod/admin.php:365
 msgid ""
-"Enable this if your system doesn't allow the use of 'proc_open'. This can "
-"happen on shared hosters. If this is enabled you should increase the "
-"frequency of poller calls in your crontab."
-msgstr "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)"
-
-#: mod/admin.php:1026
-msgid "Enable fastlane"
-msgstr "Habilitar ascenso rápido"
+"This page offers you some numbers to the known part of the federated social "
+"network your Friendica node is part of. These numbers are not complete but "
+"only reflect the part of the network your node is aware of."
+msgstr "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. "
 
-#: mod/admin.php:1026
+#: mod/admin.php:366
 msgid ""
-"When enabed, the fastlane mechanism starts an additional worker if processes"
-" with higher priority are blocked by processes of lower priority."
-msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."
+"The <em>Auto Discovered Contact Directory</em> feature is not enabled, it "
+"will improve the data displayed here."
+msgstr "El modulo <em>directorio de contactos encontrados</em> no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí."
 
-#: mod/admin.php:1055
-msgid "Update has been marked successful"
-msgstr "La actualización se ha completado con éxito"
+#: mod/admin.php:371 mod/admin.php:405 mod/admin.php:483 mod/admin.php:950
+#: mod/admin.php:1399 mod/admin.php:1517 mod/admin.php:1577 mod/admin.php:1775
+#: mod/admin.php:1825 mod/admin.php:1899 mod/admin.php:1967
+msgid "Administration"
+msgstr "Administración"
 
-#: mod/admin.php:1063
+#: mod/admin.php:378
 #, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Actualización de base de datos %s fue aplicada con éxito."
+msgid "Currently this node is aware of %d nodes from the following platforms:"
+msgstr "Actualmente este nodo reconoce %d nodos de las siguientes plataformas:"
 
-#: mod/admin.php:1066
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"
+#: mod/admin.php:408
+msgid "ID"
+msgstr "ID"
 
-#: mod/admin.php:1078
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Paso %s fallo con el error: %s"
+#: mod/admin.php:409
+msgid "Recipient Name"
+msgstr "Nombre del recipiente"
 
-#: mod/admin.php:1081
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Actualización %s aplicada con éxito."
+#: mod/admin.php:410
+msgid "Recipient Profile"
+msgstr "Perfil del recipiente"
 
-#: mod/admin.php:1085
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "La actualización %s no ha informado, se desconoce el estado."
+#: mod/admin.php:412
+msgid "Created"
+msgstr "Creado"
+
+#: mod/admin.php:413
+msgid "Last Tried"
+msgstr "Ultimo intento"
 
-#: mod/admin.php:1087
+#: mod/admin.php:414
+msgid ""
+"This page lists the content of the queue for outgoing postings. These are "
+"postings the initial delivery failed for. They will be resend later and "
+"eventually deleted if the delivery fails permanently."
+msgstr "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. "
+
+#: mod/admin.php:438
 #, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "No había función adicional de actualización %s que necesitaba ser requerida."
+msgid ""
+"Your DB still runs with MyISAM tables. You should change the engine type to "
+"InnoDB. As Friendica will use InnoDB only features in the future, you should"
+" change this! See <a href=\"%s\">here</a> for a guide that may be helpful "
+"converting the table engines. You may also use the "
+"<tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your "
+"Friendica installation.<br />"
+msgstr "Su DB aún funciona con las tablas MyISAM. Debería cambiar el tipo de motror a InnoDB. ¡Como Friendica sólo usará las características de InnoDB en el futuro, debería cambiar esto! Vea <a href=\"%s\">aquí</a> para una guía que puede ayudar a convertir las tablas de motor. También puede usar <tt>convert_innodb.sql</tt> en el directorio <tt>/util</tt> de su instalación de Friendica.<br />"
 
-#: mod/admin.php:1106
-msgid "No failed updates."
-msgstr "Actualizaciones sin fallos."
+#: mod/admin.php:443
+msgid ""
+"You are using a MySQL version which does not support all features that "
+"Friendica uses. You should consider switching to MariaDB."
+msgstr "Está usando una versión de MySQL que no soporta todas las características de Friendica. Debería considerar cambiar a MariaDB."
 
-#: mod/admin.php:1107
-msgid "Check database structure"
-msgstr "Revisar estructura de la base de datos"
+#: mod/admin.php:447 mod/admin.php:1348
+msgid "Normal Account"
+msgstr "Cuenta normal"
 
-#: mod/admin.php:1112
-msgid "Failed Updates"
-msgstr "Actualizaciones fallidas"
+#: mod/admin.php:448 mod/admin.php:1349
+msgid "Soapbox Account"
+msgstr "Cuenta tribuna"
 
-#: mod/admin.php:1113
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado."
+#: mod/admin.php:449 mod/admin.php:1350
+msgid "Community/Celebrity Account"
+msgstr "Cuenta de Comunidad/Celebridad"
 
-#: mod/admin.php:1114
-msgid "Mark success (if update was manually applied)"
-msgstr "Marcar como correcta (si actualizaste manualmente)"
+#: mod/admin.php:450 mod/admin.php:1351
+msgid "Automatic Friend Account"
+msgstr "Cuenta de amistad automática"
 
-#: mod/admin.php:1115
-msgid "Attempt to execute this update step automatically"
-msgstr "Intentando ejecutar este paso automáticamente"
+#: mod/admin.php:451
+msgid "Blog Account"
+msgstr "Cuenta de blog"
 
-#: mod/admin.php:1149
-#, 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\tEstimado %1$s,\n\t\t\t\tel administrador de %2$s ha creado una cuenta para usted."
+#: mod/admin.php:452
+msgid "Private Forum"
+msgstr "Foro privado"
 
-#: mod/admin.php:1152
-#, 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\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%1$s\n\t\t\tNombre de la cuenta:\t\t%2$s\n\t\t\tContraseña:\t\t%3$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a  %4$s."
+#: mod/admin.php:478
+msgid "Message queues"
+msgstr "Cola de mensajes"
 
-#: mod/admin.php:1196
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s usuario bloqueado/desbloqueado"
-msgstr[1] "%s usuarios bloqueados/desbloqueados"
+#: mod/admin.php:484
+msgid "Summary"
+msgstr "Resumen"
 
-#: mod/admin.php:1203
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s usuario eliminado"
-msgstr[1] "%s usuarios eliminados"
+#: mod/admin.php:487
+msgid "Registered users"
+msgstr "Usuarios registrados"
 
-#: mod/admin.php:1250
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Usuario '%s' eliminado"
+#: mod/admin.php:489
+msgid "Pending registrations"
+msgstr "Pendientes de registro"
 
-#: mod/admin.php:1258
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Usuario '%s' desbloqueado"
+#: mod/admin.php:490
+msgid "Version"
+msgstr "Versión"
 
-#: mod/admin.php:1258
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Usuario '%s' bloqueado'"
+#: mod/admin.php:495
+msgid "Active plugins"
+msgstr "Módulos activos"
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Register date"
-msgstr "Fecha de registro"
+#: mod/admin.php:520
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "No se puede resolver la direccion URL base.\nDeberá tener al menos <scheme>://<domain>"
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Last login"
-msgstr "Último acceso"
+#: mod/admin.php:823
+msgid "RINO2 needs mcrypt php extension to work."
+msgstr "RINO2 precisa la extensión mcrypt para funcionar.  "
 
-#: mod/admin.php:1367 mod/admin.php:1392
-msgid "Last item"
-msgstr "Último elemento"
+#: mod/admin.php:831
+msgid "Site settings updated."
+msgstr "Configuración de actualización."
 
-#: mod/admin.php:1367 mod/settings.php:43
-msgid "Account"
-msgstr "Cuenta"
+#: mod/admin.php:859 mod/settings.php:934
+msgid "No special theme for mobile devices"
+msgstr "No hay tema especial para dispositivos móviles"
 
-#: mod/admin.php:1376
-msgid "Add User"
-msgstr "Agregar usuario"
+#: mod/admin.php:878
+msgid "No community page"
+msgstr "No hay pagina de comunidad"
+
+#: mod/admin.php:879
+msgid "Public postings from users of this site"
+msgstr "Temas públicos de perfiles de este sitio."
 
-#: mod/admin.php:1377
-msgid "select all"
-msgstr "seleccionar todo"
+#: mod/admin.php:880
+msgid "Global community page"
+msgstr "Pagina global de comunidad"
 
-#: mod/admin.php:1378
-msgid "User registrations waiting for confirm"
-msgstr "Registro de usuarios esperando confirmación"
+#: mod/admin.php:886
+msgid "At post arrival"
+msgstr "A la llegada de una publicación"
 
-#: mod/admin.php:1379
-msgid "User waiting for permanent deletion"
-msgstr "Usuario esperando anulación permanente."
+#: mod/admin.php:896
+msgid "Users, Global Contacts"
+msgstr "Perfiles, contactos globales"
 
-#: mod/admin.php:1380
-msgid "Request date"
-msgstr "Solicitud de fecha"
+#: mod/admin.php:897
+msgid "Users, Global Contacts/fallback"
+msgstr "Perfiles, contactos globales/fallback"
 
-#: mod/admin.php:1381
-msgid "No registrations."
-msgstr "Sin registros."
+#: mod/admin.php:901
+msgid "One month"
+msgstr "Un mes"
 
-#: mod/admin.php:1383
-msgid "Deny"
-msgstr "Denegado"
+#: mod/admin.php:902
+msgid "Three months"
+msgstr "Tres meses"
 
-#: mod/admin.php:1385 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Block"
-msgstr "Bloquear"
+#: mod/admin.php:903
+msgid "Half a year"
+msgstr "Medio año"
 
-#: mod/admin.php:1386 mod/contacts.php:605 mod/contacts.php:805
-#: mod/contacts.php:992
-msgid "Unblock"
-msgstr "Desbloquear"
+#: mod/admin.php:904
+msgid "One year"
+msgstr "Un año"
 
-#: mod/admin.php:1387
-msgid "Site admin"
-msgstr "Administrador de la web"
+#: mod/admin.php:909
+msgid "Multi user instance"
+msgstr "Sesión multi usuario"
 
-#: mod/admin.php:1388
-msgid "Account expired"
-msgstr "Cuenta caducada"
+#: mod/admin.php:932
+msgid "Closed"
+msgstr "Cerrado"
 
-#: mod/admin.php:1391
-msgid "New User"
-msgstr "Nuevo usuario"
+#: mod/admin.php:933
+msgid "Requires approval"
+msgstr "Requiere aprobación"
 
-#: mod/admin.php:1392
-msgid "Deleted since"
-msgstr "Borrado desde"
+#: mod/admin.php:934
+msgid "Open"
+msgstr "Abierto"
 
-#: mod/admin.php:1397
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"
+#: mod/admin.php:938
+msgid "No SSL policy, links will track page SSL state"
+msgstr "No existe una política de SSL, los vínculos harán un seguimiento del estado de SSL en la página"
 
-#: mod/admin.php:1398
-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 "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"
+#: mod/admin.php:939
+msgid "Force all links to use SSL"
+msgstr "Forzar todos los enlaces a utilizar SSL"
 
-#: mod/admin.php:1408
-msgid "Name of the new user."
-msgstr "Nombre del nuevo usuario"
+#: mod/admin.php:940
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificación personal, usa SSL solo para enlaces locales (no recomendado)"
 
-#: mod/admin.php:1409
-msgid "Nickname"
-msgstr "Apodo"
+#: mod/admin.php:952 mod/admin.php:1579 mod/admin.php:1827 mod/admin.php:1901
+#: mod/admin.php:2051 mod/settings.php:678 mod/settings.php:788
+#: mod/settings.php:835 mod/settings.php:904 mod/settings.php:996
+#: mod/settings.php:1264
+msgid "Save Settings"
+msgstr "Guardar configuración"
 
-#: mod/admin.php:1409
-msgid "Nickname of the new user."
-msgstr "Apodo del nuevo perfil."
+#: mod/admin.php:953 mod/register.php:272
+msgid "Registration"
+msgstr "Registro"
 
-#: mod/admin.php:1410
-msgid "Email address of the new user."
-msgstr "Dirección de correo del nuevo perfil."
+#: mod/admin.php:954
+msgid "File upload"
+msgstr "Subida de archivo"
 
-#: mod/admin.php:1453
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Módulo %s deshabilitado."
+#: mod/admin.php:955
+msgid "Policies"
+msgstr "Políticas"
 
-#: mod/admin.php:1457
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Módulo %s habilitado."
+#: mod/admin.php:957
+msgid "Auto Discovered Contact Directory"
+msgstr "Directorio de contactos descubierto automáticamente"
 
-#: mod/admin.php:1468 mod/admin.php:1704
-msgid "Disable"
-msgstr "Desactivado"
+#: mod/admin.php:958
+msgid "Performance"
+msgstr "Rendimiento"
 
-#: mod/admin.php:1470 mod/admin.php:1706
-msgid "Enable"
-msgstr "Activado"
+#: mod/admin.php:959
+msgid "Worker"
+msgstr "Trabajador (??)"
 
-#: mod/admin.php:1493 mod/admin.php:1751
-msgid "Toggle"
-msgstr "Activar"
+#: mod/admin.php:960
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Reubicación - ADVERTENCIA: función avanzada. Puede hacer a este servidor inaccesible. "
 
-#: mod/admin.php:1501 mod/admin.php:1760
-msgid "Author: "
-msgstr "Autor:"
+#: mod/admin.php:963
+msgid "Site name"
+msgstr "Nombre del sitio"
 
-#: mod/admin.php:1502 mod/admin.php:1761
-msgid "Maintainer: "
-msgstr "Mantenedor: "
+#: mod/admin.php:964
+msgid "Host name"
+msgstr "Nombre de dominio"
 
-#: mod/admin.php:1554
-msgid "Reload active plugins"
-msgstr "Recargar plugins activos"
+#: mod/admin.php:965
+msgid "Sender Email"
+msgstr "Dirección de origen de correo electrónico"
 
-#: mod/admin.php:1559
-#, php-format
+#: mod/admin.php:965
 msgid ""
-"There are currently no plugins available on your node. You can find the "
-"official plugin repository at %1$s and might find other interesting plugins "
-"in the open plugin registry at %2$s"
-msgstr "No ay plugins habilitados en este nodo. Encontrara los repositorios oficiales de plugins en %1$s y posiblemente encontrara mas plugins interesantes en el registro abierto de plugins aquí %2$s ."
+"The email address your server shall use to send notification emails from."
+msgstr "La dirección de correo electrónico que el servidor debería usar como dirección de envío."
 
-#: mod/admin.php:1664
-msgid "No themes found."
-msgstr "No se encontraron temas."
+#: mod/admin.php:966
+msgid "Banner/Logo"
+msgstr "Imagen/Logotipo"
 
-#: mod/admin.php:1742
-msgid "Screenshot"
-msgstr "Captura de pantalla"
+#: mod/admin.php:967
+msgid "Shortcut icon"
+msgstr "Icono de atajo"
 
-#: mod/admin.php:1802
-msgid "Reload active themes"
-msgstr "Recargar interfaces de usuario activos"
+#: mod/admin.php:967
+msgid "Link to an icon that will be used for browsers."
+msgstr "Enlace hacia un icono que sera usado para el navegador."
 
-#: mod/admin.php:1807
-#, php-format
-msgid "No themes found on the system. They should be paced in %1$s"
-msgstr "No se encuentran interfaces en el sistema. Deberían estar localizados (paced) en  %1$s"
+#: mod/admin.php:968
+msgid "Touch icon"
+msgstr "Icono touch"
 
-#: mod/admin.php:1808
-msgid "[Experimental]"
-msgstr "[Experimental]"
+#: mod/admin.php:968
+msgid "Link to an icon that will be used for tablets and mobiles."
+msgstr "Enlace para un icono que sera usado para tablets y moviles."
 
-#: mod/admin.php:1809
-msgid "[Unsupported]"
-msgstr "[Sin soporte]"
+#: mod/admin.php:969
+msgid "Additional Info"
+msgstr "Información adicional"
 
-#: mod/admin.php:1833
-msgid "Log settings updated."
-msgstr "Configuración de registro actualizada."
+#: mod/admin.php:969
+#, php-format
+msgid ""
+"For public servers: you can add additional information here that will be "
+"listed at %s/siteinfo."
+msgstr "Para servidores públicos: información adicional  que sera publicado en %s/siteinfo."
 
-#: mod/admin.php:1865
-msgid "PHP log currently enabled."
-msgstr "Registro PHP actualmente disponible."
+#: mod/admin.php:970
+msgid "System language"
+msgstr "Idioma"
 
-#: mod/admin.php:1867
-msgid "PHP log currently disabled."
-msgstr "Registro PHP actualmente deshabilitado."
+#: mod/admin.php:971
+msgid "System theme"
+msgstr "Tema"
 
-#: mod/admin.php:1876
-msgid "Clear"
-msgstr "Limpiar"
+#: mod/admin.php:971
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema por defecto del sistema, los usuarios podrán elegir el suyo propio en su configuración <a href='#' id='cnftheme'>cambiar configuración del tema</a>"
 
-#: mod/admin.php:1881
-msgid "Enable Debugging"
-msgstr "Habilitar debugging"
+#: mod/admin.php:972
+msgid "Mobile system theme"
+msgstr "Tema de sistema móvil"
 
-#: mod/admin.php:1882
-msgid "Log file"
-msgstr "Archivo de registro"
+#: mod/admin.php:972
+msgid "Theme for mobile devices"
+msgstr "Tema para dispositivos móviles"
 
-#: mod/admin.php:1882
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."
+#: mod/admin.php:973
+msgid "SSL link policy"
+msgstr "Política de enlaces SSL"
 
-#: mod/admin.php:1883
-msgid "Log level"
-msgstr "Nivel de registro"
+#: mod/admin.php:973
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina si los enlaces generados deben ser forzados a utilizar SSL"
 
-#: mod/admin.php:1886
-msgid "PHP logging"
-msgstr "PHP logging"
+#: mod/admin.php:974
+msgid "Force SSL"
+msgstr "Forzar SSL"
 
-#: mod/admin.php:1887
+#: mod/admin.php:974
 msgid ""
-"To enable logging of PHP errors and warnings you can add the following to "
-"the .htconfig.php file of your installation. The filename set in the "
-"'error_log' line is relative to the friendica top-level directory and must "
-"be writeable by the web server. The option '1' for 'log_errors' and "
-"'display_errors' is to enable these options, set to '0' to disable them."
-msgstr "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo."
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Forzar todos las consultas No-SSL a SSL. - ATENCIÓN: en algunos sistemas esto puede generar comportamiento recursivo interminable."
 
-#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
-msgid "Off"
-msgstr "Apagado"
+#: mod/admin.php:975
+msgid "Old style 'Share'"
+msgstr "Viejo estilo de 'reenviar'"
 
-#: mod/admin.php:2014 mod/admin.php:2015 mod/settings.php:776
-msgid "On"
-msgstr "Encendido"
+#: mod/admin.php:975
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Desactiva el elemento bbcode 'reenviar' para objetos repetidos."
 
-#: mod/admin.php:2015
-#, php-format
-msgid "Lock feature %s"
-msgstr "Trancar opción %s "
+#: mod/admin.php:976
+msgid "Hide help entry from navigation menu"
+msgstr "Ocultar la ayuda en el menú de navegación"
 
-#: mod/admin.php:2023
-msgid "Manage Additional Features"
-msgstr "Administrar opciones adicionales"
+#: mod/admin.php:976
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Oculta la entrada de las páginas de Ayuda en el menú de navegación. Todavía se puede acceder escribiendo /ayuda directamente."
+
+#: mod/admin.php:977
+msgid "Single user instance"
+msgstr "Sesión de usuario único"
 
-#: mod/allfriends.php:43
-msgid "No friends to display."
-msgstr "No hay amigos para mostrar."
+#: mod/admin.php:977
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Haz esta sesión multi-usuario o usuario único para el usuario"
 
-#: mod/cal.php:149 mod/display.php:328 mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "El acceso a este perfil ha sido restringido."
+#: mod/admin.php:978
+msgid "Maximum image size"
+msgstr "Tamaño máximo de la imagen"
 
-#: mod/cal.php:276 mod/events.php:380
-msgid "View"
-msgstr "Vista"
+#: mod/admin.php:978
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Tamaño máximo en bytes de las imágenes a subir. Por defecto es 0, que quiere decir que no hay límite."
 
-#: mod/cal.php:277 mod/events.php:382
-msgid "Previous"
-msgstr "Previo"
+#: mod/admin.php:979
+msgid "Maximum image length"
+msgstr "Largo máximo de imagen"
 
-#: mod/cal.php:278 mod/events.php:383 mod/install.php:231
-msgid "Next"
-msgstr "Siguiente"
+#: mod/admin.php:979
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Longitud máxima en píxeles del lado más largo de las imágenes subidas. Por defecto es -1, que significa que no hay límites."
 
-#: mod/cal.php:287 mod/events.php:392
-msgid "list"
-msgstr "lista"
+#: mod/admin.php:980
+msgid "JPEG image quality"
+msgstr "Calidad de imagen JPEG"
 
-#: mod/cal.php:297
-msgid "User not found"
-msgstr "Usuario no encontrado"
+#: mod/admin.php:980
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Los archivos JPEG subidos se guardarán con este ajuste de calidad [0-100]. Por defecto es 100, que es calidad máxima."
 
-#: mod/cal.php:313
-msgid "This calendar format is not supported"
-msgstr "Este formato de calendario no se soporta"
+#: mod/admin.php:982
+msgid "Register policy"
+msgstr "Política de registros"
 
-#: mod/cal.php:315
-msgid "No exportable data found"
-msgstr "No se ha encontrado información exportable"
+#: mod/admin.php:983
+msgid "Maximum Daily Registrations"
+msgstr "Registros Máximos Diarios"
 
-#: mod/cal.php:330
-msgid "calendar"
-msgstr "calendario"
+#: mod/admin.php:983
+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 anteriormente se ha permitido el registro, esto establece el número máximo de registro de nuevos usuarios aceptados por día. Si el registro se establece como cerrado, esta opción no tiene efecto."
 
-#: mod/common.php:86
-msgid "No contacts in common."
-msgstr "Sin contactos en común."
+#: mod/admin.php:984
+msgid "Register text"
+msgstr "Términos"
 
-#: mod/common.php:134 mod/contacts.php:863
-msgid "Common Friends"
-msgstr "Amigos comunes"
+#: mod/admin.php:984
+msgid "Will be displayed prominently on the registration page."
+msgstr "Se mostrará en un lugar destacado en la página de registro."
 
-#: mod/community.php:27
-msgid "Not available."
-msgstr "No disponible"
+#: mod/admin.php:985
+msgid "Accounts abandoned after x days"
+msgstr "Cuentas abandonadas después de x días"
 
-#: mod/contacts.php:128
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited."
-msgstr[0] "%d contacto editado."
-msgstr[1] "%d contacts edited."
+#: mod/admin.php:985
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "No gastará recursos del sistema creando sondeos a sitios externos para cuentas abandonadas. Introduce 0 para ningún límite temporal."
 
-#: mod/contacts.php:159 mod/contacts.php:368
-msgid "Could not access contact record."
-msgstr "No se pudo acceder a los datos del contacto."
+#: mod/admin.php:986
+msgid "Allowed friend domains"
+msgstr "Dominios amigos permitidos"
 
-#: mod/contacts.php:173
-msgid "Could not locate selected profile."
-msgstr "No se pudo encontrar el perfil seleccionado."
+#: mod/admin.php:986
+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 separada por comas de los dominios que están autorizados para establecer conexiones con este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"
 
-#: mod/contacts.php:206
-msgid "Contact updated."
-msgstr "Contacto actualizado."
+#: mod/admin.php:987
+msgid "Allowed email domains"
+msgstr "Dominios de correo permitidos"
 
-#: mod/contacts.php:389
-msgid "Contact has been blocked"
-msgstr "El contacto ha sido bloqueado"
+#: mod/admin.php:987
+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 separada por comas de los dominios que están autorizados en las direcciones de correo para registrarse en este sitio. Se aceptan comodines. Dejar en blanco para permitir cualquier dominio"
 
-#: mod/contacts.php:389
-msgid "Contact has been unblocked"
-msgstr "El contacto ha sido desbloqueado"
+#: mod/admin.php:988
+msgid "Block public"
+msgstr "Bloqueo público"
 
-#: mod/contacts.php:400
-msgid "Contact has been ignored"
-msgstr "El contacto ha sido ignorado"
+#: mod/admin.php:988
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Marca para bloquear el acceso público a todas las páginas personales, aún siendo públicas, hasta que no hayas iniciado tu sesión."
 
-#: mod/contacts.php:400
-msgid "Contact has been unignored"
-msgstr "El contacto ya no está ignorado"
+#: mod/admin.php:989
+msgid "Force publish"
+msgstr "Forzar publicación"
 
-#: mod/contacts.php:412
-msgid "Contact has been archived"
-msgstr "El contacto ha sido archivado"
+#: mod/admin.php:989
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Marca para forzar que todos los perfiles de este sitio sean listados en el directorio del sitio."
 
-#: mod/contacts.php:412
-msgid "Contact has been unarchived"
-msgstr "El contacto ya no está archivado"
+#: mod/admin.php:990
+msgid "Global directory URL"
+msgstr "URL del directorio global."
 
-#: mod/contacts.php:437
-msgid "Drop contact"
-msgstr "Eliminar contacto"
+#: mod/admin.php:990
+msgid ""
+"URL to the global directory. If this is not set, the global directory is "
+"completely unavailable to the application."
+msgstr "URL del directorio global. Si se deja este campo vacío, el directorio global sera completamente inaccesible para la instancia."
 
-#: mod/contacts.php:440 mod/contacts.php:801
-msgid "Do you really want to delete this contact?"
-msgstr "¿Estás seguro de que quieres eliminar este contacto?"
+#: mod/admin.php:991
+msgid "Allow threaded items"
+msgstr "Permitir elementos en hilo"
 
-#: mod/contacts.php:457
-msgid "Contact has been removed."
-msgstr "El contacto ha sido eliminado"
+#: mod/admin.php:991
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permitir infinitos niveles de hilo para los elementos de este sitio."
 
-#: mod/contacts.php:498
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Ahora tienes una amistad mutua con %s"
+#: mod/admin.php:992
+msgid "Private posts by default for new users"
+msgstr "Publicaciones privadas por defecto para usuarios nuevos"
 
-#: mod/contacts.php:502
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Estás compartiendo con %s"
+#: mod/admin.php:992
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Ajusta los permisos de publicación por defecto a los miembros nuevos al grupo privado por defecto en vez del público."
 
-#: mod/contacts.php:507
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s está compartiendo contigo"
+#: mod/admin.php:993
+msgid "Don't include post content in email notifications"
+msgstr "No incluir el contenido del post en las notificaciones de correo electrónico"
 
-#: mod/contacts.php:527
-msgid "Private communications are not available for this contact."
-msgstr "Las comunicaciones privadas no está disponibles para este contacto."
+#: mod/admin.php:993
+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 "No incluye el contenido de un mensaje/comentario/mensaje privado/etc. en las notificaciones de correo electrónico que se envían desde este sitio, como una medida de privacidad."
 
-#: mod/contacts.php:534
-msgid "(Update was successful)"
-msgstr "(La actualización se ha completado)"
+#: mod/admin.php:994
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Deshabilitar acceso a addons listados en el menú de aplicaciones."
 
-#: mod/contacts.php:534
-msgid "(Update was not successful)"
-msgstr "(La actualización no se ha completado)"
+#: mod/admin.php:994
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Habilitando esta opción restringe el acceso a addons en el menú de aplicaciones a usuarios identificados."
 
-#: mod/contacts.php:536 mod/contacts.php:973
-msgid "Suggest friends"
-msgstr "Sugerir amigos"
+#: mod/admin.php:995
+msgid "Don't embed private images in posts"
+msgstr "No agregar imágenes privados en las publicaciones"
 
-#: mod/contacts.php:540
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo de red: %s"
+#: mod/admin.php:995
+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 "No reemplazar imágenes privadas guardadas localmente en el servidor con imágenes integrados en los envíos. Esto significa que contactos que reciben publicaciones tendrán que autenticarse y cargar cada imagen, lo que puede demorar."
 
-#: mod/contacts.php:553
-msgid "Communications lost with this contact!"
-msgstr "¡Se ha perdido la comunicación con este contacto!"
+#: mod/admin.php:996
+msgid "Allow Users to set remote_self"
+msgstr "Permitir a los usuarios de definir perfiles_remotos"
 
-#: mod/contacts.php:556
-msgid "Fetch further information for feeds"
-msgstr "Recaudar informacion complementaria de los feeds"
+#: mod/admin.php:996
+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 "Al habilitar esta opción, cada perfil tiene el permiso de marcar cualquiera de sus contactos como un perfil_remoto. Habilitar la opción perfil_remoto para un contacto genera que todas las publicaciones  de este contacto seran re-publicado  en el muro del perfil."
 
-#: mod/contacts.php:557
-msgid "Fetch information"
-msgstr "Recaudar informacion"
+#: mod/admin.php:997
+msgid "Block multiple registrations"
+msgstr "Bloquear registros multiples"
 
-#: mod/contacts.php:557
-msgid "Fetch information and keywords"
-msgstr "Recaudar informacion y palabras claves"
+#: mod/admin.php:997
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Impedir que los usuarios registren cuentas adicionales para su uso como páginas."
 
-#: mod/contacts.php:575
-msgid "Contact"
-msgstr "Contacto"
+#: mod/admin.php:998
+msgid "OpenID support"
+msgstr "Soporte OpenID"
 
-#: mod/contacts.php:578
-msgid "Profile Visibility"
-msgstr "Visibilidad del Perfil"
+#: mod/admin.php:998
+msgid "OpenID support for registration and logins."
+msgstr "Soporte OpenID para registros y accesos."
 
-#: mod/contacts.php:579
-#, php-format
+#: mod/admin.php:999
+msgid "Fullname check"
+msgstr "Comprobar Nombre completo"
+
+#: mod/admin.php:999
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Fuerza a los usuarios a registrarse con un espacio entre su nombre y su apellido en el campo Nombre completo como medida anti-spam"
 
-#: mod/contacts.php:580
-msgid "Contact Information / Notes"
-msgstr "Información del Contacto / Notas"
+#: mod/admin.php:1000
+msgid "UTF-8 Regular expressions"
+msgstr "Expresiones regulares UTF-8"
 
-#: mod/contacts.php:581
-msgid "Edit contact notes"
-msgstr "Editar notas del contacto"
+#: mod/admin.php:1000
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Usar expresiones regulares de UTF8 en PHP"
 
-#: mod/contacts.php:587
-msgid "Block/Unblock contact"
-msgstr "Boquear/Desbloquear contacto"
+#: mod/admin.php:1001
+msgid "Community Page Style"
+msgstr "Estilo de pagina de comunidad"
 
-#: mod/contacts.php:588
-msgid "Ignore contact"
-msgstr "Ignorar contacto"
+#: mod/admin.php:1001
+msgid ""
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Tipo de pagina de comunidad a visualizar. 'Comunidad global' muestra todas las publicaciones publicas de la red abierta federada que llega a este servidor."
 
-#: mod/contacts.php:589
-msgid "Repair URL settings"
-msgstr "Configuración de reparación de la dirección"
+#: mod/admin.php:1002
+msgid "Posts per user on community page"
+msgstr "Publicaciones por usuario en la pagina de comunidad"
 
-#: mod/contacts.php:590
-msgid "View conversations"
-msgstr "Ver conversaciones"
+#: mod/admin.php:1002
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "El numero máximo de publicaciones por usuario que aparecerán en la pagina de comunidad. (No valido para 'comunidad global')"
 
-#: mod/contacts.php:596
-msgid "Last update:"
-msgstr "Última actualización:"
+#: mod/admin.php:1003
+msgid "Enable OStatus support"
+msgstr "Permitir soporte OStatus"
 
-#: mod/contacts.php:598
-msgid "Update public posts"
-msgstr "Actualizar publicaciones públicas"
+#: mod/admin.php:1003
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Proporcionar OStatus compatibilidad integrada (StatusNet, GNU Social, Quitter etc.). Todas las comunicaciones en OStatus son publicas así que eventuales advertencias serán ocasionalmente desplegadas."
 
-#: mod/contacts.php:600 mod/contacts.php:983
-msgid "Update now"
-msgstr "Actualizar ahora"
+#: mod/admin.php:1004
+msgid "OStatus conversation completion interval"
+msgstr "Intervalo de actualización de conversaciones OStatus"
 
-#: mod/contacts.php:606 mod/contacts.php:806 mod/contacts.php:1000
-msgid "Unignore"
-msgstr "Quitar de Ignorados"
+#: mod/admin.php:1004
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Cuan seguido el recolector deberá buscar nuevas entradas en OStatus? Esto puede ser un trabajo de mucha carga para los recursos del servidor."
 
-#: mod/contacts.php:610
-msgid "Currently blocked"
-msgstr "Bloqueados"
+#: mod/admin.php:1005
+msgid "Only import OStatus threads from our contacts"
+msgstr "Solo importar OStatus temas de nuestros (?) contactos."
 
-#: mod/contacts.php:611
-msgid "Currently ignored"
-msgstr "Ignorados"
+#: mod/admin.php:1005
+msgid ""
+"Normally we import every content from our OStatus contacts. With this option"
+" we only store threads that are started by a contact that is known on our "
+"system."
+msgstr "Normalmente importamos todo el contenido de los contactos de OStatus. Con esta opción solamente se guardan temas que fueron iniciados por contactos que son conocidos de la instancia.\n(nota de traducción, no se entiende muy bien la función en base al texto original)"
 
-#: mod/contacts.php:612
-msgid "Currently archived"
-msgstr "Archivados"
+#: mod/admin.php:1006
+msgid "OStatus support can only be enabled if threading is enabled."
+msgstr "Solo se puede habilitar el soporte OStatus  si threading (comentarios en fila) se encuentra habilitado."
 
-#: mod/contacts.php:613
+#: mod/admin.php:1008
 msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles."
+"Diaspora support can't be enabled because Friendica was installed into a sub"
+" directory."
+msgstr "El soporte para Diaspora* no se puede habilitar porque friendica se instalo en un directorio subalterno (sub directory)."
 
-#: mod/contacts.php:614
-msgid "Notification for new posts"
-msgstr "Notificacion de nuevos temas."
+#: mod/admin.php:1009
+msgid "Enable Diaspora support"
+msgstr "Habilitar el soporte para Diaspora*"
 
-#: mod/contacts.php:614
-msgid "Send a notification of every new post of this contact"
-msgstr "Enviar una notificacion por nuevos temas de este contacto."
+#: mod/admin.php:1009
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Provee una compatibilidad con la red de Diaspora."
 
-#: mod/contacts.php:617
-msgid "Blacklisted keywords"
-msgstr "Lista negra de palabras"
+#: mod/admin.php:1010
+msgid "Only allow Friendica contacts"
+msgstr "Permitir solo contactos de Friendica"
 
-#: mod/contacts.php:617
+#: mod/admin.php:1010
 msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado"
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Todos los contactos deben usar protocolos de Friendica. El resto de protocolos serán desactivados."
 
-#: mod/contacts.php:635
-msgid "Actions"
-msgstr "Acciones"
+#: mod/admin.php:1011
+msgid "Verify SSL"
+msgstr "Verificar SSL"
 
-#: mod/contacts.php:638
-msgid "Contact Settings"
-msgstr "Ajustes del contacto"
+#: mod/admin.php:1011
+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 quieres puedes activar la comprobación estricta de certificados. Esto significa que serás incapaz de conectar con ningún sitio que use certificados SSL autofirmados."
 
-#: mod/contacts.php:684
-msgid "Suggestions"
-msgstr "Sugerencias"
+#: mod/admin.php:1012
+msgid "Proxy user"
+msgstr "Usuario proxy"
 
-#: mod/contacts.php:687
-msgid "Suggest potential friends"
-msgstr "Amistades potenciales sugeridas"
+#: mod/admin.php:1013
+msgid "Proxy URL"
+msgstr "Dirección proxy"
 
-#: mod/contacts.php:695
-msgid "Show all contacts"
-msgstr "Mostrar todos los contactos"
+#: mod/admin.php:1014
+msgid "Network timeout"
+msgstr "Tiempo de espera de red"
 
-#: mod/contacts.php:700
-msgid "Unblocked"
-msgstr "Desbloqueados"
+#: mod/admin.php:1014
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valor en segundos. Usar 0 para dejarlo sin límites (no se recomienda)."
 
-#: mod/contacts.php:703
-msgid "Only show unblocked contacts"
-msgstr "Mostrar solo contactos sin bloquear"
+#: mod/admin.php:1015
+msgid "Delivery interval"
+msgstr "Intervalo de actualización"
 
-#: mod/contacts.php:709
-msgid "Blocked"
-msgstr "Bloqueados"
+#: mod/admin.php:1015
+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 "Retrasar la entrega de procesos en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendamos: 4-5 para los servidores compartidos, 2-3 para servidores privados virtuales, 0-1 para los grandes servidores dedicados."
 
-#: mod/contacts.php:712
-msgid "Only show blocked contacts"
-msgstr "Mostrar solo contactos bloqueados"
+#: mod/admin.php:1016
+msgid "Poll interval"
+msgstr "Intervalo de sondeo"
 
-#: mod/contacts.php:718
-msgid "Ignored"
-msgstr "Ignorados"
+#: mod/admin.php:1016
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Retrasar los procesos en segundo plano de sondeo en esta cantidad de segundos para reducir la carga del sistema. Si es 0, se usará el intervalo de entrega."
 
-#: mod/contacts.php:721
-msgid "Only show ignored contacts"
-msgstr "Mostrar solo contactos ignorados"
+#: mod/admin.php:1017
+msgid "Maximum Load Average"
+msgstr "Promedio de carga máxima"
 
-#: mod/contacts.php:727
-msgid "Archived"
-msgstr "Archivados"
+#: mod/admin.php:1017
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Carga máxima del sistema antes de que la entrega y los procesos de sondeo sean retrasados - por defecto 50."
 
-#: mod/contacts.php:730
-msgid "Only show archived contacts"
-msgstr "Mostrar solo contactos archivados"
+#: mod/admin.php:1018
+msgid "Maximum Load Average (Frontend)"
+msgstr "Carga máxima promedio (frontend)"
 
-#: mod/contacts.php:736
-msgid "Hidden"
-msgstr "Ocultos"
+#: mod/admin.php:1018
+msgid "Maximum system load before the frontend quits service - default 50."
+msgstr "Carga máxima del sistema antes de que el frontend cancele el servicio - por defecto 50."
 
-#: mod/contacts.php:739
-msgid "Only show hidden contacts"
-msgstr "Mostrar solo contactos ocultos"
+#: mod/admin.php:1019
+msgid "Maximum table size for optimization"
+msgstr "Tamaño máximo de las tablas para la optimización."
 
-#: mod/contacts.php:796
-msgid "Search your contacts"
-msgstr "Buscar en tus contactos"
+#: mod/admin.php:1019
+msgid ""
+"Maximum table size (in MB) for the automatic optimization - default 100 MB. "
+"Enter -1 to disable it."
+msgstr "Tamaño máximo de tablas (en MB) para la optimización automática - por defecto 100MB. Ingrese -1 para deshabilitar."
 
-#: mod/contacts.php:804 mod/settings.php:158 mod/settings.php:702
-msgid "Update"
-msgstr "Actualizar"
+#: mod/admin.php:1020
+msgid "Minimum level of fragmentation"
+msgstr "Nivel mínimo de fragmentación "
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Archive"
-msgstr "Archivo"
+#: mod/admin.php:1020
+msgid ""
+"Minimum fragmenation level to start the automatic optimization - default "
+"value is 30%."
+msgstr "Nivel mínimo de fragmentación para para comenzar la optimización - valor por defecto es 30%. "
 
-#: mod/contacts.php:807 mod/contacts.php:1008
-msgid "Unarchive"
-msgstr "Sin archivar"
+#: mod/admin.php:1022
+msgid "Periodical check of global contacts"
+msgstr "Verificación periódica de los contactos globales."
 
-#: mod/contacts.php:810
-msgid "Batch Actions"
-msgstr "Accones en lote"
+#: mod/admin.php:1022
+msgid ""
+"If enabled, the global contacts are checked periodically for missing or "
+"outdated data and the vitality of the contacts and servers."
+msgstr "Habilitado los contactos globales son verificado periódicamente  por datos faltantes o datos obsoletos como también por la vitalidad de los contactos y servidores."
 
-#: mod/contacts.php:856
-msgid "View all contacts"
-msgstr "Ver todos los contactos"
+#: mod/admin.php:1023
+msgid "Days between requery"
+msgstr "Días entre búsquedas"
 
-#: mod/contacts.php:866
-msgid "View all common friends"
-msgstr "Ver todos los conocidos en común "
+#: mod/admin.php:1023
+msgid "Number of days after which a server is requeried for his contacts."
+msgstr "Cantidad de días hasta que un servidor es consultado por sus contactos."
 
-#: mod/contacts.php:873
-msgid "Advanced Contact Settings"
-msgstr "Configuración avanzada"
+#: mod/admin.php:1024
+msgid "Discover contacts from other servers"
+msgstr "Descubrir contactos de otros servidores"
 
-#: mod/contacts.php:916
-msgid "Mutual Friendship"
-msgstr "Amistad recíproca"
+#: mod/admin.php:1024
+msgid ""
+"Periodically query other servers for contacts. You can choose between "
+"'users': the users on the remote system, 'Global Contacts': active contacts "
+"that are known on the system. The fallback is meant for Redmatrix servers "
+"and older friendica servers, where global contacts weren't available. The "
+"fallback increases the server load, so the recommened setting is 'Users, "
+"Global Contacts'."
+msgstr "Recoger periódicamente información sobre perfiles en otros servidores. Puede elegir entre 'usuarios': perfiles de un sistema remoto, 'contactos globales': contactos activos que son conocidos por el servidor. El fallback es para servidors redmatrix y instalaciones viejas de friendica en las que los contactos no estaban a disposición. El fallback aumenta la carga del servidor, asi que la configuración recomendada es 'usuarios, contactos globales'"
 
-#: mod/contacts.php:920
-msgid "is a fan of yours"
-msgstr "es tu fan"
+#: mod/admin.php:1025
+msgid "Timeframe for fetching global contacts"
+msgstr "Intervalos de tiempo para revisar contactos globales."
 
-#: mod/contacts.php:924
-msgid "you are a fan of"
-msgstr "eres fan de"
+#: mod/admin.php:1025
+msgid ""
+"When the discovery is activated, this value defines the timeframe for the "
+"activity of the global contacts that are fetched from other servers."
+msgstr "Cuando la revisacion es activada, este valor define el intervalo de tiempo de la actividad de los contactos globales que son recolectados de los servidores. (?)"
 
-#: mod/contacts.php:994
-msgid "Toggle Blocked status"
-msgstr "Cambiar bloqueados"
+#: mod/admin.php:1026
+msgid "Search the local directory"
+msgstr "Buscar el directorio local"
 
-#: mod/contacts.php:1002
-msgid "Toggle Ignored status"
-msgstr "Cambiar ignorados"
+#: mod/admin.php:1026
+msgid ""
+"Search the local directory instead of the global directory. When searching "
+"locally, every search will be executed on the global directory in the "
+"background. This improves the search results when the search is repeated."
+msgstr "Buscar en el directorio local en vez del directorio global. Cuando se busca localmente, cada busqueda sera efectuada en el directorio global en el background. Esto mejora los resultados de la busqueda cuando la misma es repetida."
 
-#: mod/contacts.php:1010
-msgid "Toggle Archive status"
-msgstr "Cambiar archivados"
+#: mod/admin.php:1028
+msgid "Publish server information"
+msgstr "Publicar información del servidor"
 
-#: mod/contacts.php:1018
-msgid "Delete contact"
-msgstr "Eliminar contacto"
+#: mod/admin.php:1028
+msgid ""
+"If enabled, general server and usage data will be published. The data "
+"contains the name and version of the server, number of users with public "
+"profiles, number of posts and the activated protocols and connectors. See <a"
+" href='http://the-federation.info/'>the-federation.info</a> for details."
+msgstr "Si habilitado, datos generales del servidor y estadisticas de uso serán publicados. Los datos contienen el nombre y la versión del servidor, numero de usuarios con perfiles públicos, cantidad de temas publicados y los protocolos y conectores activados. Vea <a href='http://the-federation.info/'>the-federation.info</a> por detalles."
 
-#: mod/directory.php:197 view/theme/vier/theme.php:201
-#: view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Directorio global"
+#: mod/admin.php:1030
+msgid "Use MySQL full text engine"
+msgstr "Usar motor MySQL de texto completo"
 
-#: mod/directory.php:199
-msgid "Find on this site"
-msgstr "Buscar en este sitio"
+#: mod/admin.php:1030
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Activa el motor de texto completo. Agiliza las búsquedas, pero solo busca cuatro o más caracteres."
 
-#: mod/directory.php:201
-msgid "Results for:"
-msgstr "Resultados para:"
+#: mod/admin.php:1031
+msgid "Suppress Language"
+msgstr "Suprimir idiomas"
 
-#: mod/directory.php:203
-msgid "Site Directory"
-msgstr "Directorio del sitio"
+#: mod/admin.php:1031
+msgid "Suppress language information in meta information about a posting."
+msgstr "Suprimir la información de datos meta sobre informaciones de idiomas en las publicaciones."
 
-#: mod/directory.php:210
-msgid "No entries (some entries may be hidden)."
-msgstr "Sin entradas (algunas pueden que estén ocultas)."
+#: mod/admin.php:1032
+msgid "Suppress Tags"
+msgstr "Suprimir tags"
 
-#: mod/dirfind.php:36
-#, php-format
-msgid "People Search - %s"
-msgstr "Buscar perfiles - %s"
+#: mod/admin.php:1032
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Suprimir la lista de tags al final de una publicación."
 
-#: mod/dirfind.php:47
-#, php-format
-msgid "Forum Search - %s"
-msgstr "Búsqueda de foro - %s"
+#: mod/admin.php:1033
+msgid "Path to item cache"
+msgstr "Ruta a la caché del objeto"
 
-#: mod/dirfind.php:240 mod/match.php:107
-msgid "No matches"
-msgstr "Sin conincidencias"
+#: mod/admin.php:1033
+msgid "The item caches buffers generated bbcode and external images."
+msgstr "El buffer de cache de items generado para bbcodes e imágenes externas. "
 
-#: mod/display.php:473
-msgid "Item has been removed."
-msgstr "El elemento ha sido eliminado."
+#: mod/admin.php:1034
+msgid "Cache duration in seconds"
+msgstr "Duración de la caché en segundos"
 
-#: mod/events.php:95 mod/events.php:97
-msgid "Event can not end before it has started."
-msgstr "Un evento no puede terminar antes de su comienzo."
+#: mod/admin.php:1034
+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 cuanto tiempo deberían los archives ser almacenados en el cache? Valor por defecto 86400 segundos (un día). Para deshabilita el item cache, ajuste el valor a -1."
 
-#: mod/events.php:104 mod/events.php:106
-msgid "Event title and start time are required."
-msgstr "Título del evento y hora de inicio requeridas."
+#: mod/admin.php:1035
+msgid "Maximum numbers of comments per post"
+msgstr "Numero máximo de respuestas por tema"
 
-#: mod/events.php:381
-msgid "Create New Event"
-msgstr "Crea un evento nuevo"
+#: mod/admin.php:1035
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "¿Cuantos comentarios deberían ser mostrados por tema? Valor por defecto es 100."
 
-#: mod/events.php:482
-msgid "Event details"
-msgstr "Detalles del evento"
+#: mod/admin.php:1036
+msgid "Path for lock file"
+msgstr "Ruta al archivo protegido"
 
-#: mod/events.php:483
-msgid "Starting date and Title are required."
-msgstr "Se requiere fecha de comienzo y titulo"
+#: mod/admin.php:1036
+msgid ""
+"The lock file is used to avoid multiple pollers at one time. Only define a "
+"folder here."
+msgstr "El archivo lock es usado para evitar multiples pooler (recolectores de información) a la vez. Defina solo una carpeta aquí."
 
-#: mod/events.php:484 mod/events.php:485
-msgid "Event Starts:"
-msgstr "Inicio del evento:"
+#: mod/admin.php:1037
+msgid "Temp path"
+msgstr "Ruta a los temporales"
 
-#: mod/events.php:486 mod/events.php:502
-msgid "Finish date/time is not known or not relevant"
-msgstr "La fecha/hora de finalización no es conocida o es irrelevante."
+#: mod/admin.php:1037
+msgid ""
+"If you have a restricted system where the webserver can't access the system "
+"temp path, enter another path here."
+msgstr "Si tiene un sistema restringido en donde el servidor web no puede acceder la dirección del sistema temp, ingrese una dirección alternativa aquí. "
 
-#: mod/events.php:488 mod/events.php:489
-msgid "Event Finishes:"
-msgstr "Finalización del evento:"
+#: mod/admin.php:1038
+msgid "Base path to installation"
+msgstr "Ruta base para la instalación"
 
-#: mod/events.php:490 mod/events.php:503
-msgid "Adjust for viewer timezone"
-msgstr "Ajuste de zona horaria"
+#: mod/admin.php:1038
+msgid ""
+"If the system cannot detect the correct path to your installation, enter the"
+" correct path here. This setting should only be set if you are using a "
+"restricted system and symbolic links to your webroot."
+msgstr "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot."
 
-#: mod/events.php:492
-msgid "Description:"
-msgstr "Descripción:"
+#: mod/admin.php:1039
+msgid "Disable picture proxy"
+msgstr "Deshabilitar proxy de imagen"
 
-#: mod/events.php:496 mod/events.php:498
-msgid "Title:"
-msgstr "Título:"
+#: mod/admin.php:1039
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda."
 
-#: mod/events.php:499 mod/events.php:500
-msgid "Share this event"
-msgstr "Comparte este evento"
+#: mod/admin.php:1040
+msgid "Enable old style pager"
+msgstr "Habilitar paginación estilo viejo"
 
-#: mod/install.php:139
-msgid "Friendica Communications Server - Setup"
-msgstr "Servidor de comunicación Friendica - Configuración"
+#: mod/admin.php:1040
+msgid ""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr "La paginación al estilo viejo tiene números de paginas pero enlentece masivamente la velocidad de la pagina."
 
-#: mod/install.php:145
-msgid "Could not connect to database."
-msgstr "No es posible la conexión con la base de datos."
+#: mod/admin.php:1041
+msgid "Only search in tags"
+msgstr "Solo buscar en tags"
 
-#: mod/install.php:149
-msgid "Could not create table."
-msgstr "No se puede crear la tabla."
+#: mod/admin.php:1041
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente."
 
-#: mod/install.php:155
-msgid "Your Friendica site database has been installed."
-msgstr "La base de datos de su sitio web de Friendica ha sido instalada."
+#: mod/admin.php:1043
+msgid "New base url"
+msgstr "Nueva URLbase"
 
-#: mod/install.php:160
+#: mod/admin.php:1043
 msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql."
+"Change base url for this server. Sends relocate message to all DFRN contacts"
+" of all users."
+msgstr "Cambiar base URL para este servidor. Envía mensajes de relocalisación a todos los contactos DFRN."
+
+#: mod/admin.php:1045
+msgid "RINO Encryption"
+msgstr "Encryptado RINO"
+
+#: mod/admin.php:1045
+msgid "Encryption layer between nodes."
+msgstr "Capa de encryptación entre nodos."
 
-#: mod/install.php:161 mod/install.php:230 mod/install.php:602
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Por favor, consulta el archivo \"INSTALL.txt\"."
+#: mod/admin.php:1046
+msgid "Embedly API key"
+msgstr "Embedly llave de API (API key) "
 
-#: mod/install.php:173
-msgid "Database already in use."
-msgstr "Base de datos ya se encuentra en uso"
+#: mod/admin.php:1046
+msgid ""
+"<a href='http://embed.ly'>Embedly</a> is used to fetch additional data for "
+"web pages. This is an optional parameter."
+msgstr "<a href='http://embed.ly'>Embedly</a> es usado para recolectar datos adicionales para paginas web. Esto es un parámetro opcional."
 
-#: mod/install.php:227
-msgid "System check"
-msgstr "Verificación del sistema"
+#: mod/admin.php:1048
+msgid "Enable 'worker' background processing"
+msgstr "Habilitar procesos de fondo del \"trabajador\""
 
-#: mod/install.php:232
-msgid "Check again"
-msgstr "Compruebalo de nuevo"
+#: mod/admin.php:1048
+msgid ""
+"The worker background processing limits the number of parallel background "
+"jobs to a maximum number and respects the system load."
+msgstr "Limita los procesos del trabajo de fondo del numero paralelo de trabajos a un numero máximo que respeta la carga del sistema."
 
-#: mod/install.php:251
-msgid "Database connection"
-msgstr "Conexión con la base de datos"
+#: mod/admin.php:1049
+msgid "Maximum number of parallel workers"
+msgstr "Numero máximo de trabajos paralelos de fondo."
 
-#: mod/install.php:252
+#: mod/admin.php:1049
 msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos."
+"On shared hosters set this to 2. On larger systems, values of 10 are great. "
+"Default value is 4."
+msgstr "Ajustar a 2 en un servidor compartido (shared hosting).\nEn sistemas grandes valores como 10 son excelentes.\nValor por defecto es 4."
 
-#: mod/install.php:253
+#: mod/admin.php:1050
+msgid "Don't use 'proc_open' with the worker"
+msgstr "No use 'proc_open' junto al \"trabajador\"!"
+
+#: mod/admin.php:1050
 msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones."
+"Enable this if your system doesn't allow the use of 'proc_open'. This can "
+"happen on shared hosters. If this is enabled you should increase the "
+"frequency of poller calls in your crontab."
+msgstr "Habilite esta función si el sistema no permite el uso de 'proc_open'. Esto suelo suceder en servidores compartidos (shared hosting). Si esta función se habilita se debería incrementar la frecuencia de llamadas del poller (poller calls) en la pestaña de trabajos cron. (¡en el hosting?)"
 
-#: mod/install.php:254
+#: mod/admin.php:1051
+msgid "Enable fastlane"
+msgstr "Habilitar ascenso rápido"
+
+#: mod/admin.php:1051
 msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar."
+"When enabed, the fastlane mechanism starts an additional worker if processes"
+" with higher priority are blocked by processes of lower priority."
+msgstr "Cuando está habilitado, el mecanismo ascenso rápido inicia un trabajador adicional si los procesos de mayor prioridad son bloqueados por prcesos de menor prioridad."
 
-#: mod/install.php:258
-msgid "Database Server Name"
-msgstr "Nombre del servidor de la base de datos"
+#: mod/admin.php:1080
+msgid "Update has been marked successful"
+msgstr "La actualización se ha completado con éxito"
 
-#: mod/install.php:259
-msgid "Database Login Name"
-msgstr "Usuario de la base de datos"
+#: mod/admin.php:1088
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Actualización de base de datos %s fue aplicada con éxito."
 
-#: mod/install.php:260
-msgid "Database Login Password"
-msgstr "Contraseña de la base de datos"
+#: mod/admin.php:1091
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s"
 
-#: mod/install.php:261
-msgid "Database Name"
-msgstr "Nombre de la base de datos"
+#: mod/admin.php:1103
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Paso %s fallo con el error: %s"
 
-#: mod/install.php:262 mod/install.php:303
-msgid "Site administrator email address"
-msgstr "Dirección de correo del administrador de la web"
+#: mod/admin.php:1106
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Actualización %s aplicada con éxito."
 
-#: mod/install.php:262 mod/install.php:303
-msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web."
+#: mod/admin.php:1110
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La actualización %s no ha informado, se desconoce el estado."
 
-#: mod/install.php:266 mod/install.php:306
-msgid "Please select a default timezone for your website"
-msgstr "Por favor, selecciona la zona horaria predeterminada para tu web"
+#: mod/admin.php:1112
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "No había función adicional de actualización %s que necesitaba ser requerida."
 
-#: mod/install.php:293
-msgid "Site settings"
-msgstr "Configuración de la página web"
+#: mod/admin.php:1131
+msgid "No failed updates."
+msgstr "Actualizaciones sin fallos."
 
-#: mod/install.php:307
-msgid "System Language:"
-msgstr "Sistema de idioma:"
+#: mod/admin.php:1132
+msgid "Check database structure"
+msgstr "Revisar estructura de la base de datos"
 
-#: mod/install.php:307
+#: mod/admin.php:1137
+msgid "Failed Updates"
+msgstr "Actualizaciones fallidas"
+
+#: mod/admin.php:1138
 msgid ""
-"Set the default language for your Friendica installation interface and to "
-"send emails."
-msgstr "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails."
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado."
 
-#: mod/install.php:347
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web."
+#: mod/admin.php:1139
+msgid "Mark success (if update was manually applied)"
+msgstr "Marcar como correcta (si actualizaste manualmente)"
 
-#: mod/install.php:348
-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='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-"
-"up-the-poller'>'Setup the poller'</a>"
-msgstr "Si no tienes una versión de command line de php installado en el servidor, no sera posible de efectuar polling como trabajo de fondo a traves de cron. Vea <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"
+#: mod/admin.php:1140
+msgid "Attempt to execute this update step automatically"
+msgstr "Intentando ejecutar este paso automáticamente"
 
-#: mod/install.php:352
-msgid "PHP executable path"
-msgstr "Dirección al ejecutable PHP"
+#: mod/admin.php:1174
+#, 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\tEstimado %1$s,\n\t\t\t\tel administrador de %2$s ha creado una cuenta para usted."
 
-#: mod/install.php:352
+#: mod/admin.php:1177
+#, php-format
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación."
+"\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\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%1$s\n\t\t\tNombre de la cuenta:\t\t%2$s\n\t\t\tContraseña:\t\t%3$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a  %4$s."
 
-#: mod/install.php:357
-msgid "Command line PHP"
-msgstr "Línea de comandos PHP"
+#: mod/admin.php:1221
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s usuario bloqueado/desbloqueado"
+msgstr[1] "%s usuarios bloqueados/desbloqueados"
 
-#: mod/install.php:366
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)"
+#: mod/admin.php:1228
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s usuario eliminado"
+msgstr[1] "%s usuarios eliminados"
 
-#: mod/install.php:367
-msgid "Found PHP version: "
-msgstr "Versión PHP encontrada:"
+#: mod/admin.php:1275
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Usuario '%s' eliminado"
 
-#: mod/install.php:369
-msgid "PHP cli binary"
-msgstr "PHP cli binario"
+#: mod/admin.php:1283
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Usuario '%s' desbloqueado"
 
-#: mod/install.php:380
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado."
+#: mod/admin.php:1283
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Usuario '%s' bloqueado'"
 
-#: mod/install.php:381
-msgid "This is required for message delivery to work."
-msgstr "Esto es necesario para que funcione la entrega de mensajes."
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Register date"
+msgstr "Fecha de registro"
 
-#: mod/install.php:383
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Last login"
+msgstr "Último acceso"
 
-#: mod/install.php:404
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Error:  La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado"
+#: mod/admin.php:1392 mod/admin.php:1418
+msgid "Last item"
+msgstr "Último elemento"
 
-#: mod/install.php:405
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: mod/admin.php:1392 mod/settings.php:43
+msgid "Account"
+msgstr "Cuenta"
 
-#: mod/install.php:407
-msgid "Generate encryption keys"
-msgstr "Generar claves de encriptación"
+#: mod/admin.php:1401
+msgid "Add User"
+msgstr "Agregar usuario"
 
-#: mod/install.php:414
-msgid "libCurl PHP module"
-msgstr "Módulo PHP libCurl"
+#: mod/admin.php:1402
+msgid "select all"
+msgstr "seleccionar todo"
 
-#: mod/install.php:415
-msgid "GD graphics PHP module"
-msgstr "Módulo PHP gráficos GD"
+#: mod/admin.php:1403
+msgid "User registrations waiting for confirm"
+msgstr "Registro de usuarios esperando confirmación"
+
+#: mod/admin.php:1404
+msgid "User waiting for permanent deletion"
+msgstr "Usuario esperando anulación permanente."
+
+#: mod/admin.php:1405
+msgid "Request date"
+msgstr "Solicitud de fecha"
 
-#: mod/install.php:416
-msgid "OpenSSL PHP module"
-msgstr "Módulo PHP OpenSSL"
+#: mod/admin.php:1406
+msgid "No registrations."
+msgstr "Sin registros."
 
-#: mod/install.php:417
-msgid "mysqli PHP module"
-msgstr "Módulo PHP mysqli"
+#: mod/admin.php:1407
+msgid "Note from the user"
+msgstr "Nota para el usuario"
 
-#: mod/install.php:418
-msgid "mb_string PHP module"
-msgstr "Módulo PHP mb_string"
+#: mod/admin.php:1409
+msgid "Deny"
+msgstr "Denegado"
 
-#: mod/install.php:419
-msgid "mcrypt PHP module"
-msgstr "modulo mycrypt PHP"
+#: mod/admin.php:1413
+msgid "Site admin"
+msgstr "Administrador de la web"
 
-#: mod/install.php:420
-msgid "XML PHP module"
-msgstr "Módulo XML PHP"
+#: mod/admin.php:1414
+msgid "Account expired"
+msgstr "Cuenta caducada"
 
-#: mod/install.php:421
-msgid "iconv module"
-msgstr "Módulo iconv"
+#: mod/admin.php:1417
+msgid "New User"
+msgstr "Nuevo usuario"
 
-#: mod/install.php:425 mod/install.php:427
-msgid "Apache mod_rewrite module"
-msgstr "Módulo mod_rewrite de Apache"
+#: mod/admin.php:1418
+msgid "Deleted since"
+msgstr "Borrado desde"
 
-#: mod/install.php:425
+#: mod/admin.php:1423
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado."
-
-#: mod/install.php:433
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Error: El módulo de PHP libcurl es necesario, pero no está instalado."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"
 
-#: mod/install.php:437
+#: mod/admin.php:1424
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado."
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "¡El usuario {0} será eliminado!\\n\\n¡Todo lo que haya publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?"
 
-#: mod/install.php:441
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Error: El módulo de PHP openssl es necesario, pero  no está instalado."
+#: mod/admin.php:1434
+msgid "Name of the new user."
+msgstr "Nombre del nuevo usuario"
 
-#: mod/install.php:445
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Error: El módulo de PHP mysqli es necesario, pero no está instalado."
+#: mod/admin.php:1435
+msgid "Nickname"
+msgstr "Apodo"
 
-#: mod/install.php:449
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Error: El módulo de PHP mb_string es necesario, pero no está instalado."
+#: mod/admin.php:1435
+msgid "Nickname of the new user."
+msgstr "Apodo del nuevo perfil."
 
-#: mod/install.php:453
-msgid "Error: mcrypt PHP module required but not installed."
-msgstr "Error: modulo mycrypt PHP requerido pero no instalado."
+#: mod/admin.php:1436
+msgid "Email address of the new user."
+msgstr "Dirección de correo del nuevo perfil."
 
-#: mod/install.php:457
-msgid "Error: iconv PHP module required but not installed."
-msgstr "Error: módulo iconv PHP requerido pero no instalado."
+#: mod/admin.php:1479
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Módulo %s deshabilitado."
 
-#: mod/install.php:466
-msgid ""
-"If you are using php_cli, please make sure that mcrypt module is enabled in "
-"its config file"
-msgstr "Si está utilizando php_cli, por favor asegúrese de que el módulo mcrypt está habilitado en este archivo de configuración"
+#: mod/admin.php:1483
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Módulo %s habilitado."
 
-#: mod/install.php:469
-msgid ""
-"Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 "
-"encryption layer."
-msgstr "Función mycrypt_create_iv() no esta definido. Esto es preciso para habilitar RINO2 encryption layer."
+#: mod/admin.php:1494 mod/admin.php:1730
+msgid "Disable"
+msgstr "Desactivado"
 
-#: mod/install.php:471
-msgid "mcrypt_create_iv() function"
-msgstr "mcrypt_create_iv() función"
+#: mod/admin.php:1496 mod/admin.php:1732
+msgid "Enable"
+msgstr "Activado"
 
-#: mod/install.php:479
-msgid "Error, XML PHP module required but not installed."
-msgstr "Error, módulo XML PHP requerido pero no instalado."
+#: mod/admin.php:1519 mod/admin.php:1777
+msgid "Toggle"
+msgstr "Activar"
 
-#: mod/install.php:494
-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 "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo."
+#: mod/admin.php:1527 mod/admin.php:1786
+msgid "Author: "
+msgstr "Autor:"
 
-#: mod/install.php:495
-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 "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas."
+#: mod/admin.php:1528 mod/admin.php:1787
+msgid "Maintainer: "
+msgstr "Mantenedor: "
 
-#: mod/install.php:496
-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 "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica."
+#: mod/admin.php:1580
+msgid "Reload active plugins"
+msgstr "Recargar plugins activos"
 
-#: mod/install.php:497
+#: mod/admin.php:1585
+#, php-format
 msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones."
+"There are currently no plugins available on your node. You can find the "
+"official plugin repository at %1$s and might find other interesting plugins "
+"in the open plugin registry at %2$s"
+msgstr "No ay plugins habilitados en este nodo. Encontrara los repositorios oficiales de plugins en %1$s y posiblemente encontrara mas plugins interesantes en el registro abierto de plugins aquí %2$s ."
 
-#: mod/install.php:500
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php tiene permiso de escritura"
+#: mod/admin.php:1690
+msgid "No themes found."
+msgstr "No se encontraron temas."
 
-#: mod/install.php:510
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar."
+#: mod/admin.php:1768
+msgid "Screenshot"
+msgstr "Captura de pantalla"
 
-#: mod/install.php:511
-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 poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica."
+#: mod/admin.php:1828
+msgid "Reload active themes"
+msgstr "Recargar interfaces de usuario activos"
 
-#: mod/install.php:512
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta."
+#: mod/admin.php:1833
+#, php-format
+msgid "No themes found on the system. They should be paced in %1$s"
+msgstr "No se encuentran interfaces en el sistema. Deberían estar localizados (paced) en  %1$s"
 
-#: mod/install.php:513
-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 medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene."
+#: mod/admin.php:1834
+msgid "[Experimental]"
+msgstr "[Experimental]"
 
-#: mod/install.php:516
-msgid "view/smarty3 is writable"
-msgstr "Se puede escribir en /view/smarty3"
+#: mod/admin.php:1835
+msgid "[Unsupported]"
+msgstr "[Sin soporte]"
 
-#: mod/install.php:532
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración."
+#: mod/admin.php:1859
+msgid "Log settings updated."
+msgstr "Configuración de registro actualizada."
 
-#: mod/install.php:534
-msgid "Url rewrite is working"
-msgstr "Reescribiendo la dirección..."
+#: mod/admin.php:1891
+msgid "PHP log currently enabled."
+msgstr "Registro PHP actualmente disponible."
 
-#: mod/install.php:551
-msgid "ImageMagick PHP extension is installed"
-msgstr "ImageMagick PHP extension is installed"
+#: mod/admin.php:1893
+msgid "PHP log currently disabled."
+msgstr "Registro PHP actualmente deshabilitado."
 
-#: mod/install.php:553
-msgid "ImageMagick supports GIF"
-msgstr "ImageMagick supporta GIF"
+#: mod/admin.php:1902
+msgid "Clear"
+msgstr "Limpiar"
 
-#: mod/install.php:561
+#: mod/admin.php:1907
+msgid "Enable Debugging"
+msgstr "Habilitar debugging"
+
+#: mod/admin.php:1908
+msgid "Log file"
+msgstr "Archivo de registro"
+
+#: mod/admin.php:1908
 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 "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Debes tener permiso de escritura en el servidor. Relacionado con tu directorio de inicio de Friendica."
 
-#: mod/install.php:600
-msgid "<h1>What next</h1>"
-msgstr "<h1>¿Ahora qué?</h1>"
+#: mod/admin.php:1909
+msgid "Log level"
+msgstr "Nivel de registro"
 
-#: mod/install.php:601
+#: mod/admin.php:1912
+msgid "PHP logging"
+msgstr "PHP logging"
+
+#: mod/admin.php:1913
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo"
+"To enable logging of PHP errors and warnings you can add the following to "
+"the .htconfig.php file of your installation. The filename set in the "
+"'error_log' line is relative to the friendica top-level directory and must "
+"be writeable by the web server. The option '1' for 'log_errors' and "
+"'display_errors' is to enable these options, set to '0' to disable them."
+msgstr "Para habilitar la documentación de los errores PHP y las advertencias se puede agregar lo siguiente al archivo .htconfig.php de la instalación (ftp). La dirección definido en el 'error_log' es relativo al directorio friendica principal (top-level directory) y debe de ser habilitado para la escritura por el servidor web. La opción '1' para 'log_errors' y 'display_errors' es para habilitar estas opciones, '0' para deshabilitarlo."
+
+#: mod/admin.php:2040 mod/admin.php:2041 mod/settings.php:778
+msgid "Off"
+msgstr "Apagado"
+
+#: mod/admin.php:2040 mod/admin.php:2041 mod/settings.php:778
+msgid "On"
+msgstr "Encendido"
+
+#: mod/admin.php:2041
+#, php-format
+msgid "Lock feature %s"
+msgstr "Trancar opción %s "
+
+#: mod/admin.php:2049
+msgid "Manage Additional Features"
+msgstr "Administrar opciones adicionales"
 
 #: mod/item.php:116
 msgid "Unable to locate original post."
@@ -7482,110 +7519,97 @@ msgstr "No se puede encontrar la publicación original."
 msgid "Empty post discarded."
 msgstr "Publicación vacía descartada."
 
-#: mod/item.php:895
+#: mod/item.php:898
 msgid "System error. Post not saved."
 msgstr "Error del sistema. Mensaje no guardado."
 
-#: mod/item.php:985
+#: mod/item.php:988
 #, php-format
 msgid ""
 "This message was sent to you by %s, a member of the Friendica social "
 "network."
 msgstr "Este mensaje te lo ha enviado %s, miembro de la red social Friendica."
 
-#: mod/item.php:987
+#: mod/item.php:990
 #, php-format
 msgid "You may visit them online at %s"
 msgstr "Los puedes visitar en línea en %s"
 
-#: mod/item.php:988
+#: mod/item.php:991
 msgid ""
 "Please contact the sender by replying to this post if you do not wish to "
 "receive these messages."
 msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes."
 
-#: mod/item.php:992
-#, php-format
-msgid "%s posted an update."
-msgstr "%s ha publicado una actualización."
-
-#: mod/maintenance.php:9
-msgid "System down for maintenance"
-msgstr "Servicio suspendido por mantenimiento"
-
-#: mod/match.php:33
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado."
-
-#: mod/match.php:86
-msgid "is interested in:"
-msgstr "estás interesado en:"
-
-#: mod/match.php:100
-msgid "Profile Match"
-msgstr "Coincidencias de Perfil"
+#: mod/item.php:995
+#, php-format
+msgid "%s posted an update."
+msgstr "%s ha publicado una actualización."
 
 #: mod/network.php:398
 #, php-format
-msgid "Warning: This group contains %s member from an insecure network."
+msgid ""
+"Warning: This group contains %s member from a network that doesn't allow non"
+" public messages."
 msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Aviso: este grupo contiene %s contacto con conexión no segura."
-msgstr[1] "Aviso: este grupo contiene %s contactos con conexiones no seguras."
+"Warning: This group contains %s members from a network that doesn't allow "
+"non public messages."
+msgstr[0] "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos."
+msgstr[1] "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos."
 
 #: mod/network.php:401
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Los mensajes privados a este grupo corren el riesgo de ser mostrados públicamente."
+msgid "Messages in this group won't be send to these receivers."
+msgstr "Los mensajes de este grupo no se enviarán a estos receptores."
 
-#: mod/network.php:528
+#: mod/network.php:529
 msgid "Private messages to this person are at risk of public disclosure."
 msgstr "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente."
 
-#: mod/network.php:533
+#: mod/network.php:534
 msgid "Invalid contact."
 msgstr "Contacto erróneo."
 
-#: mod/network.php:826
+#: mod/network.php:827
 msgid "Commented Order"
 msgstr "Orden de comentarios"
 
-#: mod/network.php:829
+#: mod/network.php:830
 msgid "Sort by Comment Date"
 msgstr "Ordenar por fecha de comentarios"
 
-#: mod/network.php:834
+#: mod/network.php:835
 msgid "Posted Order"
 msgstr "Orden de publicación"
 
-#: mod/network.php:837
+#: mod/network.php:838
 msgid "Sort by Post Date"
 msgstr "Ordenar por fecha de publicación"
 
-#: mod/network.php:848
+#: mod/network.php:849
 msgid "Posts that mention or involve you"
 msgstr "Publicaciones que te mencionan o involucran"
 
-#: mod/network.php:856
+#: mod/network.php:857
 msgid "New"
 msgstr "Nuevo"
 
-#: mod/network.php:859
+#: mod/network.php:860
 msgid "Activity Stream - by date"
 msgstr "Corriente de actividad por fecha"
 
-#: mod/network.php:867
+#: mod/network.php:868
 msgid "Shared Links"
 msgstr "Enlaces compartidos"
 
-#: mod/network.php:870
+#: mod/network.php:871
 msgid "Interesting Links"
 msgstr "Enlaces interesantes"
 
-#: mod/network.php:878
+#: mod/network.php:879
 msgid "Starred"
 msgstr "Favoritos"
 
-#: mod/network.php:881
+#: mod/network.php:882
 msgid "Favourite Posts"
 msgstr "Publicaciones favoritas"
 
@@ -7667,11 +7691,11 @@ msgstr "o nombre de un álbum existente: "
 msgid "Do not show a status post for this upload"
 msgstr "No actualizar tu estado con este envío"
 
-#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1295
+#: mod/photos.php:1165 mod/photos.php:1544 mod/settings.php:1300
 msgid "Show to Groups"
 msgstr "Mostrar a los Grupos"
 
-#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1296
+#: mod/photos.php:1166 mod/photos.php:1545 mod/settings.php:1301
 msgid "Show to Contacts"
 msgstr "Mostrar a los Contactos"
 
@@ -7776,22 +7800,18 @@ msgstr "Mapa"
 msgid "View Album"
 msgstr "Ver Álbum"
 
-#: mod/ping.php:234
+#: mod/ping.php:211
 msgid "{0} wants to be your friend"
 msgstr "{0} quiere ser tu amigo"
 
-#: mod/ping.php:249
+#: mod/ping.php:226
 msgid "{0} sent you a message"
 msgstr "{0} te ha enviado un mensaje"
 
-#: mod/ping.php:264
+#: mod/ping.php:241
 msgid "{0} requested registration"
 msgstr "{0} solicitudes de registro"
 
-#: mod/profile.php:179
-msgid "Tips for New Members"
-msgstr "Consejos para nuevos miembros"
-
 #: mod/register.php:93
 msgid ""
 "Registration successful. Please check your email for further instructions."
@@ -7812,121 +7832,86 @@ msgstr "Registro exitoso."
 msgid "Your registration can not be processed."
 msgstr "Tu registro no se puede procesar."
 
-#: mod/register.php:153
+#: mod/register.php:160
 msgid "Your registration is pending approval by the site owner."
 msgstr "Tu registro está pendiente de aprobación por el propietario del sitio."
 
-#: mod/register.php:219
+#: mod/register.php:226
 msgid ""
 "You may (optionally) fill in this form via OpenID by supplying your OpenID "
 "and clicking 'Register'."
 msgstr "Puedes (opcionalmente) rellenar este formulario a través de OpenID escribiendo tu OpenID y pulsando en \"Registrar\"."
 
-#: mod/register.php:220
+#: mod/register.php:227
 msgid ""
 "If you are not familiar with OpenID, please leave that field blank and fill "
 "in the rest of the items."
 msgstr "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos."
 
-#: mod/register.php:221
+#: mod/register.php:228
 msgid "Your OpenID (optional): "
 msgstr "Tu OpenID (opcional):"
 
-#: mod/register.php:235
+#: mod/register.php:242
 msgid "Include your profile in member directory?"
 msgstr "¿Incluir tu perfil en el directorio de miembros?"
 
-#: mod/register.php:259
+#: mod/register.php:267
+msgid "Note for the admin"
+msgstr "Nota para el administrador"
+
+#: mod/register.php:267
+msgid "Leave a message for the admin, why you want to join this node"
+msgstr "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo"
+
+#: mod/register.php:268
 msgid "Membership on this site is by invitation only."
 msgstr "Sitio solo accesible mediante invitación."
 
-#: mod/register.php:260
+#: mod/register.php:269
 msgid "Your invitation ID: "
 msgstr "ID de tu invitación: "
 
-#: mod/register.php:271
+#: mod/register.php:280
 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): "
 msgstr "Nombre completo (ej. Joe Smith, real o real aparente):"
 
-#: mod/register.php:272
+#: mod/register.php:281
 msgid "Your Email Address: "
 msgstr "Tu dirección de correo: "
 
-#: mod/register.php:274 mod/settings.php:1266
+#: mod/register.php:283 mod/settings.php:1271
 msgid "New Password:"
 msgstr "Contraseña nueva:"
 
-#: mod/register.php:274
+#: mod/register.php:283
 msgid "Leave empty for an auto generated password."
 msgstr "Dejar vacío para autogenerar una contraseña"
 
-#: mod/register.php:275 mod/settings.php:1267
+#: mod/register.php:284 mod/settings.php:1272
 msgid "Confirm:"
 msgstr "Confirmar:"
 
-#: mod/register.php:276
+#: mod/register.php:285
 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 "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"<strong>apodo@$nombredelsitio</strong>\"."
 
-#: mod/register.php:277
+#: mod/register.php:286
 msgid "Choose a nickname: "
 msgstr "Escoge un apodo: "
 
-#: mod/register.php:287
+#: mod/register.php:296
 msgid "Import your profile to this friendica instance"
 msgstr "Importar tu perfil a esta instancia de friendica"
 
-#: mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "¿Estás seguro de que quieres borrar esta sugerencia?"
-
-#: mod/suggest.php:71
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas."
-
-#: mod/suggest.php:84 mod/suggest.php:104
-msgid "Ignore/Hide"
-msgstr "Ignorar/Ocultar"
-
-#: mod/update_community.php:19 mod/update_display.php:23
-#: mod/update_network.php:27 mod/update_notes.php:36 mod/update_profile.php:35
-msgid "[Embedded content - reload page to view]"
-msgstr "[Contenido incrustado - recarga la página para verlo]"
-
-#: mod/videos.php:120
-msgid "Do you really want to delete this video?"
-msgstr "Realmente quieres eliminar este vídeo?"
-
-#: mod/videos.php:125
-msgid "Delete Video"
-msgstr "Borrar vídeo"
-
-#: mod/videos.php:204
-msgid "No videos selected"
-msgstr "Ningún vídeo seleccionado"
-
-#: mod/videos.php:396
-msgid "Recent Videos"
-msgstr "Vídeos recientes"
-
-#: mod/videos.php:398
-msgid "Upload New Videos"
-msgstr "Subir nuevos vídeos"
-
-#: mod/viewcontacts.php:72
-msgid "No contacts."
-msgstr "Ningún contacto."
-
 #: mod/settings.php:60
 msgid "Display"
 msgstr "Interfaz del usuario"
 
-#: mod/settings.php:67 mod/settings.php:884
+#: mod/settings.php:67 mod/settings.php:886
 msgid "Social Networks"
 msgstr "Redes sociales"
 
@@ -7954,675 +7939,731 @@ msgstr "Configuración de correo actualizada."
 msgid "Features updated"
 msgstr "Actualizaciones"
 
-#: mod/settings.php:357
+#: mod/settings.php:359
 msgid "Relocate message has been send to your contacts"
 msgstr "Mensaje de reubicación ha sido enviado a sus contactos."
 
-#: mod/settings.php:376
+#: mod/settings.php:378
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "No se permiten contraseñas vacías. La contraseña no ha sido modificada."
 
-#: mod/settings.php:384
+#: mod/settings.php:386
 msgid "Wrong password."
 msgstr "Contraseña incorrecta"
 
-#: mod/settings.php:395
+#: mod/settings.php:397
 msgid "Password changed."
 msgstr "Contraseña modificada."
 
-#: mod/settings.php:397
+#: mod/settings.php:399
 msgid "Password update failed. Please try again."
 msgstr "La actualización de la contraseña ha fallado. Por favor, prueba otra vez."
 
-#: mod/settings.php:477
+#: mod/settings.php:479
 msgid " Please use a shorter name."
 msgstr " Usa un nombre más corto."
 
-#: mod/settings.php:479
+#: mod/settings.php:481
 msgid " Name too short."
 msgstr " Nombre demasiado corto."
 
-#: mod/settings.php:488
+#: mod/settings.php:490
 msgid "Wrong Password"
 msgstr "Contraseña incorrecta"
 
-#: mod/settings.php:493
+#: mod/settings.php:495
 msgid " Not valid email."
 msgstr " Correo no válido."
 
-#: mod/settings.php:499
+#: mod/settings.php:501
 msgid " Cannot change to that email."
 msgstr " No se puede usar ese correo."
 
-#: mod/settings.php:555
+#: mod/settings.php:557
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "El foro privado no tiene permisos de privacidad. Usando el grupo de privacidad por defecto."
 
-#: mod/settings.php:559
+#: mod/settings.php:561
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "El foro privado no tiene permisos de privacidad ni grupo por defecto de privacidad."
 
-#: mod/settings.php:599
+#: mod/settings.php:601
 msgid "Settings updated."
 msgstr "Configuración actualizada."
 
-#: mod/settings.php:675 mod/settings.php:701 mod/settings.php:737
+#: mod/settings.php:677 mod/settings.php:703 mod/settings.php:739
 msgid "Add application"
 msgstr "Agregar aplicación"
 
-#: mod/settings.php:679 mod/settings.php:705
+#: mod/settings.php:681 mod/settings.php:707
 msgid "Consumer Key"
 msgstr "Clave del consumidor"
 
-#: mod/settings.php:680 mod/settings.php:706
+#: mod/settings.php:682 mod/settings.php:708
 msgid "Consumer Secret"
 msgstr "Secreto del consumidor"
 
-#: mod/settings.php:681 mod/settings.php:707
+#: mod/settings.php:683 mod/settings.php:709
 msgid "Redirect"
 msgstr "Redirigir"
 
-#: mod/settings.php:682 mod/settings.php:708
+#: mod/settings.php:684 mod/settings.php:710
 msgid "Icon url"
 msgstr "Dirección del ícono"
 
-#: mod/settings.php:693
+#: mod/settings.php:695
 msgid "You can't edit this application."
 msgstr "No puedes editar esta aplicación."
 
-#: mod/settings.php:736
+#: mod/settings.php:738
 msgid "Connected Apps"
 msgstr "Aplicaciones conectadas"
 
-#: mod/settings.php:740
+#: mod/settings.php:742
 msgid "Client key starts with"
 msgstr "Clave de cliente comienza por"
 
-#: mod/settings.php:741
+#: mod/settings.php:743
 msgid "No name"
 msgstr "Sin nombre"
 
-#: mod/settings.php:742
+#: mod/settings.php:744
 msgid "Remove authorization"
 msgstr "Suprimir la autorización"
 
-#: mod/settings.php:754
+#: mod/settings.php:756
 msgid "No Plugin settings configured"
 msgstr "No se ha configurado ningún módulo"
 
-#: mod/settings.php:762
+#: mod/settings.php:764
 msgid "Plugin Settings"
 msgstr "Configuración de los módulos"
 
-#: mod/settings.php:784
+#: mod/settings.php:786
 msgid "Additional Features"
 msgstr "Características adicionales"
 
-#: mod/settings.php:794 mod/settings.php:798
+#: mod/settings.php:796 mod/settings.php:800
 msgid "General Social Media Settings"
 msgstr "Configuración general de social media "
 
-#: mod/settings.php:804
+#: mod/settings.php:806
 msgid "Disable intelligent shortening"
 msgstr "Deshabilitar recorte inteligente de URL"
 
-#: mod/settings.php:806
+#: mod/settings.php:808
 msgid ""
 "Normally the system tries to find the best link to add to shortened posts. "
 "If this option is enabled then every shortened post will always point to the"
 " original friendica post."
 msgstr "Normalemente el sistema intenta de encontrara el mejor enlace para agregar a envíos recortados (twitter, OStatus). Si esta opción se encuentra habilitado, todo envío recortado apuntara siempre al tema original en friendica."
 
-#: mod/settings.php:812
+#: mod/settings.php:814
 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners"
 msgstr "Automáticamente seguir cualquier GNUsocial (OStatus) seguidores o menciones "
 
-#: mod/settings.php:814
+#: mod/settings.php:816
 msgid ""
 "If you receive a message from an unknown OStatus user, this option decides "
 "what to do. If it is checked, a new contact will be created for every "
 "unknown user."
 msgstr "Cuando se recibe un mensaje de un perfil desconocido de OStatus, esta opción define que hacer.\nSi es habilitado, un nuevo contacto sera creado para cada usuario."
 
-#: mod/settings.php:820
+#: mod/settings.php:822
 msgid "Default group for OStatus contacts"
 msgstr "Grupo por defecto para contactos OStatus"
 
-#: mod/settings.php:826
+#: mod/settings.php:828
 msgid "Your legacy GNU Social account"
 msgstr "Tu cuenta GNU social conectada"
 
-#: mod/settings.php:828
+#: mod/settings.php:830
 msgid ""
 "If you enter your old GNU Social/Statusnet account name here (in the format "
 "user@domain.tld), your contacts will be added automatically. The field will "
 "be emptied when done."
 msgstr "Si agrega su viejo nombre de perfil  GNUsocial/Statusnet aqui (en el formato de usuario@dominio.tld), sus contactos serán añadidos automáticamente.\nEl campo sera vaciado cuando termine el proceso. "
 
-#: mod/settings.php:831
+#: mod/settings.php:833
 msgid "Repair OStatus subscriptions"
 msgstr "Reparar subscripciones de OStatus"
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "El soporte integrado de conexión con %s está %s"
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 msgid "enabled"
 msgstr "habilitado"
 
-#: mod/settings.php:840 mod/settings.php:841
+#: mod/settings.php:842 mod/settings.php:843
 msgid "disabled"
 msgstr "deshabilitado"
 
-#: mod/settings.php:841
+#: mod/settings.php:843
 msgid "GNU Social (OStatus)"
 msgstr "GNUsocial (OStatus)"
 
-#: mod/settings.php:877
+#: mod/settings.php:879
 msgid "Email access is disabled on this site."
 msgstr "El acceso por correo está deshabilitado en esta web."
 
-#: mod/settings.php:889
+#: mod/settings.php:891
 msgid "Email/Mailbox Setup"
 msgstr "Configuración del correo/buzón"
 
-#: mod/settings.php:890
+#: mod/settings.php:892
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Si quieres comunicarte con tus contactos de correo usando este servicio (opcional), por favor, especifica cómo conectar con tu buzón."
 
-#: mod/settings.php:891
+#: mod/settings.php:893
 msgid "Last successful email check:"
 msgstr "Última comprobación del correo con éxito:"
 
-#: mod/settings.php:893
+#: mod/settings.php:895
 msgid "IMAP server name:"
 msgstr "Nombre del servidor IMAP:"
 
-#: mod/settings.php:894
+#: mod/settings.php:896
 msgid "IMAP port:"
 msgstr "Puerto IMAP:"
 
-#: mod/settings.php:895
+#: mod/settings.php:897
 msgid "Security:"
 msgstr "Seguridad:"
 
-#: mod/settings.php:895 mod/settings.php:900
+#: mod/settings.php:897 mod/settings.php:902
 msgid "None"
 msgstr "Ninguna"
 
-#: mod/settings.php:896
+#: mod/settings.php:898
 msgid "Email login name:"
 msgstr "Nombre de usuario:"
 
-#: mod/settings.php:897
+#: mod/settings.php:899
 msgid "Email password:"
 msgstr "Contraseña:"
 
-#: mod/settings.php:898
+#: mod/settings.php:900
 msgid "Reply-to address:"
 msgstr "Dirección de respuesta:"
 
-#: mod/settings.php:899
+#: mod/settings.php:901
 msgid "Send public posts to all email contacts:"
 msgstr "Enviar publicaciones públicas a todos los contactos de correo:"
 
-#: mod/settings.php:900
+#: mod/settings.php:902
 msgid "Action after import:"
 msgstr "Acción después de importar:"
 
-#: mod/settings.php:900
+#: mod/settings.php:902
 msgid "Move to folder"
 msgstr "Mover a un directorio"
 
-#: mod/settings.php:901
+#: mod/settings.php:903
 msgid "Move to folder:"
 msgstr "Mover al directorio:"
 
-#: mod/settings.php:990
+#: mod/settings.php:994
 msgid "Display Settings"
 msgstr "Configuración Tema/Visualización"
 
-#: mod/settings.php:996 mod/settings.php:1018
+#: mod/settings.php:1000 mod/settings.php:1023
 msgid "Display Theme:"
 msgstr "Utilizar tema:"
 
-#: mod/settings.php:997
+#: mod/settings.php:1001
 msgid "Mobile Theme:"
 msgstr "Tema móvil:"
 
-#: mod/settings.php:998
+#: mod/settings.php:1002
+msgid "Suppress warning of insecure networks"
+msgstr "Suprimir el aviso de redes inseguras"
+
+#: mod/settings.php:1002
+msgid ""
+"Should the system suppress the warning that the current group contains "
+"members of networks that can't receive non public postings."
+msgstr "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas."
+
+#: mod/settings.php:1003
 msgid "Update browser every xx seconds"
 msgstr "Actualizar navegador cada xx segundos"
 
-#: mod/settings.php:998
+#: mod/settings.php:1003
 msgid "Minimum of 10 seconds. Enter -1 to disable it."
 msgstr "Minimo 10 segundos. Ingrese -1 para deshabilitar."
 
-#: mod/settings.php:999
+#: mod/settings.php:1004
 msgid "Number of items to display per page:"
 msgstr "Número de elementos a mostrar por página:"
 
-#: mod/settings.php:999 mod/settings.php:1000
+#: mod/settings.php:1004 mod/settings.php:1005
 msgid "Maximum of 100 items"
 msgstr "Máximo 100 elementos"
 
-#: mod/settings.php:1000
+#: mod/settings.php:1005
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Cantidad de objetos a visualizar cuando se usa un movil"
 
-#: mod/settings.php:1001
+#: mod/settings.php:1006
 msgid "Don't show emoticons"
 msgstr "No mostrar emoticones"
 
-#: mod/settings.php:1002
+#: mod/settings.php:1007
 msgid "Calendar"
 msgstr "Calendario"
 
-#: mod/settings.php:1003
+#: mod/settings.php:1008
 msgid "Beginning of week:"
 msgstr "Principio de la semana:"
 
-#: mod/settings.php:1004
+#: mod/settings.php:1009
 msgid "Don't show notices"
 msgstr "No mostrara avisos"
 
-#: mod/settings.php:1005
+#: mod/settings.php:1010
 msgid "Infinite scroll"
 msgstr "pagina infinita (sroll)"
 
-#: mod/settings.php:1006
+#: mod/settings.php:1011
 msgid "Automatic updates only at the top of the network page"
 msgstr "Actualizaciones automaticas solo estando al principio de la pagina"
 
-#: mod/settings.php:1007
+#: mod/settings.php:1012
 msgid "Bandwith Saver Mode"
 msgstr "Modo de guardado de ancho de banda"
 
-#: mod/settings.php:1007
+#: mod/settings.php:1012
 msgid ""
 "When enabled, embedded content is not displayed on automatic updates, they "
 "only show on page reload."
 msgstr "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas."
 
-#: mod/settings.php:1009
+#: mod/settings.php:1014
 msgid "General Theme Settings"
 msgstr "Ajustes generales de tema"
 
-#: mod/settings.php:1010
+#: mod/settings.php:1015
 msgid "Custom Theme Settings"
 msgstr "Ajustes personalizados de tema"
 
-#: mod/settings.php:1011
+#: mod/settings.php:1016
 msgid "Content Settings"
 msgstr "Ajustes de contenido"
 
-#: mod/settings.php:1012 view/theme/frio/config.php:61
-#: view/theme/cleanzero/config.php:82 view/theme/quattro/config.php:66
-#: view/theme/dispy/config.php:72 view/theme/vier/config.php:109
-#: view/theme/diabook/config.php:150 view/theme/duepuntozero/config.php:61
+#: mod/settings.php:1017 view/theme/frio/config.php:61
+#: view/theme/quattro/config.php:66 view/theme/vier/config.php:109
+#: view/theme/duepuntozero/config.php:61
 msgid "Theme settings"
 msgstr "Configuración del Tema"
 
-#: mod/settings.php:1094
+#: mod/settings.php:1099
 msgid "Account Types"
 msgstr "Tipos de cuenta"
 
-#: mod/settings.php:1095
+#: mod/settings.php:1100
 msgid "Personal Page Subtypes"
 msgstr "Subtipos de página personal"
 
-#: mod/settings.php:1096
+#: mod/settings.php:1101
 msgid "Community Forum Subtypes"
 msgstr "Subtipos de foro de comunidad"
 
-#: mod/settings.php:1103
+#: mod/settings.php:1108
 msgid "Personal Page"
 msgstr "Página personal"
 
-#: mod/settings.php:1104
+#: mod/settings.php:1109
 msgid "This account is a regular personal profile"
 msgstr "Esta cuenta es un perfil personal corriente"
 
-#: mod/settings.php:1107
+#: mod/settings.php:1112
 msgid "Organisation Page"
 msgstr "Página de organización"
 
-#: mod/settings.php:1108
+#: mod/settings.php:1113
 msgid "This account is a profile for an organisation"
 msgstr "Esta cuenta es un perfil de una organización"
 
-#: mod/settings.php:1111
+#: mod/settings.php:1116
 msgid "News Page"
 msgstr "Página de noticias"
 
-#: mod/settings.php:1112
+#: mod/settings.php:1117
 msgid "This account is a news account/reflector"
 msgstr "Esta cuenta es una cuenta de noticias/reflectora"
 
-#: mod/settings.php:1115
+#: mod/settings.php:1120
 msgid "Community Forum"
 msgstr "Foro de la comunidad"
 
-#: mod/settings.php:1116
+#: mod/settings.php:1121
 msgid ""
 "This account is a community forum where people can discuss with each other"
 msgstr "Esta cuenta es un foro de comunidad donde la gente puede debatir con otros"
 
-#: mod/settings.php:1119
+#: mod/settings.php:1124
 msgid "Normal Account Page"
 msgstr "Página de cuenta normal"
 
-#: mod/settings.php:1120
+#: mod/settings.php:1125
 msgid "This account is a normal personal profile"
 msgstr "Esta cuenta es el perfil personal normal"
 
-#: mod/settings.php:1123
+#: mod/settings.php:1128
 msgid "Soapbox Page"
 msgstr "Página de tribuna"
 
-#: mod/settings.php:1124
+#: mod/settings.php:1129
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Acepta automáticamente todas las peticiones de conexión/amistad como seguidores de solo-lectura"
 
-#: mod/settings.php:1127
+#: mod/settings.php:1132
 msgid "Public Forum"
 msgstr "Foro público"
 
-#: mod/settings.php:1128
+#: mod/settings.php:1133
 msgid "Automatically approve all contact requests"
 msgstr "Aprovar autimáticamente todas las solicitudes de contacto"
 
-#: mod/settings.php:1131
+#: mod/settings.php:1136
 msgid "Automatic Friend Page"
 msgstr "Página de Amistad autómatica"
 
-#: mod/settings.php:1132
+#: mod/settings.php:1137
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Aceptar automáticamente todas las solicitudes de conexión/amistad como amigos"
 
-#: mod/settings.php:1135
+#: mod/settings.php:1140
 msgid "Private Forum [Experimental]"
 msgstr "Foro privado [Experimental]"
 
-#: mod/settings.php:1136
+#: mod/settings.php:1141
 msgid "Private forum - approved members only"
 msgstr "Foro privado - solo miembros"
 
-#: mod/settings.php:1148
+#: mod/settings.php:1153
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: mod/settings.php:1148
+#: mod/settings.php:1153
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta."
 
-#: mod/settings.php:1158
+#: mod/settings.php:1163
 msgid "Publish your default profile in your local site directory?"
 msgstr "¿Quieres publicar tu perfil predeterminado en el directorio local del sitio?"
 
-#: mod/settings.php:1164
+#: mod/settings.php:1169
 msgid "Publish your default profile in the global social directory?"
 msgstr "¿Quieres publicar tu perfil predeterminado en el directorio social de forma global?"
 
-#: mod/settings.php:1172
+#: mod/settings.php:1177
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "¿Quieres ocultar tu lista de contactos/amigos en la vista de tu perfil predeterminado?"
 
-#: mod/settings.php:1176
+#: mod/settings.php:1181
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr "Si habilitado, enviar temas públicos a  a Diaspora* y otras redes no es posible. "
 
-#: mod/settings.php:1181
+#: mod/settings.php:1186
 msgid "Allow friends to post to your profile page?"
 msgstr "¿Permites que tus amigos publiquen en tu página de perfil?"
 
-#: mod/settings.php:1187
+#: mod/settings.php:1192
 msgid "Allow friends to tag your posts?"
 msgstr "¿Permites a los amigos etiquetar tus publicaciones?"
 
-#: mod/settings.php:1193
+#: mod/settings.php:1198
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "¿Nos permite recomendarte como amigo potencial a los nuevos miembros?"
 
-#: mod/settings.php:1199
+#: mod/settings.php:1204
 msgid "Permit unknown people to send you private mail?"
 msgstr "¿Permites que desconocidos te manden correos privados?"
 
-#: mod/settings.php:1207
+#: mod/settings.php:1212
 msgid "Profile is <strong>not published</strong>."
 msgstr "El perfil <strong>no está publicado</strong>."
 
-#: mod/settings.php:1215
+#: mod/settings.php:1220
 #, php-format
 msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
 msgstr "Su dirección de identidad es <strong>'%s'</strong> o '%s'."
 
-#: mod/settings.php:1222
+#: mod/settings.php:1227
 msgid "Automatically expire posts after this many days:"
 msgstr "Las publicaciones expirarán automáticamente después de estos días:"
 
-#: mod/settings.php:1222
+#: mod/settings.php:1227
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Si lo dejas vacío no expirarán nunca. Las publicaciones que hayan expirado se borrarán"
 
-#: mod/settings.php:1223
+#: mod/settings.php:1228
 msgid "Advanced expiration settings"
 msgstr "Configuración avanzada de expiración"
 
-#: mod/settings.php:1224
+#: mod/settings.php:1229
 msgid "Advanced Expiration"
 msgstr "Expiración avanzada"
 
-#: mod/settings.php:1225
+#: mod/settings.php:1230
 msgid "Expire posts:"
 msgstr "¿Expiran las publicaciones?"
 
-#: mod/settings.php:1226
+#: mod/settings.php:1231
 msgid "Expire personal notes:"
 msgstr "¿Expiran las notas personales?"
 
-#: mod/settings.php:1227
+#: mod/settings.php:1232
 msgid "Expire starred posts:"
 msgstr "¿Expiran los favoritos?"
 
-#: mod/settings.php:1228
+#: mod/settings.php:1233
 msgid "Expire photos:"
 msgstr "¿Expiran las fotografías?"
 
-#: mod/settings.php:1229
+#: mod/settings.php:1234
 msgid "Only expire posts by others:"
 msgstr "Solo expiran los mensajes de los demás:"
 
-#: mod/settings.php:1257
+#: mod/settings.php:1262
 msgid "Account Settings"
 msgstr "Configuración de la cuenta"
 
-#: mod/settings.php:1265
+#: mod/settings.php:1270
 msgid "Password Settings"
 msgstr "Configuración de la contraseña"
 
-#: mod/settings.php:1267
+#: mod/settings.php:1272
 msgid "Leave password fields blank unless changing"
 msgstr "Deja la contraseña en blanco si no quieres cambiarla"
 
-#: mod/settings.php:1268
+#: mod/settings.php:1273
 msgid "Current Password:"
 msgstr "Contraseña actual:"
 
-#: mod/settings.php:1268 mod/settings.php:1269
+#: mod/settings.php:1273 mod/settings.php:1274
 msgid "Your current password to confirm the changes"
 msgstr "Su contraseña actual para confirmar los cambios."
 
-#: mod/settings.php:1269
+#: mod/settings.php:1274
 msgid "Password:"
 msgstr "Contraseña:"
 
-#: mod/settings.php:1273
+#: mod/settings.php:1278
 msgid "Basic Settings"
 msgstr "Configuración básica"
 
-#: mod/settings.php:1275
+#: mod/settings.php:1280
 msgid "Email Address:"
 msgstr "Dirección de correo:"
 
-#: mod/settings.php:1276
+#: mod/settings.php:1281
 msgid "Your Timezone:"
 msgstr "Zona horaria:"
 
-#: mod/settings.php:1277
+#: mod/settings.php:1282
 msgid "Your Language:"
 msgstr "Tu idioma:"
 
-#: mod/settings.php:1277
+#: mod/settings.php:1282
 msgid ""
 "Set the language we use to show you friendica interface and to send you "
 "emails"
 msgstr "Selecciona el idioma que se usara para la interfaz del usuario y para el envío de correo."
 
-#: mod/settings.php:1278
+#: mod/settings.php:1283
 msgid "Default Post Location:"
 msgstr "Localización predeterminada:"
 
-#: mod/settings.php:1279
+#: mod/settings.php:1284
 msgid "Use Browser Location:"
 msgstr "Usar localización del navegador:"
 
-#: mod/settings.php:1282
+#: mod/settings.php:1287
 msgid "Security and Privacy Settings"
 msgstr "Configuración de seguridad y privacidad"
 
-#: mod/settings.php:1284
+#: mod/settings.php:1289
 msgid "Maximum Friend Requests/Day:"
 msgstr "Máximo número de peticiones de amistad por día:"
 
-#: mod/settings.php:1284 mod/settings.php:1314
+#: mod/settings.php:1289 mod/settings.php:1319
 msgid "(to prevent spam abuse)"
 msgstr "(para prevenir el abuso de spam)"
 
-#: mod/settings.php:1285
+#: mod/settings.php:1290
 msgid "Default Post Permissions"
 msgstr "Permisos por defecto para las publicaciones"
 
-#: mod/settings.php:1286
+#: mod/settings.php:1291
 msgid "(click to open/close)"
 msgstr "(pulsa para abrir/cerrar)"
 
-#: mod/settings.php:1297
+#: mod/settings.php:1302
 msgid "Default Private Post"
 msgstr "Publicación Privada por defecto"
 
-#: mod/settings.php:1298
+#: mod/settings.php:1303
 msgid "Default Public Post"
 msgstr "Publicación Pública por defecto"
 
-#: mod/settings.php:1302
+#: mod/settings.php:1307
 msgid "Default Permissions for New Posts"
 msgstr "Permisos por defecto para nuevas publicaciones"
 
-#: mod/settings.php:1314
+#: mod/settings.php:1319
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Número máximo de mensajes diarios para desconocidos:"
 
-#: mod/settings.php:1317
+#: mod/settings.php:1322
 msgid "Notification Settings"
 msgstr "Configuración de notificaciones"
 
-#: mod/settings.php:1318
+#: mod/settings.php:1323
 msgid "By default post a status message when:"
 msgstr "Publicar en tu estado cuando:"
 
-#: mod/settings.php:1319
+#: mod/settings.php:1324
 msgid "accepting a friend request"
 msgstr "aceptes una solicitud de amistad"
 
-#: mod/settings.php:1320
+#: mod/settings.php:1325
 msgid "joining a forum/community"
 msgstr "te unas a un foro/comunidad"
 
-#: mod/settings.php:1321
+#: mod/settings.php:1326
 msgid "making an <em>interesting</em> profile change"
 msgstr "hagas un cambio <em>interesante</em> en tu perfil"
 
-#: mod/settings.php:1322
+#: mod/settings.php:1327
 msgid "Send a notification email when:"
 msgstr "Enviar notificación por correo cuando:"
 
-#: mod/settings.php:1323
+#: mod/settings.php:1328
 msgid "You receive an introduction"
 msgstr "Recibas una presentación"
 
-#: mod/settings.php:1324
+#: mod/settings.php:1329
 msgid "Your introductions are confirmed"
 msgstr "Tu presentación sea confirmada"
 
-#: mod/settings.php:1325
+#: mod/settings.php:1330
 msgid "Someone writes on your profile wall"
 msgstr "Alguien escriba en el muro de mi perfil"
 
-#: mod/settings.php:1326
+#: mod/settings.php:1331
 msgid "Someone writes a followup comment"
 msgstr "Algien escriba en un comentario que sigo"
 
-#: mod/settings.php:1327
+#: mod/settings.php:1332
 msgid "You receive a private message"
 msgstr "Recibas un mensaje privado"
 
-#: mod/settings.php:1328
+#: mod/settings.php:1333
 msgid "You receive a friend suggestion"
 msgstr "Recibas una sugerencia de amistad"
 
-#: mod/settings.php:1329
+#: mod/settings.php:1334
 msgid "You are tagged in a post"
 msgstr "Seas etiquetado en una publicación"
 
-#: mod/settings.php:1330
+#: mod/settings.php:1335
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Te han tocado/empujado/etc. en una publicación"
 
-#: mod/settings.php:1332
+#: mod/settings.php:1337
 msgid "Activate desktop notifications"
 msgstr "Activar notificaciones en pantalla."
 
-#: mod/settings.php:1332
+#: mod/settings.php:1337
 msgid "Show desktop popup on new notifications"
 msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos."
 
-#: mod/settings.php:1334
+#: mod/settings.php:1339
 msgid "Text-only notification emails"
 msgstr "Notificaciones e-mail de solo texto"
 
-#: mod/settings.php:1336
+#: mod/settings.php:1341
 msgid "Send text only notification emails, without the html part"
 msgstr "Enviar las notificaciones por correo con formato de solo texto sin html."
 
-#: mod/settings.php:1338
+#: mod/settings.php:1343
 msgid "Advanced Account/Page Type Settings"
 msgstr "Configuración avanzada de tipo de Cuenta/Página"
 
-#: mod/settings.php:1339
+#: mod/settings.php:1344
 msgid "Change the behaviour of this account for special situations"
 msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales"
 
-#: mod/settings.php:1342
+#: mod/settings.php:1347
 msgid "Relocate"
 msgstr "Relocalizar"
 
-#: mod/settings.php:1343
+#: mod/settings.php:1348
 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 "Si ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente  recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)"
 
-#: mod/settings.php:1344
+#: mod/settings.php:1349
 msgid "Resend relocate message to contacts"
 msgstr "Reenviar mensaje de relocalización a los contactos"
 
+#: mod/videos.php:120
+msgid "Do you really want to delete this video?"
+msgstr "Realmente quieres eliminar este vídeo?"
+
+#: mod/videos.php:125
+msgid "Delete Video"
+msgstr "Borrar vídeo"
+
+#: mod/videos.php:204
+msgid "No videos selected"
+msgstr "Ningún vídeo seleccionado"
+
+#: mod/videos.php:396
+msgid "Recent Videos"
+msgstr "Vídeos recientes"
+
+#: mod/videos.php:398
+msgid "Upload New Videos"
+msgstr "Subir nuevos vídeos"
+
+#: mod/viewcontacts.php:72
+msgid "No contacts."
+msgstr "Ningún contacto."
+
+#: mod/wall_attach.php:17 mod/wall_attach.php:25 mod/wall_attach.php:76
+#: mod/wall_upload.php:20 mod/wall_upload.php:33 mod/wall_upload.php:86
+#: mod/wall_upload.php:122 mod/wall_upload.php:125
+msgid "Invalid request."
+msgstr "Consulta invalida"
+
+#: mod/wall_attach.php:94
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite."
+
+#: mod/wall_attach.php:94
+msgid "Or - did you try to upload an empty file?"
+msgstr "Si no - intento de subir un archivo vacío?"
+
+#: mod/wall_attach.php:105
+#, php-format
+msgid "File exceeds size limit of %s"
+msgstr "El archivo excede el limite de tamaño de %s"
+
+#: mod/wall_attach.php:156 mod/wall_attach.php:172
+msgid "File upload failed."
+msgstr "Ha fallado la subida del archivo."
+
 #: object/Item.php:370
 msgid "via"
 msgstr "vía"
@@ -8707,23 +8748,6 @@ msgstr "Invitado"
 msgid "Visitor"
 msgstr "Visitante"
 
-#: view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Configurar el tamaño de las imágenes en las publicaciones"
-
-#: 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 "Tamaño del texto para publicaciones y comentarios"
-
-#: view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Establecer el ancho para el tema"
-
-#: view/theme/cleanzero/config.php:86 view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Esquema de color"
-
 #: view/theme/quattro/config.php:67
 msgid "Alignment"
 msgstr "Alineación"
@@ -8736,6 +8760,10 @@ msgstr "Izquierda"
 msgid "Center"
 msgstr "Centrado"
 
+#: view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Esquema de color"
+
 #: view/theme/quattro/config.php:69
 msgid "Posts font size"
 msgstr "Tamaño de letra del titulo de las publicaciones"
@@ -8744,33 +8772,19 @@ msgstr "Tamaño de letra del titulo de las publicaciones"
 msgid "Textareas font size"
 msgstr "Tamaño de letra del área de texto"
 
-#: view/theme/dispy/config.php:74 view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Altura para las publicaciones y comentarios"
-
-#: view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Configurar esquema de color"
-
 #: view/theme/vier/theme.php:152 view/theme/vier/config.php:112
-#: view/theme/diabook/theme.php:391 view/theme/diabook/theme.php:626
-#: view/theme/diabook/config.php:160
 msgid "Community Profiles"
 msgstr "Perfiles de la Comunidad"
 
 #: view/theme/vier/theme.php:181 view/theme/vier/config.php:116
-#: view/theme/diabook/theme.php:412 view/theme/diabook/theme.php:630
-#: view/theme/diabook/config.php:164
 msgid "Last users"
 msgstr "Últimos usuarios"
 
 #: view/theme/vier/theme.php:199 view/theme/vier/config.php:115
-#: view/theme/diabook/theme.php:523 view/theme/diabook/theme.php:629
-#: view/theme/diabook/config.php:163
 msgid "Find Friends"
 msgstr "Buscar amigos"
 
-#: view/theme/vier/theme.php:200 view/theme/diabook/theme.php:524
+#: view/theme/vier/theme.php:200
 msgid "Local Directory"
 msgstr "Directorio local"
 
@@ -8779,8 +8793,6 @@ msgid "Quick Start"
 msgstr "Inicio rápido"
 
 #: view/theme/vier/theme.php:373 view/theme/vier/config.php:114
-#: view/theme/diabook/theme.php:606 view/theme/diabook/theme.php:628
-#: view/theme/diabook/config.php:162
 msgid "Connect Services"
 msgstr "Servicios conectados"
 
@@ -8792,68 +8804,14 @@ msgstr "Lista separada por comas de foros de ayuda."
 msgid "Set style"
 msgstr "Definir estilo"
 
-#: view/theme/vier/config.php:111 view/theme/diabook/theme.php:130
-#: view/theme/diabook/theme.php:544 view/theme/diabook/theme.php:624
-#: view/theme/diabook/config.php:158
+#: view/theme/vier/config.php:111
 msgid "Community Pages"
 msgstr "Páginas de Comunidad"
 
-#: view/theme/vier/config.php:113 view/theme/diabook/theme.php:599
-#: view/theme/diabook/theme.php:627 view/theme/diabook/config.php:161
+#: view/theme/vier/config.php:113
 msgid "Help or @NewHere ?"
 msgstr "¿Ayuda o @NuevoAquí?"
 
-#: view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Tus contactos"
-
-#: view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Tus fotos personales"
-
-#: view/theme/diabook/theme.php:441 view/theme/diabook/theme.php:632
-#: view/theme/diabook/config.php:166
-msgid "Last likes"
-msgstr "Últimos \"me gusta\""
-
-#: view/theme/diabook/theme.php:486 view/theme/diabook/theme.php:631
-#: view/theme/diabook/config.php:165
-msgid "Last photos"
-msgstr "Últimas fotos"
-
-#: view/theme/diabook/theme.php:579 view/theme/diabook/theme.php:625
-#: view/theme/diabook/config.php:159
-msgid "Earth Layers"
-msgstr "Minimapa"
-
-#: view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Configurar zoom en Minimapa"
-
-#: view/theme/diabook/theme.php:585 view/theme/diabook/config.php:156
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Configurar longitud (X) en Minimapa"
-
-#: view/theme/diabook/theme.php:586 view/theme/diabook/config.php:157
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Configurar latitud (Y) en Minimapa"
-
-#: view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Mostrar/Ocultar casillas en la columna derecha:"
-
-#: view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Resolución para la columna central"
-
-#: view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Configurar esquema de color"
-
-#: view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Establecer zoom para Minimapa"
-
 #: view/theme/duepuntozero/config.php:45
 msgid "greenzero"
 msgstr "greenzero"
@@ -8886,51 +8844,51 @@ msgstr "Variaciones"
 msgid "toggle mobile"
 msgstr "Cambiar a versión móvil"
 
-#: boot.php:968
+#: boot.php:969
 msgid "Delete this item?"
 msgstr "¿Eliminar este elemento?"
 
-#: boot.php:971
+#: boot.php:972
 msgid "show fewer"
 msgstr "ver menos"
 
-#: boot.php:1641
+#: boot.php:1650
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "Falló la actualización de %s. Mira los registros de errores."
 
-#: boot.php:1753
+#: boot.php:1762
 msgid "Create a New Account"
 msgstr "Crear una nueva cuenta"
 
-#: boot.php:1782
+#: boot.php:1791
 msgid "Password: "
 msgstr "Contraseña: "
 
-#: boot.php:1783
+#: boot.php:1792
 msgid "Remember me"
 msgstr "Recordarme"
 
-#: boot.php:1786
+#: boot.php:1795
 msgid "Or login using OpenID: "
 msgstr "O inicia sesión usando OpenID: "
 
-#: boot.php:1792
+#: boot.php:1801
 msgid "Forgot your password?"
 msgstr "¿Olvidaste la contraseña?"
 
-#: boot.php:1795
+#: boot.php:1804
 msgid "Website Terms of Service"
 msgstr "Términos de uso del sitio"
 
-#: boot.php:1796
+#: boot.php:1805
 msgid "terms of service"
 msgstr "Términos de uso"
 
-#: boot.php:1798
+#: boot.php:1807
 msgid "Website Privacy Policy"
 msgstr "Política de privacidad del sitio"
 
-#: boot.php:1799
+#: boot.php:1808
 msgid "privacy policy"
 msgstr "Política de privacidad"
index 95c1596902745ffbc774f37c2311bcaf27c3febe..500739e5cb420a7d4bd0ba882ead24d5ceff5c93 100644 (file)
@@ -115,28 +115,6 @@ $a->strings["Create a new group"] = "Crear un nuevo grupo";
 $a->strings["Group Name: "] = "Nombre del grupo: ";
 $a->strings["Contacts not in any group"] = "Contactos sin grupo";
 $a->strings["add"] = "añadir";
-$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada.";
-$a->strings["An invitation is required."] = "Se necesita invitación.";
-$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación.";
-$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida";
-$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria.";
-$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto.";
-$a->strings["Name too short."] = "El nombre es demasiado corto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio.";
-$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida.";
-$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "El apodo solo puede contener  \"a-z\", \"0-9\" y \"_\".";
-$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado.";
-$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo.";
-$a->strings["default"] = "predeterminado";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo.";
-$a->strings["Profile Photos"] = "Foto del perfil";
-$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\tEstimado %1\$s,\n\t\t\tGracias por registrar en %2\$s. Su cuenta ha sido creada.\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\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3\$s\n\t\t\tNombre de la cuenta:\t\t%1\$s\n\t\t\tContraseña:\t\t%5\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a  %2\$s.";
-$a->strings["Registration details for %s"] = "Detalles de registro para %s";
 $a->strings["Unknown | Not categorised"] = "Desconocido | No clasificado";
 $a->strings["Block immediately"] = "Bloquear inmediatamente";
 $a->strings["Shady, spammer, self-marketer"] = "Sospechoso, spammer, auto-publicidad";
@@ -166,7 +144,6 @@ $a->strings["Diaspora Connector"] = "Conector Diaspora";
 $a->strings["GNU Social"] = "GNUsocial (OStatus)";
 $a->strings["App.net"] = "App.net";
 $a->strings["Hubzilla/Redmatrix"] = "Hubzilla/Redmatrix";
-$a->strings["view full size"] = "Ver a tamaño completo";
 $a->strings["Post to Email"] = "Publicar mediante correo electrónico";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Conectores deshabilitados, ya que \"%s\" es habilitado.";
 $a->strings["Hide your profile details from unknown viewers?"] = "¿Quieres que los detalles de tu perfil permanezcan ocultos a los desconocidos?";
@@ -201,24 +178,6 @@ $a->strings["%d contact not imported"] = array(
        1 => "%d contactos no importado",
 );
 $a->strings["Done. You can now login with your username and password"] = "Hecho. Ahora podes ingresar con tu nombre de cuenta y la contraseña.";
-$a->strings["System"] = "Sistema";
-$a->strings["Network"] = "Red";
-$a->strings["Personal"] = "Personal";
-$a->strings["Home"] = "Inicio";
-$a->strings["Introductions"] = "Presentaciones";
-$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s";
-$a->strings["%s created a new post"] = "%s creó una nueva publicación";
-$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s";
-$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s";
-$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's";
-$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's";
-$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's";
-$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s";
-$a->strings["Friend Suggestion"] = "Propuestas de amistad";
-$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión";
-$a->strings["New Follower"] = "Nuevo seguidor";
-$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*";
-$a->strings["Attachments:"] = "Archivos adjuntos:";
 $a->strings["General Features"] = "Opciones generales";
 $a->strings["Multiple Profiles"] = "Perfiles multiples";
 $a->strings["Ability to create multiple profiles"] = "Capacidad de crear perfiles multiples. Cada pagina/perfil/usuario puede tener diferentes perfiles/apariencias. Las mismas pueden ser visibles para determinados contactos seleccionados dentro de la red friendica.";
@@ -269,115 +228,10 @@ $a->strings["Mute Post Notifications"] = "Silenciar notificaciones de una public
 $a->strings["Ability to mute notifications for a thread"] = "Habilidad de silenciar notificaciones sobre nuevos comentarios en una publicación.";
 $a->strings["Advanced Profile Settings"] = "Ajustes avanzados del perfil";
 $a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Mostrar a los visitantes foros públicos en las que se esta participando en el pagina avanzada de perfiles.";
-$a->strings["(no subject)"] = "(sin asunto)";
-$a->strings["noreply"] = "no responder";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada.";
 $a->strings["Image/photo"] = "Imagen/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["$1 wrote:"] = "$1 escribió:";
 $a->strings["Encrypted content"] = "Contenido cifrado";
-$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s";
-$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s";
-$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s atenderá quizás %2\$s's %3\$s";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ahora es amigo de %2\$s";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s le dio un toque a %2\$s";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s está actualmente %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado el %3\$s de %2\$s con %4\$s";
-$a->strings["post/item"] = "publicación/tema";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha marcado %3\$s de %2\$s como Favorito";
-$a->strings["Likes"] = "Me gusta";
-$a->strings["Dislikes"] = "No me gusta";
-$a->strings["Attending"] = array(
-       0 => "Atendiendo",
-       1 => "Atendiendo",
-);
-$a->strings["Not attending"] = "No atendiendo";
-$a->strings["Might attend"] = "Puede que atienda";
-$a->strings["Select"] = "Seleccionar";
-$a->strings["Delete"] = "Eliminar";
-$a->strings["View %s's profile @ %s"] = "Ver perfil de %s @ %s";
-$a->strings["Categories:"] = "Categorías:";
-$a->strings["Filed under:"] = "Archivado en:";
-$a->strings["%s from %s"] = "%s de %s";
-$a->strings["View in context"] = "Verlo en contexto";
-$a->strings["Please wait"] = "Por favor, espera";
-$a->strings["remove"] = "eliminar";
-$a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado";
-$a->strings["Follow Thread"] = "Seguir publicacion";
-$a->strings["View Status"] = "Ver estado";
-$a->strings["View Profile"] = "Ver perfil";
-$a->strings["View Photos"] = "Ver fotos";
-$a->strings["Network Posts"] = "Publicaciones en la red";
-$a->strings["View Contact"] = "Ver contacto";
-$a->strings["Send PM"] = "Enviar mensaje privado";
-$a->strings["Poke"] = "Toque";
-$a->strings["%s likes this."] = "A %s le gusta esto.";
-$a->strings["%s doesn't like this."] = "A %s no le gusta esto.";
-$a->strings["%s attends."] = "%s atiende.";
-$a->strings["%s doesn't attend."] = "%s no atenderá.";
-$a->strings["%s attends maybe."] = "%s quizás atenderá";
-$a->strings["and"] = "y";
-$a->strings[", and %d other people"] = " y a otras %d personas";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personas</span> les gusta esto";
-$a->strings["%s like this."] = "A %s le gusta esto.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personas</span> no les gusta esto";
-$a->strings["%s don't like this."] = "A %s no le gusta esto.";
-$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span  %1\$s>%2\$d personas</span> atienden";
-$a->strings["%s attend."] = "%s atiende.";
-$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span  %1\$s>%2\$d personas</span>no atienden";
-$a->strings["%s don't attend."] = "%s no atiende.";
-$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span  %1\$s>%2\$d people</span> quizá asistan";
-$a->strings["%s anttend maybe."] = "%s atiende quizás.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visible para <strong>cualquiera</strong>";
-$a->strings["Please enter a link URL:"] = "Introduce la dirección del enlace:";
-$a->strings["Please enter a video link/URL:"] = "Por favor, introduce la URL/enlace del vídeo:";
-$a->strings["Please enter an audio link/URL:"] = "Por favor, introduce la URL/enlace del audio:";
-$a->strings["Tag term:"] = "Etiquetar:";
-$a->strings["Save to Folder:"] = "Guardar en directorio:";
-$a->strings["Where are you right now?"] = "¿Dónde estás ahora?";
-$a->strings["Delete item(s)?"] = "¿Borrar objeto(s)?";
-$a->strings["Share"] = "Compartir";
-$a->strings["Upload photo"] = "Subir foto";
-$a->strings["upload photo"] = "subir imagen";
-$a->strings["Attach file"] = "Adjuntar archivo";
-$a->strings["attach file"] = "adjuntar archivo";
-$a->strings["Insert web link"] = "Insertar enlace";
-$a->strings["web link"] = "enlace web";
-$a->strings["Insert video link"] = "Insertar enlace del vídeo";
-$a->strings["video link"] = "enlace de video";
-$a->strings["Insert audio link"] = "Insertar vínculo del audio";
-$a->strings["audio link"] = "enlace de audio";
-$a->strings["Set your location"] = "Configurar tu localización";
-$a->strings["set location"] = "establecer tu ubicación";
-$a->strings["Clear browser location"] = "Borrar la localización del navegador";
-$a->strings["clear location"] = "limpiar la localización";
-$a->strings["Set title"] = "Establecer el título";
-$a->strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)";
-$a->strings["Permission settings"] = "Configuración de permisos";
-$a->strings["permissions"] = "permisos";
-$a->strings["Public post"] = "Publicación pública";
-$a->strings["Preview"] = "Vista previa";
-$a->strings["Cancel"] = "Cancelar";
-$a->strings["Post to Groups"] = "Publicar hacia grupos";
-$a->strings["Post to Contacts"] = "Publicar hacia contactos";
-$a->strings["Private post"] = "Publicación privada";
-$a->strings["Message"] = "Mensaje";
-$a->strings["Browser"] = "Navegador";
-$a->strings["View all"] = "Ver todos los contactos";
-$a->strings["Like"] = array(
-       0 => "Me gusta",
-       1 => "Me gusta",
-);
-$a->strings["Dislike"] = array(
-       0 => "No me gusta",
-       1 => "No me gusta",
-);
-$a->strings["Not Attending"] = array(
-       0 => "No atendiendo",
-       1 => "No atendiendo",
-);
 $a->strings["Miscellaneous"] = "Varios";
 $a->strings["Birthday:"] = "Fecha de nacimiento:";
 $a->strings["Age: "] = "Edad: ";
@@ -401,15 +255,11 @@ $a->strings["seconds"] = "segundos";
 $a->strings["%1\$d %2\$s ago"] = "hace %1\$d %2\$s";
 $a->strings["%s's birthday"] = "Cumpleaños de %s";
 $a->strings["Happy Birthday %s"] = "Feliz cumpleaños %s";
-$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\tLos desarolladores de friendica publicaron una actualización  %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Se han encontrados errores creando las tablas de la base de datos.";
-$a->strings["Errors encountered performing database changes."] = "Errores encontrados al ejecutar cambios en la base de datos.";
-$a->strings["%s\\'s birthday"] = "%s\\'s cumpleaños";
 $a->strings["Friendica Notification"] = "Notificación de Friendica";
 $a->strings["Thank You,"] = "Gracias,";
 $a->strings["%s Administrator"] = "%s Administrador";
 $a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrador";
+$a->strings["noreply"] = "no responder";
 $a->strings["%s <!item_type!>"] = "%s <!item_type!>";
 $a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notificación] Nuevo correo recibido de %s";
 $a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s te ha enviado un mensaje privado desde %2\$s.";
@@ -524,87 +374,26 @@ $a->strings["The profile address specified belongs to a network which has been d
 $a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas.";
 $a->strings["Unable to retrieve contact information."] = "No ha sido posible recibir la información del contacto.";
 $a->strings["following"] = "siguiendo";
-$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible.";
-$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible.";
-$a->strings["Edit profile"] = "Editar perfil";
-$a->strings["Atom feed"] = "Atom feed";
-$a->strings["Profiles"] = "Perfiles";
-$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles";
-$a->strings["Change profile photo"] = "Cambiar foto del perfil";
-$a->strings["Create New Profile"] = "Crear nuevo perfil";
-$a->strings["Profile Image"] = "Imagen del Perfil";
-$a->strings["visible to everybody"] = "Visible para todos";
-$a->strings["Edit visibility"] = "Editar visibilidad";
-$a->strings["Gender:"] = "Género:";
-$a->strings["Status:"] = "Estado:";
-$a->strings["Homepage:"] = "Página de inicio:";
-$a->strings["About:"] = "Acerca de:";
-$a->strings["XMPP:"] = "XMPP:";
-$a->strings["Network:"] = "Red:";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[hoy]";
-$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños";
-$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:";
-$a->strings["[No description]"] = "[Sin descripción]";
-$a->strings["Event Reminders"] = "Recordatorios de eventos";
-$a->strings["Events this week:"] = "Eventos de esta semana:";
-$a->strings["Profile"] = "Perfil";
-$a->strings["Full Name:"] = "Nombre completo:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Age:"] = "Edad:";
-$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Preferencia sexual:";
-$a->strings["Hometown:"] = "Ciudad de origen:";
-$a->strings["Tags:"] = "Etiquetas:";
-$a->strings["Political Views:"] = "Ideas políticas:";
-$a->strings["Religion:"] = "Religión:";
-$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:";
-$a->strings["Likes:"] = "Me gusta:";
-$a->strings["Dislikes:"] = "No me gusta:";
-$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:";
-$a->strings["Musical interests:"] = "Intereses musicales:";
-$a->strings["Books, literature:"] = "Libros, literatura:";
-$a->strings["Television:"] = "Televisión:";
-$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:";
-$a->strings["Love/Romance:"] = "Amor/Romance:";
-$a->strings["Work/employment:"] = "Trabajo/ocupación:";
-$a->strings["School/education:"] = "Escuela/estudios:";
-$a->strings["Forums:"] = "Foros:";
-$a->strings["Basic"] = "Basic";
-$a->strings["Advanced"] = "Avanzado";
-$a->strings["Status"] = "Estado";
-$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones";
-$a->strings["Profile Details"] = "Detalles del Perfil";
-$a->strings["Photos"] = "Fotografías";
-$a->strings["Photo Albums"] = "Álbum de Fotos";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events"] = "Eventos";
-$a->strings["Events and Calendar"] = "Eventos y Calendario";
-$a->strings["Personal Notes"] = "Notas personales";
-$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto";
-$a->strings["Contacts"] = "Contactos";
-$a->strings["[Name Withheld]"] = "[Nombre oculto]";
-$a->strings["Item not found."] = "Elemento no encontrado.";
-$a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?";
-$a->strings["Yes"] = "Sí";
-$a->strings["Permission denied."] = "Permiso denegado.";
-$a->strings["Archives"] = "Archivos";
 $a->strings["Nothing new here"] = "Nada nuevo por aquí";
 $a->strings["Clear notifications"] = "Limpiar notificaciones";
 $a->strings["@name, !forum, #tags, content"] = "@name, !forum, #tags, contenido";
 $a->strings["Logout"] = "Salir";
 $a->strings["End this session"] = "Cerrar la sesión";
+$a->strings["Status"] = "Estado";
 $a->strings["Your posts and conversations"] = "Tus publicaciones y conversaciones";
+$a->strings["Profile"] = "Perfil";
 $a->strings["Your profile page"] = "Tu página de perfil";
+$a->strings["Photos"] = "Fotografías";
 $a->strings["Your photos"] = "Tus fotos";
+$a->strings["Videos"] = "Videos";
 $a->strings["Your videos"] = "Tus videos";
+$a->strings["Events"] = "Eventos";
 $a->strings["Your events"] = "Tus eventos";
 $a->strings["Personal notes"] = "Notas personales";
 $a->strings["Your personal notes"] = "Tus notas personales";
 $a->strings["Login"] = "Acceder";
 $a->strings["Sign in"] = "Date de alta";
+$a->strings["Home"] = "Inicio";
 $a->strings["Home Page"] = "Página de inicio";
 $a->strings["Register"] = "Registrarse";
 $a->strings["Create an account"] = "Crea una cuenta";
@@ -616,16 +405,20 @@ $a->strings["Search"] = "Buscar";
 $a->strings["Search site content"] = " Busca contenido en la página";
 $a->strings["Full Text"] = "Texto completo";
 $a->strings["Tags"] = "Tags";
+$a->strings["Contacts"] = "Contactos";
 $a->strings["Community"] = "Comunidad";
 $a->strings["Conversations on this site"] = "Conversaciones en este sitio";
 $a->strings["Conversations on the network"] = "Conversaciones en la red";
+$a->strings["Events and Calendar"] = "Eventos y Calendario";
 $a->strings["Directory"] = "Directorio";
 $a->strings["People directory"] = "Directorio de usuarios";
 $a->strings["Information"] = "Información";
 $a->strings["Information about this friendica instance"] = "Información sobre esta instancia de friendica";
+$a->strings["Network"] = "Red";
 $a->strings["Conversations from your friends"] = "Conversaciones de tus amigos";
 $a->strings["Network Reset"] = "Reseteo de la red";
 $a->strings["Load Network page with no filters"] = "Cargar pagina de redes sin filtros";
+$a->strings["Introductions"] = "Presentaciones";
 $a->strings["Friend Requests"] = "Solicitudes de amistad";
 $a->strings["Notifications"] = "Notificaciones";
 $a->strings["See all notifications"] = "Ver todas las notificaciones";
@@ -642,6 +435,7 @@ $a->strings["Delegations"] = "Delegaciones";
 $a->strings["Delegate Page Management"] = "Delegar la administración de la página";
 $a->strings["Settings"] = "Configuración";
 $a->strings["Account settings"] = "Configuración de tu cuenta";
+$a->strings["Profiles"] = "Perfiles";
 $a->strings["Manage/Edit Profiles"] = "Manejar/editar Perfiles";
 $a->strings["Manage/edit friends and contacts"] = "Administrar/editar amigos y contactos";
 $a->strings["Admin"] = "Admin";
@@ -655,6 +449,195 @@ $a->strings["Welcome "] = "Bienvenido ";
 $a->strings["Please upload a profile photo."] = "Por favor sube una foto para tu perfil.";
 $a->strings["Welcome back "] = "Bienvenido de nuevo ";
 $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."] = "La ficha de seguridad no es correcta. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo.";
+$a->strings["stopped following"] = "dejó de seguir";
+$a->strings["View Profile"] = "Ver perfil";
+$a->strings["View Status"] = "Ver estado";
+$a->strings["View Photos"] = "Ver fotos";
+$a->strings["Network Posts"] = "Publicaciones en la red";
+$a->strings["View Contact"] = "Ver contacto";
+$a->strings["Drop Contact"] = "Eliminar contacto";
+$a->strings["Send PM"] = "Enviar mensaje privado";
+$a->strings["Poke"] = "Toque";
+$a->strings["Organisation"] = "Organización";
+$a->strings["News"] = "Noticias";
+$a->strings["Forum"] = "Foro";
+$a->strings["System"] = "Sistema";
+$a->strings["Personal"] = "Personal";
+$a->strings["%s commented on %s's post"] = "%s comentó la publicación de %s";
+$a->strings["%s created a new post"] = "%s creó una nueva publicación";
+$a->strings["%s liked %s's post"] = "A %s le gusta la publicación de %s";
+$a->strings["%s disliked %s's post"] = "A %s no le gusta la publicación de %s";
+$a->strings["%s is attending %s's event"] = "%s está asistiendo al evento %s's";
+$a->strings["%s is not attending %s's event"] = "%s no está asistiendo al evento %s's";
+$a->strings["%s may attend %s's event"] = "%s podría asistir al evento %s's";
+$a->strings["%s is now friends with %s"] = "%s es ahora es amigo de %s";
+$a->strings["Friend Suggestion"] = "Propuestas de amistad";
+$a->strings["Friend/Connect Request"] = "Solicitud de Amistad/Conexión";
+$a->strings["New Follower"] = "Nuevo seguidor";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Limite diario de publicaciones %d alcanzado. La publicación fue rechazada.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Limite semanal de publicaciones %d alcanzado. La publicación fue rechazada.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Limite mensual de publicaciones %d alcanzado. La publicación fue rechazada.";
+$a->strings["%1\$s attends %2\$s's %3\$s"] = "%1\$s atenderá %2\$s's %3\$s";
+$a->strings["%1\$s doesn't attend %2\$s's %3\$s"] = "%1\$s no atenderá %2\$s's %3\$s";
+$a->strings["%1\$s attends maybe %2\$s's %3\$s"] = "%1\$s atenderá quizás %2\$s's %3\$s";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ahora es amigo de %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s le dio un toque a %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s está actualmente %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado el %3\$s de %2\$s con %4\$s";
+$a->strings["post/item"] = "publicación/tema";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha marcado %3\$s de %2\$s como Favorito";
+$a->strings["Likes"] = "Me gusta";
+$a->strings["Dislikes"] = "No me gusta";
+$a->strings["Attending"] = array(
+       0 => "Atendiendo",
+       1 => "Atendiendo",
+);
+$a->strings["Not attending"] = "No atendiendo";
+$a->strings["Might attend"] = "Puede que atienda";
+$a->strings["Select"] = "Seleccionar";
+$a->strings["Delete"] = "Eliminar";
+$a->strings["View %s's profile @ %s"] = "Ver perfil de %s @ %s";
+$a->strings["Categories:"] = "Categorías:";
+$a->strings["Filed under:"] = "Archivado en:";
+$a->strings["%s from %s"] = "%s de %s";
+$a->strings["View in context"] = "Verlo en contexto";
+$a->strings["Please wait"] = "Por favor, espera";
+$a->strings["remove"] = "eliminar";
+$a->strings["Delete Selected Items"] = "Eliminar el elemento seleccionado";
+$a->strings["Follow Thread"] = "Seguir publicacion";
+$a->strings["%s likes this."] = "A %s le gusta esto.";
+$a->strings["%s doesn't like this."] = "A %s no le gusta esto.";
+$a->strings["%s attends."] = "%s atiende.";
+$a->strings["%s doesn't attend."] = "%s no atenderá.";
+$a->strings["%s attends maybe."] = "%s quizás atenderá";
+$a->strings["and"] = "y";
+$a->strings[", and %d other people"] = " y a otras %d personas";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personas</span> les gusta esto";
+$a->strings["%s like this."] = "A %s le gusta esto.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personas</span> no les gusta esto";
+$a->strings["%s don't like this."] = "A %s no le gusta esto.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend"] = "<span  %1\$s>%2\$d personas</span> atienden";
+$a->strings["%s attend."] = "%s atiende.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't attend"] = "<span  %1\$s>%2\$d personas</span>no atienden";
+$a->strings["%s don't attend."] = "%s no atiende.";
+$a->strings["<span  %1\$s>%2\$d people</span> attend maybe"] = "<span  %1\$s>%2\$d people</span> quizá asistan";
+$a->strings["%s anttend maybe."] = "%s atiende quizás.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visible para <strong>cualquiera</strong>";
+$a->strings["Please enter a link URL:"] = "Introduce la dirección del enlace:";
+$a->strings["Please enter a video link/URL:"] = "Por favor, introduce la URL/enlace del vídeo:";
+$a->strings["Please enter an audio link/URL:"] = "Por favor, introduce la URL/enlace del audio:";
+$a->strings["Tag term:"] = "Etiquetar:";
+$a->strings["Save to Folder:"] = "Guardar en directorio:";
+$a->strings["Where are you right now?"] = "¿Dónde estás ahora?";
+$a->strings["Delete item(s)?"] = "¿Borrar objeto(s)?";
+$a->strings["Share"] = "Compartir";
+$a->strings["Upload photo"] = "Subir foto";
+$a->strings["upload photo"] = "subir imagen";
+$a->strings["Attach file"] = "Adjuntar archivo";
+$a->strings["attach file"] = "adjuntar archivo";
+$a->strings["Insert web link"] = "Insertar enlace";
+$a->strings["web link"] = "enlace web";
+$a->strings["Insert video link"] = "Insertar enlace del vídeo";
+$a->strings["video link"] = "enlace de video";
+$a->strings["Insert audio link"] = "Insertar vínculo del audio";
+$a->strings["audio link"] = "enlace de audio";
+$a->strings["Set your location"] = "Configurar tu localización";
+$a->strings["set location"] = "establecer tu ubicación";
+$a->strings["Clear browser location"] = "Borrar la localización del navegador";
+$a->strings["clear location"] = "limpiar la localización";
+$a->strings["Set title"] = "Establecer el título";
+$a->strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)";
+$a->strings["Permission settings"] = "Configuración de permisos";
+$a->strings["permissions"] = "permisos";
+$a->strings["Public post"] = "Publicación pública";
+$a->strings["Preview"] = "Vista previa";
+$a->strings["Cancel"] = "Cancelar";
+$a->strings["Post to Groups"] = "Publicar hacia grupos";
+$a->strings["Post to Contacts"] = "Publicar hacia contactos";
+$a->strings["Private post"] = "Publicación privada";
+$a->strings["Message"] = "Mensaje";
+$a->strings["Browser"] = "Navegador";
+$a->strings["View all"] = "Ver todos los contactos";
+$a->strings["Like"] = array(
+       0 => "Me gusta",
+       1 => "Me gusta",
+);
+$a->strings["Dislike"] = array(
+       0 => "No me gusta",
+       1 => "No me gusta",
+);
+$a->strings["Not Attending"] = array(
+       0 => "No atendiendo",
+       1 => "No atendiendo",
+);
+$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\tLos desarolladores de friendica publicaron una actualización  %s recientemente\n\t\t\tpero cuando intento de instalarla,algo salio terriblemente mal.\n\t\t\tEsto necesita ser arreglado pronto y no puedo hacerlo solo. Por favor contacta\n\t\t\tlos desarolladores de friendica si no me podes ayudar por ti solo. Mi base de datos puede estar invalido.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "El mensaje de error es\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Se han encontrados errores creando las tablas de la base de datos.";
+$a->strings["Errors encountered performing database changes."] = "Errores encontrados al ejecutar cambios en la base de datos.";
+$a->strings["(no subject)"] = "(sin asunto)";
+$a->strings["%s\\'s birthday"] = "%s\\'s cumpleaños";
+$a->strings["Sharing notification from Diaspora network"] = "Compartir notificaciones con la red Diaspora*";
+$a->strings["Attachments:"] = "Archivos adjuntos:";
+$a->strings["Requested account is not available."] = "La cuenta solicitada no está disponible.";
+$a->strings["Requested profile is not available."] = "El perfil solicitado no está disponible.";
+$a->strings["Edit profile"] = "Editar perfil";
+$a->strings["Atom feed"] = "Atom feed";
+$a->strings["Manage/edit profiles"] = "Administrar/editar perfiles";
+$a->strings["Change profile photo"] = "Cambiar foto del perfil";
+$a->strings["Create New Profile"] = "Crear nuevo perfil";
+$a->strings["Profile Image"] = "Imagen del Perfil";
+$a->strings["visible to everybody"] = "Visible para todos";
+$a->strings["Edit visibility"] = "Editar visibilidad";
+$a->strings["Gender:"] = "Género:";
+$a->strings["Status:"] = "Estado:";
+$a->strings["Homepage:"] = "Página de inicio:";
+$a->strings["About:"] = "Acerca de:";
+$a->strings["XMPP:"] = "XMPP:";
+$a->strings["Network:"] = "Red:";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[hoy]";
+$a->strings["Birthday Reminders"] = "Recordatorios de cumpleaños";
+$a->strings["Birthdays this week:"] = "Cumpleaños esta semana:";
+$a->strings["[No description]"] = "[Sin descripción]";
+$a->strings["Event Reminders"] = "Recordatorios de eventos";
+$a->strings["Events this week:"] = "Eventos de esta semana:";
+$a->strings["Full Name:"] = "Nombre completo:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Age:"] = "Edad:";
+$a->strings["for %1\$d %2\$s"] = "por %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Preferencia sexual:";
+$a->strings["Hometown:"] = "Ciudad de origen:";
+$a->strings["Tags:"] = "Etiquetas:";
+$a->strings["Political Views:"] = "Ideas políticas:";
+$a->strings["Religion:"] = "Religión:";
+$a->strings["Hobbies/Interests:"] = "Aficiones/Intereses:";
+$a->strings["Likes:"] = "Me gusta:";
+$a->strings["Dislikes:"] = "No me gusta:";
+$a->strings["Contact information and Social Networks:"] = "Información de contacto y Redes sociales:";
+$a->strings["Musical interests:"] = "Intereses musicales:";
+$a->strings["Books, literature:"] = "Libros, literatura:";
+$a->strings["Television:"] = "Televisión:";
+$a->strings["Film/dance/culture/entertainment:"] = "Películas/baile/cultura/entretenimiento:";
+$a->strings["Love/Romance:"] = "Amor/Romance:";
+$a->strings["Work/employment:"] = "Trabajo/ocupación:";
+$a->strings["School/education:"] = "Escuela/estudios:";
+$a->strings["Forums:"] = "Foros:";
+$a->strings["Basic"] = "Basic";
+$a->strings["Advanced"] = "Avanzado";
+$a->strings["Status Messages and Posts"] = "Mensajes de Estado y Publicaciones";
+$a->strings["Profile Details"] = "Detalles del Perfil";
+$a->strings["Photo Albums"] = "Álbum de Fotos";
+$a->strings["Personal Notes"] = "Notas personales";
+$a->strings["Only You Can See This"] = "Únicamente tú puedes ver esto";
+$a->strings["[Name Withheld]"] = "[Nombre oculto]";
+$a->strings["Item not found."] = "Elemento no encontrado.";
+$a->strings["Do you really want to delete this item?"] = "¿Realmente quieres borrar este objeto?";
+$a->strings["Yes"] = "Sí";
+$a->strings["Permission denied."] = "Permiso denegado.";
+$a->strings["Archives"] = "Archivos";
+$a->strings["view full size"] = "Ver a tamaño completo";
 $a->strings["newer"] = "más nuevo";
 $a->strings["older"] = "más antiguo";
 $a->strings["prev"] = "ant.";
@@ -714,11 +697,30 @@ $a->strings["comment"] = array(
 );
 $a->strings["post"] = "Publicación";
 $a->strings["Item filed"] = "Elemento archivado";
-$a->strings["stopped following"] = "dejó de seguir";
-$a->strings["Drop Contact"] = "Eliminar contacto";
-$a->strings["Organisation"] = "Organización";
-$a->strings["News"] = "Noticias";
-$a->strings["Forum"] = "Foro";
+$a->strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no ha sido modificada.";
+$a->strings["An invitation is required."] = "Se necesita invitación.";
+$a->strings["Invitation could not be verified."] = "No se puede verificar la invitación.";
+$a->strings["Invalid OpenID url"] = "Dirección OpenID no válida";
+$a->strings["Please enter the required information."] = "Por favor, introduce la información necesaria.";
+$a->strings["Please use a shorter name."] = "Por favor, usa un nombre más corto.";
+$a->strings["Name too short."] = "El nombre es demasiado corto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "No parece que ese sea tu nombre completo.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Tu dominio de correo no se encuentra entre los permitidos en este sitio.";
+$a->strings["Not a valid email address."] = "No es una dirección de correo electrónico válida.";
+$a->strings["Cannot use that email."] = "No se puede utilizar este correo electrónico.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\" and \"_\"."] = "El apodo solo puede contener  \"a-z\", \"0-9\" y \"_\".";
+$a->strings["Nickname is already registered. Please choose another."] = "Apodo ya registrado. Por favor, elije otro.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "El apodo ya ha sido registrado alguna vez y no puede volver a usarse. Por favor, utiliza otro.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERROR GRAVE: La generación de claves de seguridad ha fallado.";
+$a->strings["An error occurred during registration. Please try again."] = "Se produjo un error durante el registro. Por favor, inténtalo de nuevo.";
+$a->strings["default"] = "predeterminado";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Error al crear tu perfil predeterminado. Por favor, inténtalo de nuevo.";
+$a->strings["Profile Photos"] = "Foto del perfil";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\t"] = "\n\t\tEstimado %1\$s,\n\t\t\tGracias por registrarse en %2\$s. Su cuenta está pendiente de aprobación por el administrador.\n\t";
+$a->strings["Registration at %s"] = "Registro en %s";
+$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\tEstimado %1\$s,\n\t\t\tGracias por registrar en %2\$s. Su cuenta ha sido creada.\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\t\tLos detalles de acceso son las siguientes:\n\n\t\t\tDirección del sitio:\t%3\$s\n\t\t\tNombre de la cuenta:\t\t%1\$s\n\t\t\tContraseña:\t\t%5\$s\n\n\t\t\tPodrá cambiar la contraseña desde la pagina de configuración de su cuenta después de acceder a la misma\n\t\t\ten.\n\n\t\t\tPor favor tome unos minutos para revisar las opciones demás de la cuenta en dicha pagina de configuración.\n\n\t\t\tTambién podrá agregar informaciones adicionales a su pagina de perfil predeterminado. \n\t\t\t(en la pagina \"Perfiles\") para que otras personas pueden encontrarlo fácilmente.\n\n\t\t\tRecomendamos que elija un nombre apropiado, agregando una imagen de perfil,\n\t\t\tagregando algunas palabras claves de la cuenta (muy útil para hacer nuevos amigos) - y \n\t\t\tquizás el país en donde vive; si no quiere ser mas especifico\n\t\t\tque eso.\n\n\t\t\tRespetamos absolutamente su derecho a la privacidad y ninguno de estos detalles es necesario.\n\t\t\tSi eres nuevo aquí y no conoces a nadie, estos detalles pueden ayudarte\n\t\t\tpara hacer nuevas e interesantes amistades.\n\n\t\t\tGracias y bienvenido a  %2\$s.";
+$a->strings["Registration details for %s"] = "Detalles de registro para %s";
 $a->strings["Post successful."] = "¡Publicado!";
 $a->strings["Access denied."] = "Acceso denegado.";
 $a->strings["Welcome to %s"] = "Bienvenido a %s";
@@ -763,10 +765,6 @@ $a->strings["No profile"] = "Nigún perfil";
 $a->strings["Help:"] = "Ayuda:";
 $a->strings["Not Found"] = "No se ha encontrado";
 $a->strings["Page not found."] = "Página no encontrada.";
-$a->strings["Invalid request."] = "Consulta invalida";
-$a->strings["Image exceeds size limit of %s"] = "La imagen excede el limite de %s";
-$a->strings["Unable to process image."] = "Imposible procesar la imagen.";
-$a->strings["Image upload failed."] = "Error al subir la imagen.";
 $a->strings["Remote privacy information not available."] = "Privacidad de la información remota no disponible.";
 $a->strings["Visible to:"] = "Visible para:";
 $a->strings["OpenID protocol error. No ID returned."] = "Error de protocolo OpenID. ID no devuelta.";
@@ -820,10 +818,6 @@ $a->strings["Tag removed"] = "Etiqueta eliminada";
 $a->strings["Remove Item Tag"] = "Eliminar etiqueta";
 $a->strings["Select a tag to remove: "] = "Selecciona una etiqueta para eliminar: ";
 $a->strings["Remove"] = "Eliminar";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite.";
-$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?";
-$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s";
-$a->strings["File upload failed."] = "Ha fallado la subida del archivo.";
 $a->strings["Resubscribing to OStatus contacts"] = "Resubscribir a contactos de OStatus";
 $a->strings["Error"] = "error";
 $a->strings["Done"] = "hecho!";
@@ -1098,6 +1092,8 @@ $a->strings["Image uploaded but image cropping failed."] = "Imagen recibida, per
 $a->strings["Image size reduction [%s] failed."] = "Ha fallado la reducción de las dimensiones de la imagen [%s].";
 $a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente.";
 $a->strings["Unable to process image"] = "Imposible procesar la imagen";
+$a->strings["Image exceeds size limit of %s"] = "La imagen excede el limite de %s";
+$a->strings["Unable to process image."] = "Imposible procesar la imagen.";
 $a->strings["Upload File:"] = "Subir archivo:";
 $a->strings["Select a profile:"] = "Elige un perfil:";
 $a->strings["Upload"] = "Subir";
@@ -1108,6 +1104,7 @@ $a->strings["Crop Image"] = "Recortar imagen";
 $a->strings["Please adjust the image cropping for optimum viewing."] = "Por favor, ajusta el recorte de la imagen para optimizarla.";
 $a->strings["Done Editing"] = "Editado";
 $a->strings["Image uploaded successfully."] = "Imagen subida con éxito.";
+$a->strings["Image upload failed."] = "Error al subir la imagen.";
 $a->strings["Account approved."] = "Cuenta aprobada.";
 $a->strings["Registration revoked for %s"] = "Registro anulado para %s";
 $a->strings["Please login."] = "Por favor accede.";
@@ -1211,6 +1208,207 @@ $a->strings["Work/employment"] = "Trabajo/ocupación";
 $a->strings["School/education"] = "Escuela/estudios";
 $a->strings["Contact information and Social Networks"] = "Informacioń de contacto y Redes sociales";
 $a->strings["Edit/Manage Profiles"] = "Editar/Administrar perfiles";
+$a->strings["No friends to display."] = "No hay amigos para mostrar.";
+$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido.";
+$a->strings["View"] = "Vista";
+$a->strings["Previous"] = "Previo";
+$a->strings["Next"] = "Siguiente";
+$a->strings["list"] = "lista";
+$a->strings["User not found"] = "Usuario no encontrado";
+$a->strings["This calendar format is not supported"] = "Este formato de calendario no se soporta";
+$a->strings["No exportable data found"] = "No se ha encontrado información exportable";
+$a->strings["calendar"] = "calendario";
+$a->strings["No contacts in common."] = "Sin contactos en común.";
+$a->strings["Common Friends"] = "Amigos comunes";
+$a->strings["Not available."] = "No disponible";
+$a->strings["%d contact edited."] = array(
+       0 => "%d contacto editado.",
+       1 => "%d contacts edited.",
+);
+$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto.";
+$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado.";
+$a->strings["Contact updated."] = "Contacto actualizado.";
+$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado";
+$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado";
+$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado";
+$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado";
+$a->strings["Contact has been archived"] = "El contacto ha sido archivado";
+$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado";
+$a->strings["Drop contact"] = "Eliminar contacto";
+$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?";
+$a->strings["Contact has been removed."] = "El contacto ha sido eliminado";
+$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s";
+$a->strings["You are sharing with %s"] = "Estás compartiendo con %s";
+$a->strings["%s is sharing with you"] = "%s está compartiendo contigo";
+$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto.";
+$a->strings["Never"] = "Nunca";
+$a->strings["(Update was successful)"] = "(La actualización se ha completado)";
+$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)";
+$a->strings["Suggest friends"] = "Sugerir amigos";
+$a->strings["Network type: %s"] = "Tipo de red: %s";
+$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!";
+$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds";
+$a->strings["Disabled"] = "Deshabilitado";
+$a->strings["Fetch information"] = "Recaudar informacion";
+$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves";
+$a->strings["Contact"] = "Contacto";
+$a->strings["Profile Visibility"] = "Visibilidad del Perfil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura.";
+$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas";
+$a->strings["Edit contact notes"] = "Editar notas del contacto";
+$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto";
+$a->strings["Ignore contact"] = "Ignorar contacto";
+$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección";
+$a->strings["View conversations"] = "Ver conversaciones";
+$a->strings["Last update:"] = "Última actualización:";
+$a->strings["Update public posts"] = "Actualizar publicaciones públicas";
+$a->strings["Update now"] = "Actualizar ahora";
+$a->strings["Unblock"] = "Desbloquear";
+$a->strings["Block"] = "Bloquear";
+$a->strings["Unignore"] = "Quitar de Ignorados";
+$a->strings["Currently blocked"] = "Bloqueados";
+$a->strings["Currently ignored"] = "Ignorados";
+$a->strings["Currently archived"] = "Archivados";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles.";
+$a->strings["Notification for new posts"] = "Notificacion de nuevos temas.";
+$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto.";
+$a->strings["Blacklisted keywords"] = "Lista negra de palabras";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado";
+$a->strings["Actions"] = "Acciones";
+$a->strings["Contact Settings"] = "Ajustes del contacto";
+$a->strings["Suggestions"] = "Sugerencias";
+$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas";
+$a->strings["Show all contacts"] = "Mostrar todos los contactos";
+$a->strings["Unblocked"] = "Desbloqueados";
+$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear";
+$a->strings["Blocked"] = "Bloqueados";
+$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados";
+$a->strings["Ignored"] = "Ignorados";
+$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados";
+$a->strings["Archived"] = "Archivados";
+$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados";
+$a->strings["Hidden"] = "Ocultos";
+$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos";
+$a->strings["Search your contacts"] = "Buscar en tus contactos";
+$a->strings["Update"] = "Actualizar";
+$a->strings["Archive"] = "Archivo";
+$a->strings["Unarchive"] = "Sin archivar";
+$a->strings["Batch Actions"] = "Accones en lote";
+$a->strings["View all contacts"] = "Ver todos los contactos";
+$a->strings["View all common friends"] = "Ver todos los conocidos en común ";
+$a->strings["Advanced Contact Settings"] = "Configuración avanzada";
+$a->strings["Mutual Friendship"] = "Amistad recíproca";
+$a->strings["is a fan of yours"] = "es tu fan";
+$a->strings["you are a fan of"] = "eres fan de";
+$a->strings["Toggle Blocked status"] = "Cambiar bloqueados";
+$a->strings["Toggle Ignored status"] = "Cambiar ignorados";
+$a->strings["Toggle Archive status"] = "Cambiar archivados";
+$a->strings["Delete contact"] = "Eliminar contacto";
+$a->strings["Global Directory"] = "Directorio global";
+$a->strings["Find on this site"] = "Buscar en este sitio";
+$a->strings["Results for:"] = "Resultados para:";
+$a->strings["Site Directory"] = "Directorio del sitio";
+$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas).";
+$a->strings["People Search - %s"] = "Buscar perfiles - %s";
+$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s";
+$a->strings["No matches"] = "Sin conincidencias";
+$a->strings["Item has been removed."] = "El elemento ha sido eliminado.";
+$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de su comienzo.";
+$a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas.";
+$a->strings["Create New Event"] = "Crea un evento nuevo";
+$a->strings["Event details"] = "Detalles del evento";
+$a->strings["Starting date and Title are required."] = "Se requiere fecha de comienzo y titulo";
+$a->strings["Event Starts:"] = "Inicio del evento:";
+$a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante.";
+$a->strings["Event Finishes:"] = "Finalización del evento:";
+$a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria";
+$a->strings["Description:"] = "Descripción:";
+$a->strings["Title:"] = "Título:";
+$a->strings["Share this event"] = "Comparte este evento";
+$a->strings["Friendica Communications Server - Setup"] = "Servidor de comunicación Friendica - Configuración";
+$a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos.";
+$a->strings["Could not create table."] = "No se puede crear la tabla.";
+$a->strings["Your Friendica site database has been installed."] = "La base de datos de su sitio web de Friendica ha sido instalada.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, consulta el archivo \"INSTALL.txt\".";
+$a->strings["Database already in use."] = "Base de datos ya se encuentra en uso";
+$a->strings["System check"] = "Verificación del sistema";
+$a->strings["Check again"] = "Compruebalo de nuevo";
+$a->strings["Database connection"] = "Conexión con la base de datos";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar.";
+$a->strings["Database Server Name"] = "Nombre del servidor de la base de datos";
+$a->strings["Database Login Name"] = "Usuario de la base de datos";
+$a->strings["Database Login Password"] = "Contraseña de la base de datos";
+$a->strings["Database Name"] = "Nombre de la base de datos";
+$a->strings["Site administrator email address"] = "Dirección de correo del administrador de la web";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web.";
+$a->strings["Please select a default timezone for your website"] = "Por favor, selecciona la zona horaria predeterminada para tu web";
+$a->strings["Site settings"] = "Configuración de la página web";
+$a->strings["System Language:"] = "Sistema de idioma:";
+$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails.";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Si no tienes una versión de command line de php installado en el servidor, no sera posible de efectuar polling como trabajo de fondo a traves de cron. Vea <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
+$a->strings["PHP executable path"] = "Dirección al ejecutable PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación.";
+$a->strings["Command line PHP"] = "Línea de comandos PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)";
+$a->strings["Found PHP version: "] = "Versión PHP encontrada:";
+$a->strings["PHP cli binary"] = "PHP cli binario";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado.";
+$a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes.";
+$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"] = "Error:  La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generar claves de encriptación";
+$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
+$a->strings["GD graphics PHP module"] = "Módulo PHP gráficos GD";
+$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
+$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
+$a->strings["mb_string PHP module"] = "Módulo PHP mb_string";
+$a->strings["mcrypt PHP module"] = "modulo mycrypt PHP";
+$a->strings["XML PHP module"] = "Módulo XML PHP";
+$a->strings["iconv module"] = "Módulo iconv";
+$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite de Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El módulo de PHP libcurl es necesario, pero no está instalado.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo de PHP openssl es necesario, pero  no está instalado.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El módulo de PHP mysqli es necesario, pero no está instalado.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo de PHP mb_string es necesario, pero no está instalado.";
+$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: modulo mycrypt PHP requerido pero no instalado.";
+$a->strings["Error: iconv PHP module required but not installed."] = "Error: módulo iconv PHP requerido pero no instalado.";
+$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Si está utilizando php_cli, por favor asegúrese de que el módulo mcrypt está habilitado en este archivo de configuración";
+$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Función mycrypt_create_iv() no esta definido. Esto es preciso para habilitar RINO2 encryption layer.";
+$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() función";
+$a->strings["Error, XML PHP module required but not installed."] = "Error, módulo XML PHP requerido pero no instalado.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo.";
+$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."] = "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas.";
+$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."] = "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php tiene permiso de escritura";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene.";
+$a->strings["view/smarty3 is writable"] = "Se puede escribir en /view/smarty3";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración.";
+$a->strings["Url rewrite is working"] = "Reescribiendo la dirección...";
+$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed";
+$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta GIF";
+$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."] = "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web.";
+$a->strings["<h1>What next</h1>"] = "<h1>¿Ahora qué?</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo";
+$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado.";
+$a->strings["is interested in:"] = "estás interesado en:";
+$a->strings["Profile Match"] = "Coincidencias de Perfil";
+$a->strings["Tips for New Members"] = "Consejos para nuevos miembros";
+$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas.";
+$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
+$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]";
 $a->strings["Theme settings updated."] = "Configuración de la apariencia actualizada.";
 $a->strings["Site"] = "Sitio";
 $a->strings["Users"] = "Usuarios";
@@ -1227,6 +1425,7 @@ $a->strings["check webfinger"] = "Verificar webfinger";
 $a->strings["Plugin Features"] = "Características del módulo";
 $a->strings["diagnostics"] = "diagnosticos";
 $a->strings["User registrations waiting for confirmation"] = "Registro de usuarios esperando la confirmación";
+$a->strings["unknown"] = "desconocido";
 $a->strings["This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."] = "Esta pagina ofrece algunos datos sobre la red conocida a la que tu nodo friendica esta conectado. Estos nummeros no son completos respecto a las redes federadas, si no refleja los nodos esta instancia conoce. ";
 $a->strings["The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here."] = "El modulo <em>directorio de contactos encontrados</em> no esta habilitado, habilitado aumentara la cantidad de datos detallados aquí.";
 $a->strings["Administration"] = "Administración";
@@ -1237,6 +1436,8 @@ $a->strings["Recipient Profile"] = "Perfil del recipiente";
 $a->strings["Created"] = "Creado";
 $a->strings["Last Tried"] = "Ultimo intento";
 $a->strings["This page lists the content of the queue for outgoing postings. These are postings the initial delivery failed for. They will be resend later and eventually deleted if the delivery fails permanently."] = "Esta pagina muestra la cola de mensajes salientes. Estos son publicaciones cuyo envío inicial fallo. Serán reenviados mas tarde y eventualmente eliminados si la entrega falla permanentemente. ";
+$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the <tt>convert_innodb.sql</tt> in the <tt>/util</tt> directory of your Friendica installation.<br />"] = "Su DB aún funciona con las tablas MyISAM. Debería cambiar el tipo de motror a InnoDB. ¡Como Friendica sólo usará las características de InnoDB en el futuro, debería cambiar esto! Vea <a href=\"%s\">aquí</a> para una guía que puede ayudar a convertir las tablas de motor. También puede usar <tt>convert_innodb.sql</tt> en el directorio <tt>/util</tt> de su instalación de Friendica.<br />";
+$a->strings["You are using a MySQL version which does not support all features that Friendica uses. You should consider switching to MariaDB."] = "Está usando una versión de MySQL que no soporta todas las características de Friendica. Debería considerar cambiar a MariaDB.";
 $a->strings["Normal Account"] = "Cuenta normal";
 $a->strings["Soapbox Account"] = "Cuenta tribuna";
 $a->strings["Community/Celebrity Account"] = "Cuenta de Comunidad/Celebridad";
@@ -1256,9 +1457,7 @@ $a->strings["No special theme for mobile devices"] = "No hay tema especial para
 $a->strings["No community page"] = "No hay pagina de comunidad";
 $a->strings["Public postings from users of this site"] = "Temas públicos de perfiles de este sitio.";
 $a->strings["Global community page"] = "Pagina global de comunidad";
-$a->strings["Never"] = "Nunca";
 $a->strings["At post arrival"] = "A la llegada de una publicación";
-$a->strings["Disabled"] = "Deshabilitado";
 $a->strings["Users, Global Contacts"] = "Perfiles, contactos globales";
 $a->strings["Users, Global Contacts/fallback"] = "Perfiles, contactos globales/fallback";
 $a->strings["One month"] = "Un mes";
@@ -1469,9 +1668,8 @@ $a->strings["User registrations waiting for confirm"] = "Registro de usuarios es
 $a->strings["User waiting for permanent deletion"] = "Usuario esperando anulación permanente.";
 $a->strings["Request date"] = "Solicitud de fecha";
 $a->strings["No registrations."] = "Sin registros.";
+$a->strings["Note from the user"] = "Nota para el usuario";
 $a->strings["Deny"] = "Denegado";
-$a->strings["Block"] = "Bloquear";
-$a->strings["Unblock"] = "Desbloquear";
 $a->strings["Site admin"] = "Administrador de la web";
 $a->strings["Account expired"] = "Cuenta caducada";
 $a->strings["New User"] = "Nuevo usuario";
@@ -1511,194 +1709,6 @@ $a->strings["Off"] = "Apagado";
 $a->strings["On"] = "Encendido";
 $a->strings["Lock feature %s"] = "Trancar opción %s ";
 $a->strings["Manage Additional Features"] = "Administrar opciones adicionales";
-$a->strings["No friends to display."] = "No hay amigos para mostrar.";
-$a->strings["Access to this profile has been restricted."] = "El acceso a este perfil ha sido restringido.";
-$a->strings["View"] = "Vista";
-$a->strings["Previous"] = "Previo";
-$a->strings["Next"] = "Siguiente";
-$a->strings["list"] = "lista";
-$a->strings["User not found"] = "Usuario no encontrado";
-$a->strings["This calendar format is not supported"] = "Este formato de calendario no se soporta";
-$a->strings["No exportable data found"] = "No se ha encontrado información exportable";
-$a->strings["calendar"] = "calendario";
-$a->strings["No contacts in common."] = "Sin contactos en común.";
-$a->strings["Common Friends"] = "Amigos comunes";
-$a->strings["Not available."] = "No disponible";
-$a->strings["%d contact edited."] = array(
-       0 => "%d contacto editado.",
-       1 => "%d contacts edited.",
-);
-$a->strings["Could not access contact record."] = "No se pudo acceder a los datos del contacto.";
-$a->strings["Could not locate selected profile."] = "No se pudo encontrar el perfil seleccionado.";
-$a->strings["Contact updated."] = "Contacto actualizado.";
-$a->strings["Contact has been blocked"] = "El contacto ha sido bloqueado";
-$a->strings["Contact has been unblocked"] = "El contacto ha sido desbloqueado";
-$a->strings["Contact has been ignored"] = "El contacto ha sido ignorado";
-$a->strings["Contact has been unignored"] = "El contacto ya no está ignorado";
-$a->strings["Contact has been archived"] = "El contacto ha sido archivado";
-$a->strings["Contact has been unarchived"] = "El contacto ya no está archivado";
-$a->strings["Drop contact"] = "Eliminar contacto";
-$a->strings["Do you really want to delete this contact?"] = "¿Estás seguro de que quieres eliminar este contacto?";
-$a->strings["Contact has been removed."] = "El contacto ha sido eliminado";
-$a->strings["You are mutual friends with %s"] = "Ahora tienes una amistad mutua con %s";
-$a->strings["You are sharing with %s"] = "Estás compartiendo con %s";
-$a->strings["%s is sharing with you"] = "%s está compartiendo contigo";
-$a->strings["Private communications are not available for this contact."] = "Las comunicaciones privadas no está disponibles para este contacto.";
-$a->strings["(Update was successful)"] = "(La actualización se ha completado)";
-$a->strings["(Update was not successful)"] = "(La actualización no se ha completado)";
-$a->strings["Suggest friends"] = "Sugerir amigos";
-$a->strings["Network type: %s"] = "Tipo de red: %s";
-$a->strings["Communications lost with this contact!"] = "¡Se ha perdido la comunicación con este contacto!";
-$a->strings["Fetch further information for feeds"] = "Recaudar informacion complementaria de los feeds";
-$a->strings["Fetch information"] = "Recaudar informacion";
-$a->strings["Fetch information and keywords"] = "Recaudar informacion y palabras claves";
-$a->strings["Contact"] = "Contacto";
-$a->strings["Profile Visibility"] = "Visibilidad del Perfil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, selecciona el perfil que quieras mostrar a %s cuando esté viendo tu perfil de forma segura.";
-$a->strings["Contact Information / Notes"] = "Información del Contacto / Notas";
-$a->strings["Edit contact notes"] = "Editar notas del contacto";
-$a->strings["Block/Unblock contact"] = "Boquear/Desbloquear contacto";
-$a->strings["Ignore contact"] = "Ignorar contacto";
-$a->strings["Repair URL settings"] = "Configuración de reparación de la dirección";
-$a->strings["View conversations"] = "Ver conversaciones";
-$a->strings["Last update:"] = "Última actualización:";
-$a->strings["Update public posts"] = "Actualizar publicaciones públicas";
-$a->strings["Update now"] = "Actualizar ahora";
-$a->strings["Unignore"] = "Quitar de Ignorados";
-$a->strings["Currently blocked"] = "Bloqueados";
-$a->strings["Currently ignored"] = "Ignorados";
-$a->strings["Currently archived"] = "Archivados";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Los comentarios o \"me gusta\" en tus publicaciones públicas todavía <strong>pueden</strong> ser visibles.";
-$a->strings["Notification for new posts"] = "Notificacion de nuevos temas.";
-$a->strings["Send a notification of every new post of this contact"] = "Enviar una notificacion por nuevos temas de este contacto.";
-$a->strings["Blacklisted keywords"] = "Lista negra de palabras";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Lista separada por comas de palabras claves que no deberian ser convertido en #hashtags cuando \"Recaudar informacion y palabras claves\" es seleccionado";
-$a->strings["Actions"] = "Acciones";
-$a->strings["Contact Settings"] = "Ajustes del contacto";
-$a->strings["Suggestions"] = "Sugerencias";
-$a->strings["Suggest potential friends"] = "Amistades potenciales sugeridas";
-$a->strings["Show all contacts"] = "Mostrar todos los contactos";
-$a->strings["Unblocked"] = "Desbloqueados";
-$a->strings["Only show unblocked contacts"] = "Mostrar solo contactos sin bloquear";
-$a->strings["Blocked"] = "Bloqueados";
-$a->strings["Only show blocked contacts"] = "Mostrar solo contactos bloqueados";
-$a->strings["Ignored"] = "Ignorados";
-$a->strings["Only show ignored contacts"] = "Mostrar solo contactos ignorados";
-$a->strings["Archived"] = "Archivados";
-$a->strings["Only show archived contacts"] = "Mostrar solo contactos archivados";
-$a->strings["Hidden"] = "Ocultos";
-$a->strings["Only show hidden contacts"] = "Mostrar solo contactos ocultos";
-$a->strings["Search your contacts"] = "Buscar en tus contactos";
-$a->strings["Update"] = "Actualizar";
-$a->strings["Archive"] = "Archivo";
-$a->strings["Unarchive"] = "Sin archivar";
-$a->strings["Batch Actions"] = "Accones en lote";
-$a->strings["View all contacts"] = "Ver todos los contactos";
-$a->strings["View all common friends"] = "Ver todos los conocidos en común ";
-$a->strings["Advanced Contact Settings"] = "Configuración avanzada";
-$a->strings["Mutual Friendship"] = "Amistad recíproca";
-$a->strings["is a fan of yours"] = "es tu fan";
-$a->strings["you are a fan of"] = "eres fan de";
-$a->strings["Toggle Blocked status"] = "Cambiar bloqueados";
-$a->strings["Toggle Ignored status"] = "Cambiar ignorados";
-$a->strings["Toggle Archive status"] = "Cambiar archivados";
-$a->strings["Delete contact"] = "Eliminar contacto";
-$a->strings["Global Directory"] = "Directorio global";
-$a->strings["Find on this site"] = "Buscar en este sitio";
-$a->strings["Results for:"] = "Resultados para:";
-$a->strings["Site Directory"] = "Directorio del sitio";
-$a->strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas pueden que estén ocultas).";
-$a->strings["People Search - %s"] = "Buscar perfiles - %s";
-$a->strings["Forum Search - %s"] = "Búsqueda de foro - %s";
-$a->strings["No matches"] = "Sin conincidencias";
-$a->strings["Item has been removed."] = "El elemento ha sido eliminado.";
-$a->strings["Event can not end before it has started."] = "Un evento no puede terminar antes de su comienzo.";
-$a->strings["Event title and start time are required."] = "Título del evento y hora de inicio requeridas.";
-$a->strings["Create New Event"] = "Crea un evento nuevo";
-$a->strings["Event details"] = "Detalles del evento";
-$a->strings["Starting date and Title are required."] = "Se requiere fecha de comienzo y titulo";
-$a->strings["Event Starts:"] = "Inicio del evento:";
-$a->strings["Finish date/time is not known or not relevant"] = "La fecha/hora de finalización no es conocida o es irrelevante.";
-$a->strings["Event Finishes:"] = "Finalización del evento:";
-$a->strings["Adjust for viewer timezone"] = "Ajuste de zona horaria";
-$a->strings["Description:"] = "Descripción:";
-$a->strings["Title:"] = "Título:";
-$a->strings["Share this event"] = "Comparte este evento";
-$a->strings["Friendica Communications Server - Setup"] = "Servidor de comunicación Friendica - Configuración";
-$a->strings["Could not connect to database."] = "No es posible la conexión con la base de datos.";
-$a->strings["Could not create table."] = "No se puede crear la tabla.";
-$a->strings["Your Friendica site database has been installed."] = "La base de datos de su sitio web de Friendica ha sido instalada.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Puede que tengas que importar el archivo \"Database.sql\" manualmente usando phpmyadmin o mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Por favor, consulta el archivo \"INSTALL.txt\".";
-$a->strings["Database already in use."] = "Base de datos ya se encuentra en uso";
-$a->strings["System check"] = "Verificación del sistema";
-$a->strings["Check again"] = "Compruebalo de nuevo";
-$a->strings["Database connection"] = "Conexión con la base de datos";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Con el fin de poder instalar Friendica, necesitamos saber cómo conectar con tu base de datos.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacta con tu proveedor de servicios o con el administrador de la página si tienes alguna pregunta sobre estas configuraciones.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifiques a continuación debería existir ya. Si no es el caso, debes crearla antes de continuar.";
-$a->strings["Database Server Name"] = "Nombre del servidor de la base de datos";
-$a->strings["Database Login Name"] = "Usuario de la base de datos";
-$a->strings["Database Login Password"] = "Contraseña de la base de datos";
-$a->strings["Database Name"] = "Nombre de la base de datos";
-$a->strings["Site administrator email address"] = "Dirección de correo del administrador de la web";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "La dirección de correo de tu cuenta debe coincidir con esta para poder usar el panel de administración de la web.";
-$a->strings["Please select a default timezone for your website"] = "Por favor, selecciona la zona horaria predeterminada para tu web";
-$a->strings["Site settings"] = "Configuración de la página web";
-$a->strings["System Language:"] = "Sistema de idioma:";
-$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Seleccione el idioma por defecto para su interfaz de instalación de Friendica y para enviar emails.";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "No se pudo encontrar una versión de la línea de comandos de PHP en la ruta del servidor web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>"] = "Si no tienes una versión de command line de php installado en el servidor, no sera posible de efectuar polling como trabajo de fondo a traves de cron. Vea <a href='https://github.com/friendica/friendica/blob/master/doc/Install.md#set-up-the-poller'>'Setup the poller'</a>";
-$a->strings["PHP executable path"] = "Dirección al ejecutable PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introduce la ruta completa al ejecutable php. Puedes dejarlo en blanco y seguir con la instalación.";
-$a->strings["Command line PHP"] = "Línea de comandos PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "El ejecutable PHP no es e lphp cli binary (podria ser versión cgi-fgci)";
-$a->strings["Found PHP version: "] = "Versión PHP encontrada:";
-$a->strings["PHP cli binary"] = "PHP cli binario";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versión en línea de comandos de PHP en tu sistema no tiene \"register_argc_argv\" habilitado.";
-$a->strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la entrega de mensajes.";
-$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"] = "Error:  La función \"openssl_pkey_new\" en este sistema no es capaz de generar claves de cifrado";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si se ejecuta en Windows, por favor consulta la sección \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generar claves de encriptación";
-$a->strings["libCurl PHP module"] = "Módulo PHP libCurl";
-$a->strings["GD graphics PHP module"] = "Módulo PHP gráficos GD";
-$a->strings["OpenSSL PHP module"] = "Módulo PHP OpenSSL";
-$a->strings["mysqli PHP module"] = "Módulo PHP mysqli";
-$a->strings["mb_string PHP module"] = "Módulo PHP mb_string";
-$a->strings["mcrypt PHP module"] = "modulo mycrypt PHP";
-$a->strings["XML PHP module"] = "Módulo XML PHP";
-$a->strings["iconv module"] = "Módulo iconv";
-$a->strings["Apache mod_rewrite module"] = "Módulo mod_rewrite de Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: El módulo de Apache mod-rewrite es necesario pero no está instalado.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Error: El módulo de PHP libcurl es necesario, pero no está instalado.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: El módulo de de PHP gráficos GD con soporte JPEG es necesario, pero no está instalado.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo de PHP openssl es necesario, pero  no está instalado.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El módulo de PHP mysqli es necesario, pero no está instalado.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo de PHP mb_string es necesario, pero no está instalado.";
-$a->strings["Error: mcrypt PHP module required but not installed."] = "Error: modulo mycrypt PHP requerido pero no instalado.";
-$a->strings["Error: iconv PHP module required but not installed."] = "Error: módulo iconv PHP requerido pero no instalado.";
-$a->strings["If you are using php_cli, please make sure that mcrypt module is enabled in its config file"] = "Si está utilizando php_cli, por favor asegúrese de que el módulo mcrypt está habilitado en este archivo de configuración";
-$a->strings["Function mcrypt_create_iv() is not defined. This is needed to enable RINO2 encryption layer."] = "Función mycrypt_create_iv() no esta definido. Esto es preciso para habilitar RINO2 encryption layer.";
-$a->strings["mcrypt_create_iv() function"] = "mcrypt_create_iv() función";
-$a->strings["Error, XML PHP module required but not installed."] = "Error, módulo XML PHP requerido pero no instalado.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo.";
-$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."] = "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas.";
-$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."] = "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php tiene permiso de escritura";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa el motor de templates Smarty3 para renderizar su visualisacion web. Smarty3 compila templates hacia PHP para acelerar la velocidad del renderizar.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Para poder guardar estos templates compilados, el servidor web necesita acceso de escritura en el directorio /view/smarty3/ en el árbol de raíz de la instalación friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Por favor asegure que el usuario que utiliza el servidor web (ejemplo: www-data) tiene permisos de escritura en esta carpeta.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Nota: como medida de seguridad deberia dar acceso de escritura solo a /view/smarty3 / → no al los archivos template (.tpl) que contiene.";
-$a->strings["view/smarty3 is writable"] = "Se puede escribir en /view/smarty3";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La reescritura de la dirección en .htaccess no funcionó. Revisa la configuración.";
-$a->strings["Url rewrite is working"] = "Reescribiendo la dirección...";
-$a->strings["ImageMagick PHP extension is installed"] = "ImageMagick PHP extension is installed";
-$a->strings["ImageMagick supports GIF"] = "ImageMagick supporta GIF";
-$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."] = "El archivo de configuración de base de datos \".htconfig.php\" no se pudo escribir. Por favor, utiliza el texto adjunto para crear un archivo de configuración en la raíz de tu servidor web.";
-$a->strings["<h1>What next</h1>"] = "<h1>¿Ahora qué?</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Tendrás que configurar [manualmente] una tarea programada para el sondeo";
 $a->strings["Unable to locate original post."] = "No se puede encontrar la publicación original.";
 $a->strings["Empty post discarded."] = "Publicación vacía descartada.";
 $a->strings["System error. Post not saved."] = "Error del sistema. Mensaje no guardado.";
@@ -1706,15 +1716,11 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Los puedes visitar en línea en %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Por favor contacta con el remitente respondiendo a este mensaje si no deseas recibir estos mensajes.";
 $a->strings["%s posted an update."] = "%s ha publicado una actualización.";
-$a->strings["System down for maintenance"] = "Servicio suspendido por mantenimiento";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave que coincidan. Por favor, agrega algunas palabras claves en tu perfil predeterminado.";
-$a->strings["is interested in:"] = "estás interesado en:";
-$a->strings["Profile Match"] = "Coincidencias de Perfil";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Aviso: este grupo contiene %s contacto con conexión no segura.",
-       1 => "Aviso: este grupo contiene %s contactos con conexiones no seguras.",
+$a->strings["Warning: This group contains %s member from a network that doesn't allow non public messages."] = array(
+       0 => "Aviso: Este grupo contiene %s miembro de una red que no permite mensajes públicos.",
+       1 => "Aviso: Este grupo contiene %s miembros de una red que no permite mensajes públicos.",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Los mensajes privados a este grupo corren el riesgo de ser mostrados públicamente.";
+$a->strings["Messages in this group won't be send to these receivers."] = "Los mensajes de este grupo no se enviarán a estos receptores.";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "Los mensajes privados a esta persona corren el riesgo de ser mostrados públicamente.";
 $a->strings["Invalid contact."] = "Contacto erróneo.";
 $a->strings["Commented Order"] = "Orden de comentarios";
@@ -1777,7 +1783,6 @@ $a->strings["View Album"] = "Ver Álbum";
 $a->strings["{0} wants to be your friend"] = "{0} quiere ser tu amigo";
 $a->strings["{0} sent you a message"] = "{0} te ha enviado un mensaje";
 $a->strings["{0} requested registration"] = "{0} solicitudes de registro";
-$a->strings["Tips for New Members"] = "Consejos para nuevos miembros";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Te has registrado con éxito. Por favor, consulta tu correo para más información.";
 $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."] = "Error al intentar de enviar mensaje de correo. Aquí los detalles de su cuenta: <br> login: %s<br> contraseña: %s<br><br>Puede cambiar su contraseña después de ingresar al sitio.";
 $a->strings["Registration successful."] = "Registro exitoso.";
@@ -1787,6 +1792,8 @@ $a->strings["You may (optionally) fill in this form via OpenID by supplying your
 $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si no estás familiarizado con OpenID, por favor deja ese campo en blanco y rellena el resto de los elementos.";
 $a->strings["Your OpenID (optional): "] = "Tu OpenID (opcional):";
 $a->strings["Include your profile in member directory?"] = "¿Incluir tu perfil en el directorio de miembros?";
+$a->strings["Note for the admin"] = "Nota para el administrador";
+$a->strings["Leave a message for the admin, why you want to join this node"] = "Deje un mensaje para el administrador sobre por qué quiere unirse a este nodo";
 $a->strings["Membership on this site is by invitation only."] = "Sitio solo accesible mediante invitación.";
 $a->strings["Your invitation ID: "] = "ID de tu invitación: ";
 $a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "Nombre completo (ej. Joe Smith, real o real aparente):";
@@ -1797,16 +1804,6 @@ $a->strings["Confirm:"] = "Confirmar:";
 $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>'."] = "Elije un apodo. Debe comenzar con una letra. Tu dirección de perfil en este sitio va a ser \"<strong>apodo@\$nombredelsitio</strong>\".";
 $a->strings["Choose a nickname: "] = "Escoge un apodo: ";
 $a->strings["Import your profile to this friendica instance"] = "Importar tu perfil a esta instancia de friendica";
-$a->strings["Do you really want to delete this suggestion?"] = "¿Estás seguro de que quieres borrar esta sugerencia?";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si el sitio web es nuevo inténtalo de nuevo dentro de 24 horas.";
-$a->strings["Ignore/Hide"] = "Ignorar/Ocultar";
-$a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]";
-$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?";
-$a->strings["Delete Video"] = "Borrar vídeo";
-$a->strings["No videos selected"] = "Ningún vídeo seleccionado";
-$a->strings["Recent Videos"] = "Vídeos recientes";
-$a->strings["Upload New Videos"] = "Subir nuevos vídeos";
-$a->strings["No contacts."] = "Ningún contacto.";
 $a->strings["Display"] = "Interfaz del usuario";
 $a->strings["Social Networks"] = "Redes sociales";
 $a->strings["Connected apps"] = "Aplicaciones conectadas";
@@ -1872,6 +1869,8 @@ $a->strings["Move to folder:"] = "Mover al directorio:";
 $a->strings["Display Settings"] = "Configuración Tema/Visualización";
 $a->strings["Display Theme:"] = "Utilizar tema:";
 $a->strings["Mobile Theme:"] = "Tema móvil:";
+$a->strings["Suppress warning of insecure networks"] = "Suprimir el aviso de redes inseguras";
+$a->strings["Should the system suppress the warning that the current group contains members of networks that can't receive non public postings."] = "Debería el sistema suprimir el aviso de que el grupo actual contiene miembros de redes que no pueden recibir publicaciones públicas.";
 $a->strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos";
 $a->strings["Minimum of 10 seconds. Enter -1 to disable it."] = "Minimo 10 segundos. Ingrese -1 para deshabilitar.";
 $a->strings["Number of items to display per page:"] = "Número de elementos a mostrar por página:";
@@ -1976,6 +1975,17 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ca
 $a->strings["Relocate"] = "Relocalizar";
 $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 ha migrado este perfil desde otro servidor aquí y algunos contactos no reciben sus publicaciones intente  recomunicar su ubicación a traves este botón. (Como para decir el botón de los botones)";
 $a->strings["Resend relocate message to contacts"] = "Reenviar mensaje de relocalización a los contactos";
+$a->strings["Do you really want to delete this video?"] = "Realmente quieres eliminar este vídeo?";
+$a->strings["Delete Video"] = "Borrar vídeo";
+$a->strings["No videos selected"] = "Ningún vídeo seleccionado";
+$a->strings["Recent Videos"] = "Vídeos recientes";
+$a->strings["Upload New Videos"] = "Subir nuevos vídeos";
+$a->strings["No contacts."] = "Ningún contacto.";
+$a->strings["Invalid request."] = "Consulta invalida";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Disculpa, posiblemente el archivo subido es mas grande que la PHP configuración permite.";
+$a->strings["Or - did you try to upload an empty file?"] = "Si no - intento de subir un archivo vacío?";
+$a->strings["File exceeds size limit of %s"] = "El archivo excede el limite de tamaño de %s";
+$a->strings["File upload failed."] = "Ha fallado la subida del archivo.";
 $a->strings["via"] = "vía";
 $a->strings["Repeat the image"] = "Repetir la imagen";
 $a->strings["Will repeat your image to fill the background."] = "Repetirá su imagen para llenar el fondo";
@@ -1997,17 +2007,12 @@ $a->strings["Content background transparency"] = "Transparencia de contenido de
 $a->strings["Set the background image"] = "Seleccionar la imagen de fondo";
 $a->strings["Guest"] = "Invitado";
 $a->strings["Visitor"] = "Visitante";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Configurar el tamaño de las imágenes en las publicaciones";
-$a->strings["Set font-size for posts and comments"] = "Tamaño del texto para publicaciones y comentarios";
-$a->strings["Set theme width"] = "Establecer el ancho para el tema";
-$a->strings["Color scheme"] = "Esquema de color";
 $a->strings["Alignment"] = "Alineación";
 $a->strings["Left"] = "Izquierda";
 $a->strings["Center"] = "Centrado";
+$a->strings["Color scheme"] = "Esquema de color";
 $a->strings["Posts font size"] = "Tamaño de letra del titulo de las publicaciones";
 $a->strings["Textareas font size"] = "Tamaño de letra del área de texto";
-$a->strings["Set line-height for posts and comments"] = "Altura para las publicaciones y comentarios";
-$a->strings["Set colour scheme"] = "Configurar esquema de color";
 $a->strings["Community Profiles"] = "Perfiles de la Comunidad";
 $a->strings["Last users"] = "Últimos usuarios";
 $a->strings["Find Friends"] = "Buscar amigos";
@@ -2018,18 +2023,6 @@ $a->strings["Comma separated list of helper forums"] = "Lista separada por comas
 $a->strings["Set style"] = "Definir estilo";
 $a->strings["Community Pages"] = "Páginas de Comunidad";
 $a->strings["Help or @NewHere ?"] = "¿Ayuda o @NuevoAquí?";
-$a->strings["Your contacts"] = "Tus contactos";
-$a->strings["Your personal photos"] = "Tus fotos personales";
-$a->strings["Last likes"] = "Últimos \"me gusta\"";
-$a->strings["Last photos"] = "Últimas fotos";
-$a->strings["Earth Layers"] = "Minimapa";
-$a->strings["Set zoomfactor for Earth Layers"] = "Configurar zoom en Minimapa";
-$a->strings["Set longitude (X) for Earth Layers"] = "Configurar longitud (X) en Minimapa";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Configurar latitud (Y) en Minimapa";
-$a->strings["Show/hide boxes at right-hand column:"] = "Mostrar/Ocultar casillas en la columna derecha:";
-$a->strings["Set resolution for middle column"] = "Resolución para la columna central";
-$a->strings["Set color scheme"] = "Configurar esquema de color";
-$a->strings["Set zoomfactor for Earth Layer"] = "Establecer zoom para Minimapa";
 $a->strings["greenzero"] = "greenzero";
 $a->strings["purplezero"] = "purplezero";
 $a->strings["easterbunny"] = "easterbunny";
index 08e84b008526f4174f661b8d3cdb6b5bccb47eb2..c8e8af22945ff36afc3defa4fcb651fd4dcc1b80 100644 (file)
@@ -1,6 +1,13 @@
 
 <div id='adminpage'>
        <h1>{{$title}} - {{$page}}</h1>
+{{if $showwarning}}
+       <div id="admin-warning-message-wrapper">
+               {{foreach $warningtext as $wt}}
+               <p class="warning-message">{{$wt}}</p>
+               {{/foreach}}
+       </div>
+{{/if}}
 
        <dl>
                <dt>{{$queues.label}}</dt>
index 33f44472dbd94cf598c072a0c2496d57bc0ad4bb..a842d6e36412a5fd00b2e37bfc7192a13c69b9cc 100644 (file)
@@ -39,6 +39,9 @@
                                                <a href="{{$baseurl}}/regmod/deny/{{$u.hash}}" title='{{$deny}}'><span class='icon dislike'></span></a>
                                        </td>
                                </tr>
+                               <tr>
+                                       <td class="pendingnote"><p><span>{{$pendingnotetext}}:</span> {{$u.note}}</p></td>
+                               </tr>
                        {{/foreach}}
                                </tbody>
                        </table>
index dfc35736161dbe687a490e53e6a1050fadc58db4..5c55dac2027a82eaae37ef5df7eb81a3f2fced7f 100644 (file)
        </div>
        <div id="register-nickname-end" ></div>
 
+{{if $permonly}}
+    {{include file="field_textarea.tpl" field=$permonlybox}}
+{{/if}}
+
        {{$publish}}
 
        <div id="register-submit-wrapper">
index d6d0a1a81b2c769337ff930cb5d9b6fddb51b788..6f5a0655081744b890388452946afff54e79bf41 100644 (file)
@@ -9,6 +9,7 @@
 {{include file="field_themeselect.tpl" field=$mobile_theme}}
 {{include file="field_input.tpl" field=$itemspage_mobile_network}}
 {{include file="field_input.tpl" field=$ajaxint}}
+{{include file="field_checkbox.tpl" field=$nowarn_insecure}}
 {{include file="field_checkbox.tpl" field=$no_auto_update}}
 {{include file="field_checkbox.tpl" field=$nosmile}}
 {{include file="field_checkbox.tpl" field=$noinfo}}
index dd1b9b441f979c7958832736c0d2753fc591258c..42946b6e138db7b6c880a0c62950e653c9fe3431 100644 (file)
@@ -88,7 +88,7 @@ blockquote {
     display: none !important;
 }
 code {
-       white-space: pre;
+    white-space: pre-wrap;
 }
 
 /*
@@ -2407,3 +2407,11 @@ body .tread-wrapper .hovercard a:hover {
 body .tread-wrapper .hovercard:hover .hover-card-content a {
     color: $link_color !important;
 }
+
+/*
+ * some temporary workarounds until this will solved
+ * elsewhere (e.g. new templates)
+ */
+section .profile-match-wrapper {
+    float: left;
+}
index 43eea97304972bde8e6720810e326947be7ac0aa..06709f304323ead3271a86c4288dcb6e5e809d6d 100644 (file)
@@ -66,6 +66,7 @@
                                                {{include file="field_input.tpl" field=$itemspage_network}}
                                                {{include file="field_input.tpl" field=$itemspage_mobile_network}}
                                                {{include file="field_input.tpl" field=$ajaxint}}
+                                               {{include file="field_checkbox.tpl" field=$nowarn_insecure}}
                                                {{include file="field_checkbox.tpl" field=$no_auto_update}}
                                                {{include file="field_checkbox.tpl" field=$nosmile}}
                                                {{include file="field_checkbox.tpl" field=$noinfo}}