]> git.mxchange.org Git - friendica.git/commitdiff
Merge pull request #1512 from fraengii/2015-04-12-Account-Basics.md
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 17 Apr 2015 07:45:41 +0000 (09:45 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 17 Apr 2015 07:45:41 +0000 (09:45 +0200)
12.4.2015, doc/de/Account-Basics.md: Anrede und Stil

35 files changed:
boot.php
database.sql
doc/Vagrant.md
doc/de/Quick-Start-guide.md
include/Photo.php
include/acl_selectors.php
include/api.php
include/conversation.php
include/dbstructure.php
include/follow.php
include/items.php
include/text.php
js/main.js
mod/contacts.php
mod/crepair.php
mod/dfrn_confirm.php
mod/dfrn_request.php
mod/display.php
mod/follow.php [changed mode: 0644->0755]
mod/network.php
mod/parse_url.php
mod/photos.php
mod/profperm.php
update.php
view/cs/messages.po
view/cs/strings.php
view/de/messages.po
view/de/strings.php
view/fr/messages.po
view/fr/strings.php
view/templates/auto_request.tpl
view/templates/crepair.tpl
view/templates/dfrn_request.tpl
view/templates/follow.tpl
view/theme/frost-mobile/templates/head.tpl

index 6da885117a344c4133d3cf2e1b9127553b3b9ae8..5e0a70db1f748ee625b76cd2ff5195f18960fc68 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -18,7 +18,7 @@ define ( 'FRIENDICA_PLATFORM',     'Friendica');
 define ( 'FRIENDICA_CODENAME',     'Lily of the valley');
 define ( 'FRIENDICA_VERSION',      '3.4.0' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.23'    );
-define ( 'DB_UPDATE_VERSION',      1182      );
+define ( 'DB_UPDATE_VERSION',      1183      );
 define ( 'EOL',                    "<br />\r\n"     );
 define ( 'ATOM_TIME',              'Y-m-d\TH:i:s\Z' );
 
@@ -1695,7 +1695,6 @@ if(! function_exists('profile_sidebar')) {
                if($a->theme['template_engine'] === 'internal')
                        $location = template_escape($location);
 
-
                $tpl = get_markup_template('profile_vcard.tpl');
                $o .= replace_macros($tpl, array(
                        '$profile' => $p,
index 8babeb4d4f532c4bf31860a4a6345cc3077d5ac1..ab597825cd2ca653a228da81700258935c1ca705 100644 (file)
@@ -1,6 +1,6 @@
 -- ------------------------------------------
--- Friendica 3.4.0 (Ginger)
--- DB_UPDATE_VERSION 1182
+-- Friendica 3.4.0 (Lily of the valley)
+-- DB_UPDATE_VERSION 1183
 -- ------------------------------------------
 
 
@@ -140,6 +140,7 @@ CREATE TABLE IF NOT EXISTS `contact` (
        `uri-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
        `avatar-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
        `term-date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+       `last-item` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
        `priority` tinyint(3) NOT NULL DEFAULT 0,
        `blocked` tinyint(1) NOT NULL DEFAULT 1,
        `readonly` tinyint(1) NOT NULL DEFAULT 0,
index 136583c4d977b4f81ae827c4ea23bab87af54160..83467a0a1fff203420cdf61f6f446d58de8d556a 100644 (file)
@@ -5,15 +5,22 @@ Vagrant for Friendica Developers
 
 **Getting started**
 
-[Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers. No need to setup up a webserver, database etc. before actually starting. Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica. What you need to do:
+[Vagrant](https://www.vagrantup.com/) is a virtualization solution for developers.
+No need to setup up a webserver, database etc. before actually starting.
+Vagrant creates a virtual machine (an Ubuntu 12.04) for you that you can just run inside VirtualBox and start to work directly on Friendica.
+What you need to do:
 
 1. Install VirtualBox and vagrant.
-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. Be patient: When it runs for the first time, it downloads an Ubuntu Server image.
+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.
+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 to finish the Friendica installation. The mysql database is called "friendica", the mysql user and password both are "root".
+5. Open 192.168.22.10 in a browser to finish the Friendica installation.
+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).
-7. Check the changes in your browser in the VM. Debug via the "vagrant ssh" login.
+7. Check the changes in your browser in the VM.
+Debug via the "vagrant ssh" login.
 8. Commit and push your changes directly back to Github.
 
 If you want to stop vagrant after finishing your work, run the following command
@@ -31,7 +38,7 @@ If you want some test data in your vagrant Friendica instance import the databas
 You will then have the following accounts to login:
 
   * admin, password admin
-  * friendica1, password friendica
+  * friendica1, password friendica1
   * friendica2, password friendica2 and so on until friendica5
   * friendica1 is connected to all others. friendica1 has two groups: group1 with friendica2 and friendica4, group2 with friendica3 and friendica5.
   * friendica2 and friendica3 are conntected. friendica4 and friendica5 are connected. 
index 717055215da7719abba5bb2cf8eaee786c685f32..73e51aedea8024eef7f01ea0fad0ea08f2f92f82 100644 (file)
@@ -5,8 +5,7 @@ Erste Schritte...
 
 Als Erstes: Gehe sicher, dass Du eingeloggt bist. Wenn Du noch nicht eingeloggt bist, kannst Du das in dem Fenster unten machen. 
 
-Sobald dies geschehen ist, schaust Du auf Deine Profilseite (https://***************.tls/profile/*****).
-
+Sobald dies geschehen ist, schaust Du auf die Netzwerkseite Deines Profils. Klicke auf den Reiter "Pinnwand".
 Hier sieht es ein wenig wie auf (D)einer Facebook-Seite aus. Du findest hier alle Deine Statusmeldungen und Nachrichten Deiner Freunde, die direkt auf Deine "Pinnwand" ("Wall") geschrieben haben. Um Deinen Status einzutragen, klicke einfach auf die Box oben, in der "Teilen" steht. Wenn Du das machst, vergrößert sich die Box, und Du kannst nun Deinen Text eintragen, mit Hilfe einiger Formatierungsoptionen wie fett, kursiv, unterstrichen formatieren und ebenfalls Bilder und Links hinzufügen. Unten findest Du in diesem Feld weitere Knöpfe, mit denen Du Bilder und Dateien von Deinem Computer hochladen, Webseiten mit einem Kurztext teilen und Video- und Audiodateien aus dem Internet einfügen kannst. Außerdem kannst Du hier eintragen, wo Du gerade bist. 
 
 Wenn Du Deinen Beitrag ("Post") geschrieben hast, kannst Du auf das "Schloss"-Symbol klicken und festlegen, wer Deinen Beitrag sehen kann. Wenn Du dieses Symbol nicht anklickst, ist Dein Beitrag öffentlich. 
@@ -15,7 +14,10 @@ Ein öffentlicher Beitrag ist sichbar für
        <li>Besucher Deines Profils</li>
        <li>Besucher Deiner "Gemeinschafts"-Seite</li>
        <li>Besucher der Profile Deiner Kontakte</li>
+       <li>Suchmaschinen</li>
 </ul>
+Auch wenn Du Deinen Server so konfiguriert hast, dass der Zugriff von außerhalb des Friendica-Netzwerks theoretisch nicht möglich ist, so ist Dein Beitrag über die Profile Deiner Kontakte sichtbar, wenn deren Knoten solche Zugriffe zulassen.
+
 <!--Das bedeutet, dass jeder, der Dein Profil ansieht, den Beitrag sehen kann. Außerdem auch jene, die den "Community"-Tab Deines Servers oder auf dem "Netzwerk"-Tab ("Beiträge Deiner Kontakte") eines befreundeten Kontakts betrachten.-->
 
 Probiere es doch einfach mal aus. Wenn Du fertig bist, schauen wir uns den <a href="help/Quick-Start-network">"Netzwerk"-Tab</a> an. 
index ccb6af29e92c22447a715e9d41c4483cd8501b99..e36fd46ca036b5e101f5d19dbf8353dfebd4a261 100644 (file)
@@ -345,6 +345,24 @@ class Photo {
     }
 
     public function orient($filename) {
+        if ($this->is_imagick()) {
+            // based off comment on http://php.net/manual/en/imagick.getimageorientation.php
+            $orientation = $this->image->getImageOrientation();
+            switch ($orientation) {
+            case imagick::ORIENTATION_BOTTOMRIGHT:
+                $this->image->rotateimage("#000", 180);
+                break;
+            case imagick::ORIENTATION_RIGHTTOP:
+                $this->image->rotateimage("#000", 90);
+                break;
+            case imagick::ORIENTATION_LEFTBOTTOM:
+                $this->image->rotateimage("#000", -90);
+                break;
+            }
+
+            $this->image->setImageOrientation(imagick::ORIENTATION_TOPLEFT);
+            return TRUE;
+        }
        // based off comment on http://php.net/manual/en/function.imagerotate.php
 
        if(!$this->is_valid())
index 668544b0bcf8df71afd51cc7628a466078157e4c..b2c4b31c8132e60161c63a747ac840586d566326 100644 (file)
@@ -78,19 +78,19 @@ function contact_selector($selname, $selclass, $preselected = false, $options) {
                if(x($options,'networks')) {
                        switch($options['networks']) {
                                case 'DFRN_ONLY':
-                                       $networks = array('dfrn');
+                                       $networks = array(NETWORK_DFRN);
                                        break;
                                case 'PRIVATE':
                                        if(is_array($a->user) && $a->user['prvnets'])
-                                               $networks = array('dfrn','mail','dspr');
+                                               $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA);
                                        else
-                                               $networks = array('dfrn','face','mail', 'dspr');
+                                               $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL, NETWORK_DIASPORA);
                                        break;
                                case 'TWO_WAY':
                                        if(is_array($a->user) && $a->user['prvnets'])
-                                               $networks = array('dfrn','mail','dspr');
+                                               $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA);
                                        else
-                                               $networks = array('dfrn','face','mail','dspr','stat');
+                                               $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL,NETWORK_DIASPORA,NETWORK_OSTATUS);
                                        break;
                                default:
                                        break;
@@ -181,12 +181,12 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p
                $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
        }
 
-       if($privmail) {
-               $sql_extra .= " AND `network` IN ( 'dfrn', 'dspr' ) ";
-       }
-       elseif($privatenet) {
-               $sql_extra .= " AND `network` IN ( 'dfrn', 'mail', 'face', 'dspr' ) ";
-       }
+       if($privmail)
+               $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s') ",
+                                       NETWORK_DFRN, NETWORK_DIASPORA);
+       elseif($privatenet)
+               $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s', '%s', '%s') ",
+                                       NETWORK_DFRN, NETWORK_MAIL, NETWORK_FACEBOOK, NETWORK_DIASPORA);
 
        $tabindex = ($tabindex > 0 ? "tabindex=\"$tabindex\"" : "");
 
index cf75428a3d12fa7c3d09d93b466534380df85f8f..dd24a92c9b105bf22e2bbc25532fc7f258e24d78 100644 (file)
                $password = $_SERVER['PHP_AUTH_PW'];
                $encrypted = hash('whirlpool',trim($password));
 
+               // allow "user@server" login (but ignore 'server' part)
+               $at=strstr($user, "@", true);
+               if ( $at ) $user=$at;
 
                /**
                 *  next code from mod/auth.php. needs better solution
                $record = null;
 
                $addon_auth = array(
-                       'username' => trim($user), 
+                       'username' => trim($user),
                        'password' => trim($password),
                        'authenticated' => 0,
                        'user_record' => null
 
 
 
+       /**
+        * similar as /mod/redir.php
+        * redirect to 'url' after dfrn auth
+        *
+        * why this when there is mod/redir.php already?
+        * This use api_user() and api_login()
+        *
+        * params
+        *              c_url: url of remote contact to auth to
+        *              url: string, url to redirect after auth
+        */
+       function api_friendica_remoteauth(&$a) {
+               $url = ((x($_GET,'url')) ? $_GET['url'] : '');
+               $c_url = ((x($_GET,'c_url')) ? $_GET['c_url'] : '');
+
+               if ($url === '' || $c_url === '')
+                       die((api_error($a, 'json', "Wrong parameters")));
+
+               $c_url = normalise_link($c_url);
+
+               // traditional DFRN
+
+               $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `nurl` = '%s' LIMIT 1",
+                       dbesc($c_url),
+                       intval(api_user())
+               );
+
+               if ((! count($r)) || ($r[0]['network'] !== NETWORK_DFRN))
+                       die((api_error($a, 'json', "Unknown contact")));
+
+               $cid = $r[0]['id'];
+
+               $dfrn_id = $orig_id = (($r[0]['issued-id']) ? $r[0]['issued-id'] : $r[0]['dfrn-id']);
+
+               if($r[0]['duplex'] && $r[0]['issued-id']) {
+                       $orig_id = $r[0]['issued-id'];
+                       $dfrn_id = '1:' . $orig_id;
+               }
+               if($r[0]['duplex'] && $r[0]['dfrn-id']) {
+                       $orig_id = $r[0]['dfrn-id'];
+                       $dfrn_id = '0:' . $orig_id;
+               }
+
+               $sec = random_string();
+
+               q("INSERT INTO `profile_check` ( `uid`, `cid`, `dfrn_id`, `sec`, `expire`)
+                       VALUES( %d, %s, '%s', '%s', %d )",
+                       intval(api_user()),
+                       intval($cid),
+                       dbesc($dfrn_id),
+                       dbesc($sec),
+                       intval(time() + 45)
+               );
+
+               logger($r[0]['name'] . ' ' . $sec, LOGGER_DEBUG);
+               $dest = (($url) ? '&destination_url=' . $url : '');
+               goaway ($r[0]['poll'] . '?dfrn_id=' . $dfrn_id
+                               . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
+                               . '&type=profile&sec=' . $sec . $dest . $quiet );
+       }
+       api_register_func('api/friendica/remoteauth', 'api_friendica_remoteauth', true);
+
+
+
 function api_share_as_retweet(&$item) {
        $body = trim($item["body"]);
 
@@ -2884,6 +2951,7 @@ function api_best_nickname(&$contacts) {
                $contacts = array($contacts[0]);
 }
 
+
 /*
 Not implemented by now:
 statuses/retweets_of_me
index 20b54728c9c5c7509f14cf01e9fe1b56c76b735f..a6ea4da810f634a03edd860cf7cb40d57fd57f3c 100644 (file)
@@ -908,7 +908,7 @@ function like_puller($a,$item,&$arr,$mode) {
 
        if((activity_match($item['verb'],$verb)) && ($item['id'] != $item['parent'])) {
                $url = $item['author-link'];
-               if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === 'dfrn') && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
+               if((local_user()) && (local_user() == $item['uid']) && ($item['network'] === NETWORK_DFRN) && (! $item['self']) && (link_compare($item['author-link'],$item['url']))) {
                        $url = $a->get_baseurl(true) . '/redir/' . $item['contact-id'];
                        $sparkle = ' class="sparkle" ';
                }
index f131abe64f13b489621c85114536ce3b3f6524cd..012bb6f0bc857efa225ad0d44036f0a9272e9ce0 100644 (file)
@@ -120,7 +120,7 @@ function print_structure($database) {
        }
 }
 
-function update_structure($verbose, $action) {
+function update_structure($verbose, $action, $tables=null, $definition=null) {
        global $a, $db;
 
        $errors = false;
@@ -130,7 +130,8 @@ function update_structure($verbose, $action) {
        // Get the current structure
        $database = array();
 
-       $tables = q("show tables");
+       if (is_null($tables))
+               $tables = q("show tables");
 
        foreach ($tables AS $table) {
                $table = current($table);
@@ -139,7 +140,8 @@ function update_structure($verbose, $action) {
        }
 
        // Get the definition
-       $definition = db_definition();
+       if (is_null($definition))
+               $definition = db_definition();
 
        // Compare it
        foreach ($definition AS $name => $structure) {
@@ -149,9 +151,9 @@ function update_structure($verbose, $action) {
                         if(false === $r)
                                $errors .=  t('Errors encountered creating database tables.').$name.EOL;
                } else {
-                       // Drop the index if it isn't present in the definition
+                       // Drop the index if it isn't present in the definition and index name doesn't start with "local_"
                        foreach ($database[$name]["indexes"] AS $indexname => $fieldnames)
-                               if (!isset($structure["indexes"][$indexname])) {
+                               if (!isset($structure["indexes"][$indexname]) && substring($indexname, 0, 5) != 'local_') {
                                        $sql2=db_drop_index($indexname);
                                        if ($sql3 == "")
                                                $sql3 = "ALTER TABLE `".$name."` ".$sql2;
@@ -453,6 +455,7 @@ function db_definition() {
                                        "uri-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
                                        "avatar-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
                                        "term-date" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
+                                       "last-item" => array("type" => "datetime", "not null" => "1", "default" => "0000-00-00 00:00:00"),
                                        "priority" => array("type" => "tinyint(3)", "not null" => "1", "default" => "0"),
                                        "blocked" => array("type" => "tinyint(1)", "not null" => "1", "default" => "1"),
                                        "readonly" => array("type" => "tinyint(1)", "not null" => "1", "default" => "0"),
index ba036cd48d2dbf764c84399d6513f8a98250337a..287a38b6bffb03c33e81f5856da461661e3d6be0 100644 (file)
@@ -15,7 +15,7 @@
 
 function new_contact($uid,$url,$interactive = false) {
 
-       $result = array('success' => false,'message' => '');
+       $result = array('cid' => -1, 'success' => false,'message' => '');
 
        $a = get_app();
 
@@ -208,7 +208,7 @@ function new_contact($uid,$url,$interactive = false) {
 
        $contact = $r[0];
        $contact_id  = $r[0]['id'];
-
+       $result['cid'] = $contact_id;
 
        $g = q("select def_gid from user where uid = %d limit 1",
                intval($uid)
index 3832b80b318f30f51a0f8b716d87c752f65ac855..8a0deb437b041582bc2846592089e24dbfd40c06 100644 (file)
@@ -1391,12 +1391,24 @@ function item_store($arr,$force_parent = false, $notify = false, $dontcache = fa
                $current_post = $r[0]['id'];
                logger('item_store: created item ' . $current_post);
 
-               // Set "success_update" to the date of the last time we heard from this contact
-               // This can be used to filter for inactive contacts and poco.
+               // Set "success_update" and "last-item" to the date of the last time we heard from this contact
+               // This can be used to filter for inactive contacts.
                // Only do this for public postings to avoid privacy problems, since poco data is public.
                // Don't set this value if it isn't from the owner (could be an author that we don't know)
-               if (!$arr['private'] AND (($arr["author-link"] === $arr["owner-link"]) OR ($arr["parent-uri"] === $arr["uri"])))
-                       q("UPDATE `contact` SET `success_update` = '%s' WHERE `id` = %d",
+
+               $update = (!$arr['private'] AND (($arr["author-link"] === $arr["owner-link"]) OR ($arr["parent-uri"] === $arr["uri"])));
+
+               // Is it a forum? Then we don't care about the rules from above
+               if (!$update AND ($arr["network"] == NETWORK_DFRN) AND ($arr["parent-uri"] === $arr["uri"])) {
+                       $isforum = q("SELECT `forum` FROM `contact` WHERE `id` = %d AND `forum`",
+                                       intval($arr['contact-id']));
+                       if ($isforum)
+                               $update = true;
+               }
+
+               if ($update)
+                       q("UPDATE `contact` SET `success_update` = '%s', `last-item` = '%s' WHERE `id` = %d",
+                               dbesc($arr['received']),
                                dbesc($arr['received']),
                                intval($arr['contact-id'])
                        );
index 8ce54b3c6786c130a6c93e5e72402e855946418b..fd5ae0a2b67e646ca652465ce1449de51ba41625 100644 (file)
@@ -920,7 +920,7 @@ function micropro($contact, $redirect = false, $class = '', $textmode = false) {
        if($redirect) {
                $a = get_app();
                $redirect_url = $a->get_baseurl() . '/redir/' . $contact['id'];
-               if(local_user() && ($contact['uid'] == local_user()) && ($contact['network'] === 'dfrn')) {
+               if(local_user() && ($contact['uid'] == local_user()) && ($contact['network'] === NETWORK_DFRN)) {
                        $redir = true;
                        $url = $redirect_url;
                        $sparkle = ' sparkle';
index 53608024c966ce2e3df5dfc6b6168326b8b7f716..d7381c96a474e47671f01bcdb727000be8a6b233 100644 (file)
                                          // TODO (yet unsupported by most browsers): 
                                          // Implement notification.onclick()
                                          
-                                        notifyMarkAll();
+                                         // notifyMarkAll();
                                        }
                                });
 
index 95b1944dc871f697f159409f98b77bd782f8bc49..5d40ff9940ad318753a5ac4c5225979251cd3889 100644 (file)
@@ -3,7 +3,9 @@
 require_once('include/Contact.php');
 require_once('include/socgraph.php');
 require_once('include/contact_selectors.php');
+require_once('include/Scrape.php');
 require_once('mod/proxy.php');
+require_once('include/Photo.php');
 
 function contacts_init(&$a) {
        if(! local_user())
@@ -33,7 +35,7 @@ function contacts_init(&$a) {
                        $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
                                '$name' => $a->data['contact']['name'],
                                '$photo' => $a->data['contact']['photo'],
-                               '$url' => ($a->data['contact']['network'] == 'dfrn') ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url']
+                               '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url']
                        ));
                        $follow_widget = '';
        }
@@ -205,8 +207,70 @@ function contacts_post(&$a) {
 /*contact actions*/
 function _contact_update($contact_id) {
        // pull feed and consume it, which should subscribe to the hub.
-       proc_run('php',"include/poller.php","$contact_id"); 
+       proc_run('php',"include/poller.php","$contact_id");
 }
+
+function _contact_update_profile($contact_id) {
+       $r = q("SELECT `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
+       if (!$r)
+               return;
+
+       $data = probe_url($r[0]["url"]);
+
+       // "Feed" is mostly a sign of communication problems
+       if (($data["network"] == NETWORK_FEED) AND ($data["network"] != $r[0]["network"]))
+               return;
+
+       $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm",
+                               "poco", "network", "alias", "pubkey");
+       $update = array();
+
+       foreach($updatefields AS $field)
+               if (isset($data[$field]) AND ($data[$field] != ""))
+                       $update[$field] = $data[$field];
+
+       $update["nurl"] = normalise_link($data["url"]);
+
+       $query = "";
+
+       if (isset($data["priority"]) AND ($data["priority"] != 0))
+               $query = "`priority` = ".intval($data["priority"]);
+
+       foreach($update AS $key => $value) {
+               if ($query != "")
+                       $query .= ", ";
+
+               $query .= "`".$key."` = '".dbesc($value)."'";
+       }
+
+       if ($query == "")
+               return;
+
+       $r = q("UPDATE `contact` SET $query WHERE `id` = %d AND `uid` = %d",
+               intval($contact_id),
+               intval(local_user())
+       );
+
+       $photos = import_profile_photo($data['photo'], local_user(), $contact_id);
+
+       $r = q("UPDATE `contact` SET `photo` = '%s',
+                       `thumb` = '%s',
+                       `micro` = '%s',
+                       `name-date` = '%s',
+                       `uri-date` = '%s',
+                       `avatar-date` = '%s'
+                       WHERE `id` = %d",
+                       dbesc($photos[0]),
+                       dbesc($photos[1]),
+                       dbesc($photos[2]),
+                       dbesc(datetime_convert()),
+                       dbesc(datetime_convert()),
+                       dbesc(datetime_convert()),
+                       intval($contact_id)
+               );
+
+}
+
 function _contact_block($contact_id, $orig_record) {
        $blocked = (($orig_record['blocked']) ? 0 : 1);
        $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d",
@@ -284,6 +348,12 @@ function contacts_content(&$a) {
                        // NOTREACHED
                }
 
+               if($cmd === 'updateprofile') {
+                       _contact_update_profile($contact_id);
+                       goaway($a->get_baseurl(true) . '/crepair/' . $contact_id);
+                       // NOTREACHED
+               }
+
                if($cmd === 'block') {
                        $r = _contact_block($contact_id, $orig_record[0]);
                        if($r) {
@@ -681,7 +751,7 @@ function contacts_content(&$a) {
                                default:
                                        break;
                        }
-                       if(($rr['network'] === 'dfrn') && ($rr['rel'])) {
+                       if(($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) {
                                $url = "redir/{$rr['id']}";
                                $sparkle = ' class="sparkle" ';
                        }
@@ -734,7 +804,7 @@ function contacts_content(&$a) {
                ),
                '$paginate' => paginate($a),
 
-       )); 
-       
+       ));
+
        return $o;
 }
index 400817d6f7e42588e4e18c4a8805714f2d40ffef..55231faf7dd1e0cb77344080ef366969fd548435 100644 (file)
@@ -160,8 +160,12 @@ function crepair_content(&$a) {
        else
                $remote_self_options = array('0'=>t('No mirroring'), '2'=>t('Mirror as my own posting'));
 
+       $update_profile = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_DSPR, NETWORK_OSTATUS));
+
        $tpl = get_markup_template('crepair.tpl');
        $o .= replace_macros($tpl, array(
+               '$update_profile' => update_profile,
+               '$udprofilenow' => t('Refetch contact data'),
                '$label_name' => t('Name'),
                '$label_nick' => t('Account Nickname'),
                '$label_attag' => t('@Tagname - overrides Name/Nickname'),
index f1ce296d901c727ca338040733b5284779641483..1cc258853b9b52e154cfc1b795d93bb089ebd2dc 100644 (file)
@@ -340,7 +340,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                `pending` = 0,
                                `duplex` = %d,
                                `hidden` = %d,
-                               `network` = 'dfrn' WHERE `id` = %d
+                               `network` = '%s' WHERE `id` = %d
                        ",
                                dbesc($photos[0]),
                                dbesc($photos[1]),
@@ -351,6 +351,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                dbesc(datetime_convert()),
                                intval($duplex),
                                intval($hidden),
+                               dbesc(NETWORK_DFRN),
                                intval($contact_id)
                        );
                }
index aee8c0306f28cfedeb9850f7a7387d2009d292d9..62b6f4bd700f80aaea4dc69729e57eeb238d2f1e 100644 (file)
@@ -664,6 +664,21 @@ function dfrn_request_content(&$a) {
                $dfrn_url = notags(trim(hex2bin($_GET['dfrn_url'])));
                $aes_allow = (((x($_GET,'aes_allow')) && ($_GET['aes_allow'] == 1)) ? 1 : 0);
                $confirm_key = (x($_GET,'confirm_key') ? $_GET['confirm_key'] : "");
+
+               // Checking fastlane for validity
+               if (x($_SESSION, "fastlane") AND (normalise_link($_SESSION["fastlane"]) == normalise_link($dfrn_url))) {
+                       $_POST["dfrn_url"] = $dfrn_url;
+                       $_POST["confirm_key"] = $confirm_key;
+                       $_POST["localconfirm"] = 1;
+                       $_POST["hidden-contact"] = 0;
+                       $_POST["submit"] = t('Confirm');
+
+                       dfrn_request_post($a);
+
+                       killme();
+                       return; // NOTREACHED
+               }
+
                $tpl = get_markup_template("dfrn_req_confirm.tpl");
                $o  = replace_macros($tpl,array(
                        '$dfrn_url' => $dfrn_url,
index f483977cd4f847aebc639bbe93a4f85a499b921d..02ff37bf8348cd2256dc99a298b351dde4f52de8 100644 (file)
@@ -193,11 +193,13 @@ function display_fetchauthor($a, $item) {
        }
 
        if (local_user()) {
-               if ($profiledata["network"] == NETWORK_DFRN) {
-                       $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]);
-                       $profiledata["remoteconnect"] = $connect;
-               } elseif ($profiledata["network"] == NETWORK_DIASPORA)
-                       $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true);
+               if (in_array($profiledata["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
+                       $profiledata["remoteconnect"] = $a->get_baseurl()."/follow?url=".urlencode($profiledata["url"]);
+               //if ($profiledata["network"] == NETWORK_DFRN) {
+               //      $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"])."&addr=".bin2hex($a->get_baseurl()."/profile/".$a->user["nickname"]);
+               //      $profiledata["remoteconnect"] = $connect;
+               //} elseif ($profiledata["network"] == NETWORK_DIASPORA)
+               //      $profiledata["remoteconnect"] = $a->get_baseurl()."/contacts?add=".GetProfileUsername($profiledata["url"], "", true);
        } elseif ($profiledata["network"] == NETWORK_DFRN) {
                $connect = str_replace("/profile/", "/dfrn_request/", $profiledata["url"]);
                $profiledata["remoteconnect"] = $connect;
old mode 100644 (file)
new mode 100755 (executable)
index 5c2c764..b9401ee
@@ -3,7 +3,7 @@
 require_once('include/Scrape.php');
 require_once('include/follow.php');
 
-function follow_init(&$a) {
+function follow_content(&$a) {
 
        if(! local_user()) {
                notice( t('Permission denied.') . EOL);
@@ -11,10 +11,85 @@ function follow_init(&$a) {
                // NOTREACHED
        }
 
+       $uid = local_user();
+       $url = notags(trim($_REQUEST['url']));
+
+       $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND (`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') LIMIT 1",
+               intval(local_user()), dbesc(normalise_link($url)), dbesc(normalise_link($url)), dbesc($url));
+
+       if ($r) {
+               notice(t('You already added this contact.').EOL);
+               goaway($_SESSION['return_url']);
+               // NOTREACHED
+       }
+
+       $ret = probe_url($url);
+
+       if($ret['network'] === NETWORK_DFRN) {
+               $request = $ret["request"];
+               $tpl = get_markup_template('dfrn_request.tpl');
+       } else {
+               $request = $a->get_baseurl()."/follow";
+               $tpl = get_markup_template('auto_request.tpl');
+       }
+
+       $r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid));
+
+       if (!$r) {
+               notice( t('Permission denied.') . EOL);
+               goaway($_SESSION['return_url']);
+               // NOTREACHED
+       }
+
+       $myaddr = $r[0]["url"];
+
+       // Makes the connection request for friendica contacts easier
+       $_SESSION["fastlane"] = $ret["url"];
+
+       $o  = replace_macros($tpl,array(
+                       '$header' => $ret["name"]." (".$ret["addr"].")",
+                       '$photo' => $ret["photo"],
+                        '$desc' => "",
+                        '$pls_answer' => t('Please answer the following:'),
+                        '$does_know_you' => array('knowyou', sprintf(t('Does %s know you?'),$ret["name"]), false, '', array(t('No'),t('Yes'))),
+                        '$add_note' => t('Add a personal note:'),
+                        '$page_desc' => "",
+                        '$friendica' => "",
+                        '$statusnet' => "",
+                        '$diaspora' => "",
+                        '$diasnote' => "",
+                        '$your_address' => t('Your Identity Address:'),
+                        '$invite_desc' => "",
+                        '$emailnet' => "",
+                        '$submit' => t('Submit Request'),
+                        '$cancel' => t('Cancel'),
+                        '$nickname' => "",
+                        '$name' => $ret["name"],
+                        '$url' => $ret["url"],
+                        '$myaddr' => $myaddr,
+                       '$request' => $request
+       ));
+       return $o;
+}
+
+function follow_post(&$a) {
+
+       if(! local_user()) {
+               notice( t('Permission denied.') . EOL);
+               goaway($_SESSION['return_url']);
+               // NOTREACHED
+       }
+
+       if ($_REQUEST['cancel'])
+               goaway($_SESSION['return_url']);
+
        $uid = local_user();
        $url = notags(trim($_REQUEST['url']));
        $return_url = $_SESSION['return_url'];
 
+       // Makes the connection request for friendica contacts easier
+       // This is just a precaution if maybe this page is called somewhere directly via POST
+       $_SESSION["fastlane"] = $url;
 
        $result = new_contact($uid,$url,true);
 
@@ -22,12 +97,13 @@ function follow_init(&$a) {
                if($result['message'])
                        notice($result['message']);
                goaway($return_url);
-       }
+       } elseif ($result['cid'])
+               goaway($a->get_baseurl().'/contacts/'.$result['cid']);
 
-       info( t('Contact added') . EOL);
+       info( t('Contact added').EOL);
 
        if(strstr($return_url,'contacts'))
-               goaway($a->get_baseurl() . '/contacts/' . $contact_id);
+               goaway($a->get_baseurl().'/contacts/'.$contact_id);
 
        goaway($return_url);
        // NOTREACHED
index 0f9b0d2339ad41977f03e864c517b7b12bda4d00..fafee97c072f9c5cf90b42326afb461ede0c1c30 100644 (file)
@@ -452,11 +452,6 @@ function network_content(&$a, $update = 0) {
        }
        set_pconfig(local_user(), 'network.view', 'net.selected', ($nets ? $nets : 'all'));
 
-/*if ($update) {
-print_r($_GET);
-die("ss");
-}*/
-
        if(! $update) {
                if($group) {
                        if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
@@ -471,6 +466,14 @@ die("ss");
 
                $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
 
+               $content = "";
+
+               if ($cid) {
+                       $contact = q("SELECT `nick` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `forum`", intval($cid), intval(local_user()));
+                       if ($contact)
+                               $content = "@".$contact[0]["nick"]."+".$cid;
+               }
+
                $x = array(
                        'is_owner' => true,
                        'allow_location' => $a->user['allow_location'],
@@ -483,6 +486,7 @@ die("ss");
                        'visitor' => 'block',
                        'profile_uid' => local_user(),
                        'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
+                       'content' => $content,
                );
 
                $o .= status_editor($a,$x);
index 7f4bd29a08b292728e2c07b3bb0f457c796420c3..71d767675f8c51a1b3cba44b3edae4e2bd0c7bf8 100644 (file)
@@ -97,6 +97,14 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
                return($siteinfo);
        }
 
+       // if the file is too large then exit
+       if ($curl_info["download_content_length"] > 1000000)
+               return($siteinfo);
+
+       // if it isn't a HTML file then exit
+       if (($curl_info["content_type"] != "") AND !strstr(strtolower($curl_info["content_type"]),"html"))
+               return($siteinfo);
+
        if ($do_oembed) {
                require_once("include/oembed.php");
 
@@ -104,15 +112,16 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
 
                if ($oembed_data->type != "error")
                        $siteinfo["type"] = $oembed_data->type;
-       }
-
-       // if the file is too large then exit
-       if ($curl_info["download_content_length"] > 1000000)
-               return($siteinfo);
 
-       // if it isn't a HTML file then exit
-       if (($curl_info["content_type"] != "") AND !strstr(strtolower($curl_info["content_type"]),"html"))
-               return($siteinfo);
+               if (($oembed_data->type == "link") AND ($siteinfo["type"] != "photo")) {
+                       if (isset($oembed_data->title))
+                               $siteinfo["title"] = $oembed_data->title;
+                       if (isset($oembed_data->description))
+                               $siteinfo["text"] = trim($oembed_data->description);
+                       if (isset($oembed_data->thumbnail_url))
+                               $siteinfo["image"] = $oembed_data->thumbnail_url;
+               }
+       }
 
        $stamp1 = microtime(true);
 
@@ -283,15 +292,6 @@ function parseurl_getsiteinfo($url, $no_guessing = false, $do_oembed = true, $co
                        }
        }
 
-       if (isset($oembed_data) AND ($oembed_data->type == "link") AND ($siteinfo["type"] != "photo")) {
-               if (isset($oembed_data->title) AND (trim($oembed_data->title) != ""))
-                       $siteinfo["title"] = $oembed_data->title;
-               if (isset($oembed_data->description) AND (trim($oembed_data->description) != ""))
-                       $siteinfo["text"] = trim($oembed_data->description);
-               if (isset($oembed_data->thumbnail_url) AND (trim($oembed_data->thumbnail_url) != ""))
-                       $siteinfo["image"] = $oembed_data->thumbnail_url;
-       }
-
        if ((@$siteinfo["image"] == "") AND !$no_guessing) {
            $list = $xpath->query("//img[@src]");
            foreach ($list as $node) {
index 003bcd915089175db61253bb7ef4d83a52e2fd64..f8bba01b00cd0de593986470127ed752e86c681d 100644 (file)
@@ -1628,7 +1628,7 @@ function photos_content(&$a) {
 
 
                                        if(local_user() && ($item['contact-uid'] == local_user())
-                                               && ($item['network'] == 'dfrn') && (! $item['self'] )) {
+                                               && ($item['network'] == NETWORK_DFRN) && (! $item['self'] )) {
                                                $profile_url = $redirect_url;
                                                $sparkle = ' sparkle';
                                        }
index 444f7a5eabf2a49003dff5c3eaf2447ea4e79ce5..077f695bea14c15be10f592258847bcd6e3d1198 100644 (file)
@@ -37,7 +37,8 @@ function profperm_content(&$a) {
 
        if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
                $r = q("SELECT `id` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `self` = 0
-                       AND `network` = 'dfrn' AND `id` = %d AND `uid` = %d LIMIT 1",
+                       AND `network` = '%s' AND `id` = %d AND `uid` = %d LIMIT 1",
+                       dbesc(NETWORK_DFRN),
                        intval($a->argv[2]),
                        intval(local_user())
                );
@@ -130,10 +131,11 @@ function profperm_content(&$a) {
        $o .= '<h3>' . t("All Contacts \x28with secure profile access\x29") . '</h3>';
        $o .= '</div>';
        $o .= '<div id="prof-all-contacts">';
-               
-               $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0 
-                       AND `network` = 'dfrn' ORDER BY `name` ASC",
-                       intval(local_user())
+
+               $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 and `pending` = 0 and `self` = 0
+                       AND `network` = '%s' ORDER BY `name` ASC",
+                       intval(local_user()),
+                       dbesc(NETWORK_DFRN)
                );
 
                if(count($r)) {
index 5b0b4cd25117de503a10529e88c9a0714deaa460..35aaff2c064eec7a9ed0cdb20e748ffb51dc63b1 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define( 'UPDATE_VERSION' , 1182 );
+define( 'UPDATE_VERSION' , 1183 );
 
 /**
  *
index 1c3cac1dbafc66ec638b6d4164df7e01c116032c..c52e3922aca19740a0d52020d226dc22e9b5e270 100644 (file)
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-09 08:57+0100\n"
-"PO-Revision-Date: 2015-02-11 19:36+0000\n"
+"POT-Creation-Date: 2015-04-04 17:54+0200\n"
+"PO-Revision-Date: 2015-04-13 17:40+0000\n"
 "Last-Translator: Michal Šupler <msupler@gmail.com>\n"
 "Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n"
 "MIME-Version: 1.0\n"
@@ -19,4611 +19,4509 @@ msgstr ""
 "Language: cs\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../../mod/contacts.php:108
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d kontakt upraven."
-msgstr[1] "%d kontakty upraveny"
-msgstr[2] "%d kontaktů upraveno"
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:56
+#: ../../view/theme/duepuntozero/config.php:59
+#: ../../view/theme/diabook/config.php:148
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
+#: ../../object/Item.php:678 ../../mod/contacts.php:492
+#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107
+#: ../../mod/photos.php:1084 ../../mod/photos.php:1203
+#: ../../mod/photos.php:1514 ../../mod/photos.php:1565
+#: ../../mod/photos.php:1609 ../../mod/photos.php:1697
+#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../mod/profiles.php:686 ../../mod/install.php:248
+#: ../../mod/install.php:286 ../../mod/crepair.php:186
+#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
+msgid "Submit"
+msgstr "Odeslat"
 
-#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
-msgid "Could not access contact record."
-msgstr "Nelze získat přístup k záznamu kontaktu."
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:58
+#: ../../view/theme/duepuntozero/config.php:61
+#: ../../view/theme/diabook/config.php:150
+#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
+msgid "Theme settings"
+msgstr "Nastavení téma"
 
-#: ../../mod/contacts.php:153
-msgid "Could not locate selected profile."
-msgstr "Nelze nalézt vybraný profil."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"
 
-#: ../../mod/contacts.php:186
-msgid "Contact updated."
-msgstr "Kontakt aktualizován."
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "Nastav velikost písma pro přízpěvky a komentáře."
 
-#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Nepodařilo se aktualizovat kontakt."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Nastavení šířku grafické šablony"
 
-#: ../../mod/contacts.php:254 ../../mod/manage.php:96
-#: ../../mod/display.php:499 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
-msgid "Permission denied."
-msgstr "Přístup odmítnut."
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Barevné schéma"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been blocked"
-msgstr "Kontakt byl zablokován"
+#: ../../view/theme/vier/config.php:59
+msgid "Set style"
+msgstr "Nastavit styl"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been unblocked"
-msgstr "Kontakt byl odblokován"
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
+#: ../../include/user.php:247
+msgid "default"
+msgstr "standardní"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been ignored"
-msgstr "Kontakt bude ignorován"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "zelená nula"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been unignored"
-msgstr "Kontakt přestal být ignorován"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "fialová nula"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been archived"
-msgstr "Kontakt byl archivován"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "velikonoční zajíček"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been unarchived"
-msgstr "Kontakt byl vrácen z archívu."
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "tmavá nula"
 
-#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
-msgid "Do you really want to delete this contact?"
-msgstr "Opravdu chcete smazat tento kontakt?"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "komiksová"
 
-#: ../../mod/contacts.php:337 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
-#: ../../include/items.php:4557
-msgid "Yes"
-msgstr "Ano"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "flákač"
 
-#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4560
-msgid "Cancel"
-msgstr "Zrušit"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variace"
 
-#: ../../mod/contacts.php:352
-msgid "Contact has been removed."
-msgstr "Kontakt byl odstraněn."
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "nikdy nezobrazit"
 
-#: ../../mod/contacts.php:390
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jste vzájemní přátelé s uživatelem %s"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "zobrazit"
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Sdílíte s uživatelem %s"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Nastav výšku řádku  pro přízpěvky a komentáře."
 
-#: ../../mod/contacts.php:399
-#, php-format
-msgid "%s is sharing with you"
-msgstr "uživatel %s sdílí s vámi"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Nastav rozlišení pro prostřední sloupec"
 
-#: ../../mod/contacts.php:416
-msgid "Private communications are not available for this contact."
-msgstr "Soukromá komunikace není dostupná pro tento kontakt."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Nastavení barevného schematu"
 
-#: ../../mod/contacts.php:419 ../../mod/admin.php:569
-msgid "Never"
-msgstr "Nikdy"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Nastavit přiblížení pro Earth Layer"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was successful)"
-msgstr "(Aktualizace byla úspěšná)"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was not successful)"
-msgstr "(Aktualizace nebyla úspěšná)"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers"
 
-#: ../../mod/contacts.php:425
-msgid "Suggest friends"
-msgstr "Navrhněte přátelé"
+#: ../../view/theme/diabook/config.php:158
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+msgid "Community Pages"
+msgstr "Komunitní stránky"
 
-#: ../../mod/contacts.php:429
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sítě: %s"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d sdílený kontakt"
-msgstr[1] "%d sdílených kontaktů"
-msgstr[2] "%d sdílených kontaktů"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Komunitní profily"
 
-#: ../../mod/contacts.php:437
-msgid "View all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Pomoc nebo @ProNováčky ?"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
-msgid "Unblock"
-msgstr "Odblokovat"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Propojené služby"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "Blokovat"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Nalézt Přátele"
 
-#: ../../mod/contacts.php:445
-msgid "Toggle Blocked status"
-msgstr "Přepnout stav Blokováno"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Poslední uživatelé"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715
-msgid "Unignore"
-msgstr "Přestat ignorovat"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Poslední fotografie"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorovat"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Poslední líbí/nelíbí"
 
-#: ../../mod/contacts.php:451
-msgid "Toggle Ignored status"
-msgstr "Přepnout stav Ignorováno"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
+#: ../../include/nav.php:148 ../../mod/notifications.php:93
+msgid "Home"
+msgstr "Domů"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Unarchive"
-msgstr "Vrátit z archívu"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:148
+msgid "Your posts and conversations"
+msgstr "Vaše příspěvky a konverzace"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Archive"
-msgstr "Archivovat"
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:458
-msgid "Toggle Archive status"
-msgstr "Přepnout stav Archivováno"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Vaše profilová stránka"
 
-#: ../../mod/contacts.php:461
-msgid "Repair"
-msgstr "Opravit"
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
+#: ../../mod/contacts.php:718
+msgid "Contacts"
+msgstr "Kontakty"
 
-#: ../../mod/contacts.php:464
-msgid "Advanced Contact Settings"
-msgstr "Pokročilé nastavení kontaktu"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vaše kontakty"
 
-#: ../../mod/contacts.php:470
-msgid "Communications lost with this contact!"
-msgstr "Komunikace s tímto kontaktem byla ztracena!"
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Fotografie"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Editor"
-msgstr "Editor kontaktu"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Vaše fotky"
 
-#: ../../mod/contacts.php:475 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:686 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
-#: ../../view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Odeslat"
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157
+#: ../../include/nav.php:80 ../../mod/events.php:370
+msgid "Events"
+msgstr "Události"
 
-#: ../../mod/contacts.php:476
-msgid "Profile Visibility"
-msgstr "Viditelnost profilu"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Vaše události"
 
-#: ../../mod/contacts.php:477
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Osobní poznámky"
 
-#: ../../mod/contacts.php:478
-msgid "Contact Information / Notes"
-msgstr "Kontaktní informace / poznámky"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Vaše osobní fotky"
 
-#: ../../mod/contacts.php:479
-msgid "Edit contact notes"
-msgstr "Editovat poznámky kontaktu"
+#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
+#: ../../include/nav.php:131 ../../mod/community.php:32
+msgid "Community"
+msgstr "Komunita"
 
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
-#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Navštivte profil uživatele %s [%s]"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:245 ../../include/text.php:1983
+msgid "event"
+msgstr "událost"
 
-#: ../../mod/contacts.php:485
-msgid "Block/Unblock contact"
-msgstr "Blokovat / Odblokovat kontakt"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:248 ../../include/conversation.php:257
+#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62
+msgid "status"
+msgstr "Stav"
 
-#: ../../mod/contacts.php:486
-msgid "Ignore contact"
-msgstr "Ignorovat kontakt"
+#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011
+#: ../../include/conversation.php:126 ../../include/conversation.php:253
+#: ../../include/text.php:1985 ../../mod/like.php:149
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62
+msgid "photo"
+msgstr "fotografie"
 
-#: ../../mod/contacts.php:487
-msgid "Repair URL settings"
-msgstr "Opravit nastavení adresy URL "
+#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027
+#: ../../include/conversation.php:137 ../../mod/like.php:166
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s má rád %2$s' na %3$s"
 
-#: ../../mod/contacts.php:488
-msgid "View conversations"
-msgstr "Zobrazit konverzace"
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+msgid "Contact Photos"
+msgstr "Fotogalerie kontaktu"
 
-#: ../../mod/contacts.php:490
-msgid "Delete contact"
-msgstr "Odstranit kontakt"
+#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305
+msgid "Profile Photos"
+msgstr "Profilové fotografie"
 
-#: ../../mod/contacts.php:494
-msgid "Last update:"
-msgstr "Poslední aktualizace:"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokální Adresář"
 
-#: ../../mod/contacts.php:496
-msgid "Update public posts"
-msgstr "Aktualizovat veřejné příspěvky"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Globální adresář"
 
-#: ../../mod/contacts.php:498 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "Aktualizovat"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Podobné zájmy"
 
-#: ../../mod/contacts.php:505
-msgid "Currently blocked"
-msgstr "V současnosti zablokováno"
+#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
+#: ../../mod/suggest.php:68
+msgid "Friend Suggestions"
+msgstr "Návrhy přátel"
 
-#: ../../mod/contacts.php:506
-msgid "Currently ignored"
-msgstr "V současnosti ignorováno"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Pozvat přátele"
 
-#: ../../mod/contacts.php:507
-msgid "Currently archived"
-msgstr "Aktuálně archivován"
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172
+#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325
+#: ../../mod/newmember.php:22
+msgid "Settings"
+msgstr "Nastavení"
 
-#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Skrýt tento kontakt před ostatními"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Nastavit faktor přiblížení pro Earth Layers"
 
-#: ../../mod/contacts.php:508
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
 
-#: ../../mod/contacts.php:509
-msgid "Notification for new posts"
-msgstr "Upozornění na nové příspěvky"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Zarovnání"
 
-#: ../../mod/contacts.php:509
-msgid "Send a notification of every new post of this contact"
-msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Vlevo"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch further information for feeds"
-msgstr "Načítat další informace pro kanál"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Uprostřed"
 
-#: ../../mod/contacts.php:511
-msgid "Disabled"
-msgstr "Zakázáno"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Velikost písma u příspěvků"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information"
-msgstr "Načítat informace"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Velikost písma textů"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information and keywords"
-msgstr "Načítat informace a klíčová slova"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Nastavit barevné schéma"
 
-#: ../../mod/contacts.php:513
-msgid "Blacklisted keywords"
-msgstr "Zakázaná klíčová slova"
+#: ../../index.php:211 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Musíte být přihlášeni pro použití rozšíření."
 
-#: ../../mod/contacts.php:513
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\""
+#: ../../index.php:255 ../../mod/help.php:42
+msgid "Not Found"
+msgstr "Nenalezen"
 
-#: ../../mod/contacts.php:564
-msgid "Suggestions"
-msgstr "Doporučení"
+#: ../../index.php:258 ../../mod/help.php:45
+msgid "Page not found."
+msgstr "Stránka nenalezena"
 
-#: ../../mod/contacts.php:567
-msgid "Suggest potential friends"
-msgstr "Navrhnout potenciální přátele"
+#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Nedostatečné oprávnění"
 
-#: ../../mod/contacts.php:570 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Všechny kontakty"
+#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/group.php:19 ../../mod/delegate.php:12
+#: ../../mod/notifications.php:66 ../../mod/settings.php:20
+#: ../../mod/settings.php:107 ../../mod/settings.php:606
+#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55
+#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10
+#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78
+#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66
+#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140
+#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/profiles.php:165 ../../mod/profiles.php:618
+#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135
+#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55
+#: ../../mod/item.php:169 ../../mod/item.php:185
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/allfriends.php:9
+msgid "Permission denied."
+msgstr "Přístup odmítnut."
 
-#: ../../mod/contacts.php:573
-msgid "Show all contacts"
-msgstr "Zobrazit všechny kontakty"
+#: ../../index.php:427
+msgid "toggle mobile"
+msgstr "přepnout mobil"
 
-#: ../../mod/contacts.php:576
-msgid "Unblocked"
-msgstr "Odblokován"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:30
+#, php-format
+msgid "Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"
+msgstr "Přejete si potvrdit vaši identitu (<tt>%s</tt>) s <tt>%s</tt>"
 
-#: ../../mod/contacts.php:579
-msgid "Only show unblocked contacts"
-msgstr "Zobrazit pouze neblokované kontakty"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:43
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Potvrdit"
 
-#: ../../mod/contacts.php:583
-msgid "Blocked"
-msgstr "Blokován"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:44
+msgid "Do not confirm"
+msgstr "Nepotvrzovat"
 
-#: ../../mod/contacts.php:586
-msgid "Only show blocked contacts"
-msgstr "Zobrazit pouze blokované kontakty"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:48
+msgid "Trust This Site"
+msgstr "Důvěřovat tomuto webu"
 
-#: ../../mod/contacts.php:590
-msgid "Ignored"
-msgstr "Ignorován"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:53
+msgid "No Identifier Sent"
+msgstr "Nezaslán žádný identifikátor"
 
-#: ../../mod/contacts.php:593
-msgid "Only show ignored contacts"
-msgstr "Zobrazit pouze ignorované kontakty"
+#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5
+msgid "Requested identity don't match logged in user."
+msgstr "Požadovaná identita neodpovídá přihlášenému uživateli"
 
-#: ../../mod/contacts.php:597
-msgid "Archived"
-msgstr "Archivován"
+#: ../../addon-wrk/openidserver/lib/render.php:27
+#, php-format
+msgid "Please wait; you are being redirected to <%s>"
+msgstr "Čekejte prosím, budete přesměrován na <%s>"
 
-#: ../../mod/contacts.php:600
-msgid "Only show archived contacts"
-msgstr "Zobrazit pouze archivované kontakty"
+#: ../../boot.php:749
+msgid "Delete this item?"
+msgstr "Odstranit tuto položku?"
 
-#: ../../mod/contacts.php:604
-msgid "Hidden"
-msgstr "Skrytý"
+#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677
+#: ../../mod/photos.php:1564 ../../mod/photos.php:1608
+#: ../../mod/photos.php:1696 ../../mod/content.php:709
+msgid "Comment"
+msgstr "Okomentovat"
 
-#: ../../mod/contacts.php:607
-msgid "Only show hidden contacts"
-msgstr "Zobrazit pouze skryté kontakty"
+#: ../../boot.php:751 ../../include/contact_widgets.php:205
+#: ../../object/Item.php:390 ../../mod/content.php:606
+msgid "show more"
+msgstr "zobrazit více"
 
-#: ../../mod/contacts.php:655
-msgid "Mutual Friendship"
-msgstr "Vzájemné přátelství"
+#: ../../boot.php:752
+msgid "show fewer"
+msgstr "zobrazit méně"
 
-#: ../../mod/contacts.php:659
-msgid "is a fan of yours"
-msgstr "je Váš fanoušek"
+#: ../../boot.php:1122
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
 
-#: ../../mod/contacts.php:663
-msgid "you are a fan of"
-msgstr "jste fanouškem"
+#: ../../boot.php:1229
+msgid "Create a New Account"
+msgstr "Vytvořit nový účet"
 
-#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Editovat kontakt"
+#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269
+msgid "Register"
+msgstr "Registrovat"
 
-#: ../../mod/contacts.php:702 ../../include/nav.php:177
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Kontakty"
+#: ../../boot.php:1254 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Odhlásit se"
 
-#: ../../mod/contacts.php:706
-msgid "Search your contacts"
-msgstr "Prohledat Vaše kontakty"
+#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12
+msgid "Login"
+msgstr "Přihlásit se"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Zjištění: "
+#: ../../boot.php:1257
+msgid "Nickname or Email address: "
+msgstr "Přezdívka nebo e-mailová adresa:"
 
-#: ../../mod/contacts.php:708 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Najít"
+#: ../../boot.php:1258
+msgid "Password: "
+msgstr "Heslo: "
 
-#: ../../mod/contacts.php:713 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Aktualizace"
+#: ../../boot.php:1259
+msgid "Remember me"
+msgstr "Pamatuj si mne"
 
-#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Odstranit"
+#: ../../boot.php:1262
+msgid "Or login using OpenID: "
+msgstr "Nebo přihlášení pomocí OpenID: "
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Žádný profil"
+#: ../../boot.php:1268
+msgid "Forgot your password?"
+msgstr "Zapomněli jste své heslo?"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Správa identit a / nebo stránek"
+#: ../../boot.php:1269 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Obnovení hesla"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
+#: ../../boot.php:1271
+msgid "Website Terms of Service"
+msgstr "Podmínky použití serveru"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Vyberte identitu pro správu: "
+#: ../../boot.php:1272
+msgid "terms of service"
+msgstr "podmínky použití"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Příspěvek úspěšně odeslán"
+#: ../../boot.php:1274
+msgid "Website Privacy Policy"
+msgstr "Pravidla ochrany soukromí serveru"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Nedostatečné oprávnění"
+#: ../../boot.php:1275
+msgid "privacy policy"
+msgstr "Ochrana soukromí"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Neplatný identifikátor profilu."
+#: ../../boot.php:1408
+msgid "Requested account is not available."
+msgstr "Požadovaný účet není dostupný."
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor viditelnosti profilu "
+#: ../../boot.php:1447 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Požadovaný profil není k dispozici."
 
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profil"
+#: ../../boot.php:1490 ../../boot.php:1624
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Upravit profil"
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Klikněte na kontakt pro přidání nebo odebrání"
+#: ../../boot.php:1557 ../../include/contact_widgets.php:10
+#: ../../mod/suggest.php:90 ../../mod/match.php:58
+msgid "Connect"
+msgstr "Spojit"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Viditelný pro"
+#: ../../boot.php:1589
+msgid "Message"
+msgstr "Zpráva"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
+#: ../../boot.php:1595 ../../include/nav.php:175
+msgid "Profiles"
+msgstr "Profily"
 
-#: ../../mod/display.php:82 ../../mod/display.php:284
-#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15
-#: ../../include/items.php:4516
-msgid "Item not found."
-msgstr "Položka nenalezena."
+#: ../../boot.php:1595
+msgid "Manage/edit profiles"
+msgstr "Spravovat/upravit profily"
 
-#: ../../mod/display.php:212 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Veřejný přístup odepřen."
+#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804
+msgid "Change profile photo"
+msgstr "Změnit profilovou fotografii"
 
-#: ../../mod/display.php:332 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Přístup na tento profil byl omezen."
+#: ../../boot.php:1601 ../../mod/profiles.php:805
+msgid "Create New Profile"
+msgstr "Vytvořit nový profil"
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "Položka byla odstraněna."
+#: ../../boot.php:1611 ../../mod/profiles.php:816
+msgid "Profile Image"
+msgstr "Profilový obrázek"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Vítejte na Friendica"
+#: ../../boot.php:1614 ../../mod/profiles.php:818
+msgid "visible to everybody"
+msgstr "viditelné pro všechny"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Seznam doporučení pro nového člena"
+#: ../../boot.php:1615 ../../mod/profiles.php:819
+msgid "Edit visibility"
+msgstr "Upravit viditelnost"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
+#: ../../boot.php:1637 ../../include/event.php:40
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471
+#: ../../mod/directory.php:136
+msgid "Location:"
+msgstr "Místo:"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Začínáme"
+#: ../../boot.php:1639 ../../include/profile_advanced.php:17
+#: ../../mod/directory.php:138
+msgid "Gender:"
+msgstr "Pohlaví:"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Prohlídka Friendica "
+#: ../../boot.php:1642 ../../include/profile_advanced.php:37
+#: ../../mod/directory.php:140
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."
+#: ../../boot.php:1644 ../../include/profile_advanced.php:48
+#: ../../mod/directory.php:142
+msgid "Homepage:"
+msgstr "Domácí stránka:"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1104
-#: ../../mod/admin.php:1325 ../../mod/settings.php:85
-#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Nastavení"
+#: ../../boot.php:1646 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:144
+msgid "About:"
+msgstr "O mě:"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Navštivte své nastavení"
+#: ../../boot.php:1711
+msgid "Network:"
+msgstr "Síť:"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."
+#: ../../boot.php:1743 ../../boot.php:1829
+msgid "g A l F d"
+msgstr "g A l F d"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."
+#: ../../boot.php:1744 ../../boot.php:1830
+msgid "F d"
+msgstr "d. F"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "Nahrát profilovou fotografii"
+#: ../../boot.php:1789 ../../boot.php:1877
+msgid "[today]"
+msgstr "[Dnes]"
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
+#: ../../boot.php:1801
+msgid "Birthday Reminders"
+msgstr "Připomínka narozenin"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editujte Váš profil"
+#: ../../boot.php:1802
+msgid "Birthdays this week:"
+msgstr "Narozeniny tento týden:"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky."
+#: ../../boot.php:1864
+msgid "[No description]"
+msgstr "[Žádný popis]"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profilová klíčová slova"
+#: ../../boot.php:1888
+msgid "Event Reminders"
+msgstr "Připomenutí událostí"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
+#: ../../boot.php:1889
+msgid "Events this week:"
+msgstr "Události tohoto týdne:"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Probíhá pokus o připojení"
+#: ../../boot.php:2126 ../../include/nav.php:76
+msgid "Status"
+msgstr "Stav"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../boot.php:2129
+msgid "Status Messages and Posts"
+msgstr "Statusové zprávy a příspěvky "
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."
+#: ../../boot.php:2136
+msgid "Profile Details"
+msgstr "Detaily profilu"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."
+#: ../../boot.php:2143 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Fotoalba"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importování emaiů"
+#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Videa"
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
+#: ../../boot.php:2160
+msgid "Events and Calendar"
+msgstr "Události a kalendář"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Navštivte Vaši stránku s kontakty"
+#: ../../boot.php:2164 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Osobní poznámky"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
+#: ../../boot.php:2167
+msgid "Only You Can See This"
+msgstr "Toto můžete vidět jen Vy"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Navštivte lokální adresář Friendica"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Obecné funkčnosti"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Vícenásobné profily"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Nalezení nových lidí"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Schopnost vytvořit vícenásobné profily"
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Nastavení vytváření příspěvků"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Skupiny"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Richtext Editor"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Seskupte si své kontakty"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Povolit richtext editor"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Náhled příspěvku"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Proč nejsou mé příspěvky veřejné?"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
-
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Získání nápovědy"
-
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Navštivte sekci nápovědy"
-
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
-
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Automaticky zmíněná Fóra"
 
-#: ../../mod/openid.php:53
+#: ../../include/features.php:33
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
-
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Přihlášení se nezdařilo."
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Síťové postranní widgety"
 
-#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81
-#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204
-#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Profilové fotografie"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Vyhledávat dle Data"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Nepodařilo se snížit velikost obrázku [%s]."
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Možnost označit příspěvky dle časového intervalu"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Skupinový Filtr"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Obrázek nelze zpracovat "
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Obrázek překročil limit velikosti %d"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Síťový Filtr"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Obrázek není možné zprocesovat"
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Nahrát soubor:"
+#: ../../include/features.php:42 ../../mod/network.php:194
+#: ../../mod/search.php:30
+msgid "Saved Searches"
+msgstr "Uložená hledání"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Vybrat profil:"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Uložit kritéria vyhledávání pro znovupoužití"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Nahrát"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Síťové záložky"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "nebo"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Osobní síťový záložka "
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "přeskočit tento krok "
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "Vybrat fotografii z Vašich fotoalb"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nová záložka síť"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Oříznout obrázek"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "záložka Síťové sdílené odkazy "
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Editace dokončena"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Obrázek byl úspěšně nahrán."
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Nástroje Příspěvků/Komentářů"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Nahrání obrázku selhalo."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Násobné mazání"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1968 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "fotografie"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Označit a smazat více "
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "Stav"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Editovat Odeslané příspěvky"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s následuje %3$s uživatele %2$s"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Štítek odstraněn"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Štítkování"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Odebrat štítek položky"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Vyberte štítek k odebrání: "
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Kategorie příspěvků"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Odstranit"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Přidat kategorie k Vašim příspěvkům"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Uložit do složky:"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:104
+msgid "Saved Folders"
+msgstr "Uložené složky"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- vyber -"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Možnost řadit příspěvky do složek"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:956
-msgid "Save"
-msgstr "Uložit"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Označit příspěvky jako neoblíbené"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt přidán"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Nelze nalézt původní příspěvek."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Příspěvky s hvězdou"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Prázdný příspěvek odstraněn."
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Možnost označit příspěvky s indikátorem hvězdy"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Fotografie na zdi"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Utlumit upozornění na přísvěvky"
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Chyba systému. Příspěvek nebyl uložen."
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Možnost stlumit upozornění pro vlákno"
 
-#: ../../mod/item.php:964
+#: ../../include/items.php:2307 ../../include/datetime.php:477
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
+msgid "%s's birthday"
+msgstr "%s má narozeniny"
 
-#: ../../mod/item.php:966
+#: ../../include/items.php:2308 ../../include/datetime.php:478
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Můžete je navštívit online na adrese %s"
-
-#: ../../mod/item.php:967
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
+msgid "Happy Birthday %s"
+msgstr "Veselé narozeniny %s"
 
-#: ../../mod/item.php:971
-#, php-format
-msgid "%s posted an update."
-msgstr "%s poslal aktualizaci."
+#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
+#: ../../mod/dfrn_confirm.php:752
+msgid "[Name Withheld]"
+msgstr "[Jméno odepřeno]"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Skupina vytvořena."
+#: ../../include/items.php:4619 ../../mod/admin.php:169
+#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284
+#: ../../mod/display.php:503
+msgid "Item not found."
+msgstr "Položka nenalezena."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Nelze vytvořit skupinu."
+#: ../../include/items.php:4658
+msgid "Do you really want to delete this item?"
+msgstr "Opravdu chcete smazat tuto položku?"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Skupina nenalezena."
-
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Název skupiny byl změněn."
+#: ../../include/items.php:4660 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1021 ../../mod/settings.php:1029
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1038
+#: ../../mod/settings.php:1044 ../../mod/settings.php:1050
+#: ../../mod/settings.php:1056 ../../mod/settings.php:1086
+#: ../../mod/settings.php:1087 ../../mod/settings.php:1088
+#: ../../mod/settings.php:1089 ../../mod/settings.php:1090
+#: ../../mod/contacts.php:341 ../../mod/register.php:233
+#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+#: ../../mod/profiles.php:661 ../../mod/profiles.php:664
+msgid "Yes"
+msgstr "Ano"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Uložit Skupinu"
+#: ../../include/items.php:4663 ../../include/conversation.php:1128
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/contacts.php:344 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32
+#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/message.php:212
+msgid "Cancel"
+msgstr "Zrušit"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Vytvořit skupinu kontaktů / přátel."
+#: ../../include/items.php:4881
+msgid "Archives"
+msgstr "Archív"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Název skupiny: "
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Skupina odstraněna. "
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Defaultní soukromá skrupina pro nové kontakty."
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Nelze odstranit skupinu."
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Všichni"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Editor skupin"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "editovat"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Členové"
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Skupiny"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Musíte být přihlášeni pro použití rozšíření."
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editovat skupinu"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Aplikace"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Vytvořit novou skupinu"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Žádné nainstalované aplikace."
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakty, které nejsou v žádné skupině"
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
-#: ../../mod/profiles.php:630
-msgid "Profile not found."
-msgstr "Profil nenalezen"
+#: ../../include/group.php:275 ../../mod/network.php:195
+msgid "add"
+msgstr "přidat"
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "Kontakt nenalezen."
+#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926
+#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955
+#: ../../include/Photo.php:933 ../../include/Photo.php:948
+#: ../../include/Photo.php:955 ../../include/Photo.php:977
+#: ../../include/message.php:144 ../../mod/wall_upload.php:169
+#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
+#: ../../mod/item.php:485
+msgid "Wall Photos"
+msgstr "Fotografie na zdi"
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."
+#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Přidat nový kontakt"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Neočekávaná odpověď od vzdáleného serveru:"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Zadejte adresu nebo umístění webu"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Potvrzení úspěšně dokončena."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Vzdálený server oznámil:"
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "Pozvánka %d k dispozici"
+msgstr[1] "Pozvánky %d k dispozici"
+msgstr[2] "Pozvánky %d k dispozici"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Nalézt lidi"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Žádost o propojení selhala nebo byla zrušena."
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Zadejte jméno nebo zájmy"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Nelze nastavit fotografii kontaktu."
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Připojit / Následovat"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s je nyní přítel s %2$s"
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Příklady: Robert Morgenstein, rybaření"
 
-#: ../../mod/dfrn_confirm.php:571
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pro '%s' nenalezen žádný uživatelský záznam "
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
+#: ../../mod/directory.php:63
+msgid "Find"
+msgstr "Najít"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat."
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Náhodný Profil"
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Sítě"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách."
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Všechny sítě"
 
-#: ../../mod/dfrn_confirm.php:627
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "V adresáři není k dispozici veřejný klíč pro URL %s."
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Všechno"
 
-#: ../../mod/dfrn_confirm.php:647
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Kategorie"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému."
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d sdílený kontakt"
+msgstr[1] "%d sdílených kontaktů"
+msgstr[2] "%d sdílených kontaktů"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "Nelze aktualizovat Váš profil v našem systému"
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Friendica Notifikace"
 
-#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:4008
-msgid "[Name Withheld]"
-msgstr "[Jméno odepřeno]"
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Děkujeme, "
 
-#: ../../mod/dfrn_confirm.php:797
+#: ../../include/enotify.php:23
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s se připojil k %2$s"
+msgid "%s Administrator"
+msgstr "%s Administrátor"
 
-#: ../../mod/profile.php:21 ../../boot.php:1458
-msgid "Requested profile is not available."
-msgstr "Požadovaný profil není k dispozici."
+#: ../../include/enotify.php:33 ../../include/delivery.php:467
+#: ../../include/notifier.php:796
+msgid "noreply"
+msgstr "neodpovídat"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipy pro nové členy"
+#: ../../include/enotify.php:64
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Není vybráno žádné video"
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s"
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Přístup k této položce je omezen."
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s."
 
-#: ../../mod/videos.php:301 ../../include/text.php:1405
-msgid "View Video"
-msgstr "Zobrazit video"
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s Vám poslal %2$s."
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Zobrazit album"
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "soukromá zpráva"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Aktuální Videa"
+#: ../../include/enotify.php:72
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Nahrát nová videa"
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../include/enotify.php:131
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s označen uživatelem %2$s %3$s s %4$s"
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Návrhy přátelství odeslány "
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Navrhněte přátelé"
+#: ../../include/enotify.php:149
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s"
 
-#: ../../mod/fsuggest.php:99
+#: ../../include/enotify.php:150
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Navrhněte přátelé pro uživatele %s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Nenalezen žádný platný účet."
+#: ../../include/enotify.php:153 ../../include/enotify.php:168
+#: ../../include/enotify.php:181 ../../include/enotify.php:194
+#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"
 
-#: ../../mod/lostpass.php:42
+#: ../../include/enotify.php:162
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s"
 
-#: ../../mod/lostpass.php:53
+#: ../../include/enotify.php:164
 #, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2$s\n\t\tPřihlašovací jméno:\t%3$s"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]"
 
-#: ../../mod/lostpass.php:72
+#: ../../include/enotify.php:175
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Na %s bylo zažádáno o resetování hesla"
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Upozornění] %s Vás označil"
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s Vás označil na %2$s"
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1280
-msgid "Password Reset"
-msgstr "Obnovení hesla"
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]Vás označil[/url]."
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Vaše heslo bylo na Vaše přání resetováno."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notify] %s nasdílel nový příspěvek"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Někdo Vám napsal na Vaši profilovou stránku"
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s nasdílel nový příspěvek na %2$s"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Uložte si nebo zkopírujte nové heslo - a pak"
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]."
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "klikněte zde pro přihlášení"
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s Vás šťouchnul na %2$s"
 
-#: ../../mod/lostpass.php:125
+#: ../../include/enotify.php:204
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tDrahý %1$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t"
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]."
 
-#: ../../mod/lostpass.php:131
+#: ../../include/enotify.php:219
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1$s\n\t\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\t\tHeslo:\t%3$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce  nastavení účtu poté, co se přihlásíte.\n\t\t\t"
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Upozornění] %s označil Váš příspěvek"
 
-#: ../../mod/lostpass.php:147
+#: ../../include/enotify.php:220
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Vaše heslo bylo změněno na %s"
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s označil Váš příspěvek na %2$s"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Zapomněli jste heslo?"
+#: ../../include/enotify.php:221
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]"
 
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Upozornění] Obdrženo přestavení"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Přezdívka nebo e-mail: "
+#: ../../include/enotify.php:233
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Reset"
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s."
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s má rád %2$s' na %3$s"
+msgid "You may visit their profile at %s"
+msgstr "Můžete navštívit jejich profil na %s"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../include/enotify.php:239
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s nemá rád %2$s na %3$s"
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} chce být Vaším přítelem"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} vám poslal zprávu"
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "uživatel %1$s sdílí s vámi ma %2$s"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} požaduje registraci"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica:Upozornění] Máte nového následovníka"
 
-#: ../../mod/ping.php:256
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} komentoval příspěvek uživatele %s"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Máte nového následovníka na %2$s : %1$s"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} má rád příspěvek uživatele %s"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
 
-#: ../../mod/ping.php:266
+#: ../../include/enotify.php:271
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} nemá rád příspěvek uživatele %s"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s"
 
-#: ../../mod/ping.php:271
+#: ../../include/enotify.php:272
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} se skamarádil s %s"
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s."
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} zasláno"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Jméno:"
 
-#: ../../mod/ping.php:281
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Foto:"
+
+#: ../../include/enotify.php:281
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} označen %s' příspěvek s #%s"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} vás zmínil v příspěvku"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica:Upozornění] Spojení akceptováno"
 
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Žádné kontakty."
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s"
 
-#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
-msgid "View Contacts"
-msgstr "Zobrazit kontakty"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]."
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Neplatný identifikátor požadavku."
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Odstranit"
+#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Prosím navštivte %s  pokud chcete změnit tento vztah."
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Systém"
+#: ../../include/enotify.php:307
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:145
-msgid "Network"
-msgstr "Síť"
+#: ../../include/enotify.php:309
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Osobní"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Systém Friendica :Upozornění] registrační požadavek"
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Domů"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:154
-msgid "Introductions"
-msgstr "Představení"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'."
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zobrazit ignorované žádosti"
+#: ../../include/enotify.php:327
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Skrýt ignorované žádosti"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Typ oznámení: "
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1063
+#: ../../include/api.php:1065
+msgid "User not found."
+msgstr "Uživatel nenalezen"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Návrh přátelství"
+#: ../../include/api.php:770
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
 
-#: ../../mod/notifications.php:152
+#: ../../include/api.php:789
 #, php-format
-msgid "suggested by %s"
-msgstr "navrhl %s"
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Zveřejnit aktivitu nového přítele."
+#: ../../include/api.php:808
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "je-li použitelné"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Není tu žádný status s tímto id."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "Schválit"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr "Nemáme žádnou konverzaci s tímto id."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Vaši údajní známí: "
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr "Neplatný požadavek."
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ano"
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr "Neplatná položka."
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "ne"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr "Neplatná akce"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Schválit jako: "
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr "DB chyba"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Přítel"
+#: ../../include/network.php:890
+msgid "view full size"
+msgstr "zobrazit v plné velikosti"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Sdílené"
+#: ../../include/Scrape.php:608
+msgid " on Last.fm"
+msgstr " na Last.fm"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fanoušek / obdivovatel"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
+msgid "Full Name:"
+msgstr "Celé jméno:"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Přítel / žádost o připojení"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nový následovník"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Žádné představení."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Narozeniny:"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:155
-msgid "Notifications"
-msgstr "Upozornění"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Věk:"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "%s liked %s's post"
-msgstr "Uživateli %s se líbí příspěvek uživatele %s"
+msgid "for %1$d %2$s"
+msgstr "pro %1$d %2$s"
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714
+msgid "Sexual Preference:"
+msgstr "Sexuální preference:"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s se nyní přátelí s %s"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716
+msgid "Hometown:"
+msgstr "Rodné město"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s vytvořil nový příspěvek"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Štítky:"
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s okomentoval příspěvek uživatele %s'"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717
+msgid "Political Views:"
+msgstr "Politické přesvědčení:"
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Žádné další síťové upozornění."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Náboženství:"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Upozornění Sítě"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Koníčky/zájmy:"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Žádné další systémová upozornění."
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721
+msgid "Likes:"
+msgstr "Líbí se:"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Systémová upozornění"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722
+msgid "Dislikes:"
+msgstr "Nelibí se:"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Žádné další osobní upozornění."
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktní informace a sociální sítě:"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Osobní upozornění"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Hudební vkus:"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Žádné další domácí upozornění."
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Knihy, literatura:"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Upozornění na vstupní straně"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televize:"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Zdrojový text (bbcode):"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/tanec/kultura/zábava:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Láska/romance"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Zdrojový vstup: "
-
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (raw HTML): "
-
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
-
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
-
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
-
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
-
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
-
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
-
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Vstupní data (ve formátu Diaspora): "
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Práce/zaměstnání:"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Škola/vzdělávání:"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
 msgid "Nothing new here"
 msgstr "Zde není nic nového"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
 msgid "Clear notifications"
 msgstr "Smazat notifikace"
 
-#: ../../mod/message.php:9 ../../include/nav.php:164
-msgid "New Message"
-msgstr "Nová zpráva"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Konec této relace"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Nevybrán příjemce."
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "Vaše videa"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Nepodařilo se najít kontaktní informace."
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Vaše osobní poznámky"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Zprávu se nepodařilo odeslat."
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Přihlásit se"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Sběr zpráv selhal."
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Domácí stránka"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Zpráva odeslána."
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Vytvořit účet"
 
-#: ../../mod/message.php:182 ../../include/nav.php:161
-msgid "Messages"
-msgstr "Zprávy"
+#: ../../include/nav.php:114 ../../mod/help.php:36
+msgid "Help"
+msgstr "Nápověda"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Opravdu chcete smazat tuto zprávu?"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Nápověda a dokumentace"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Zpráva odstraněna."
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Aplikace"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Konverzace odstraněna."
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Doplňkové aplikace, nástroje, hry"
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Zadejte prosím URL odkaz:"
+#: ../../include/nav.php:119 ../../include/text.php:968
+#: ../../include/text.php:969 ../../mod/search.php:99
+msgid "Search"
+msgstr "Vyhledávání"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Odeslat soukromou zprávu"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Hledání na stránkách tohoto webu"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "Adresát:"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Konverzace na tomto webu"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Předmět:"
+#: ../../include/nav.php:131
+msgid "Conversations on the network"
+msgstr "Konverzace v síti"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Vaše zpráva:"
+#: ../../include/nav.php:133
+msgid "Directory"
+msgstr "Adresář"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Nahrát fotografii"
+#: ../../include/nav.php:133
+msgid "People directory"
+msgstr "Adresář"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Vložit webový odkaz"
+#: ../../include/nav.php:135
+msgid "Information"
+msgstr "Informace"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Čekejte prosím"
+#: ../../include/nav.php:135
+msgid "Information about this friendica instance"
+msgstr "Informace o této instanci Friendica"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Žádné zprávy."
+#: ../../include/nav.php:145 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Síť"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Neznámý odesilatel - %s"
+#: ../../include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Konverzace od Vašich přátel"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Vy a %s"
+#: ../../include/nav.php:146
+msgid "Network Reset"
+msgstr "Síťový Reset"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s a Vy"
+#: ../../include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Načíst stránku Síť bez filtrů"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Odstranit konverzaci"
+#: ../../include/nav.php:154 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Představení"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D M R - g:i A"
+#: ../../include/nav.php:154
+msgid "Friend Requests"
+msgstr "Žádosti přátel"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d zpráva"
-msgstr[1] "%d zprávy"
-msgstr[2] "%d zpráv"
+#: ../../include/nav.php:155 ../../mod/notifications.php:224
+msgid "Notifications"
+msgstr "Upozornění"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Zpráva není k dispozici."
+#: ../../include/nav.php:156
+msgid "See all notifications"
+msgstr "Zobrazit všechny upozornění"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Smazat zprávu"
+#: ../../include/nav.php:157
+msgid "Mark all system notifications seen"
+msgstr "Označit všechny upozornění systému jako přečtené"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
+#: ../../include/nav.php:161 ../../mod/message.php:182
+msgid "Messages"
+msgstr "Zprávy"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Poslat odpověď"
+#: ../../include/nav.php:161
+msgid "Private mail"
+msgstr "Soukromá pošta"
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Vložený obsah - obnovte stránku pro zobrazení]"
+#: ../../include/nav.php:162
+msgid "Inbox"
+msgstr "Doručená pošta"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Nastavení kontaktu změněno"
+#: ../../include/nav.php:163
+msgid "Outbox"
+msgstr "Odeslaná pošta"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Aktualizace kontaktu selhala."
+#: ../../include/nav.php:164 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nová zpráva"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Opravit nastavení kontaktu"
+#: ../../include/nav.php:167
+msgid "Manage"
+msgstr "Spravovat"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
+#: ../../include/nav.php:167
+msgid "Manage other pages"
+msgstr "Spravovat jiné stránky"
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."
+#: ../../include/nav.php:170 ../../mod/settings.php:67
+msgid "Delegations"
+msgstr "Delegace"
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Návrat k editoru kontaktu"
+#: ../../include/nav.php:170 ../../mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Správa delegátů stránky"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr "Žádné zrcadlení"
+#: ../../include/nav.php:172
+msgid "Account settings"
+msgstr "Nastavení účtu"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr "Zrcadlit pro přeposlané příspěvky"
+#: ../../include/nav.php:175
+msgid "Manage/Edit Profiles"
+msgstr "Spravovat/Editovat Profily"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr "Zrcadlit jako mé vlastní příspěvky"
+#: ../../include/nav.php:177
+msgid "Manage/edit friends and contacts"
+msgstr "Spravovat/upravit přátelé a kontakty"
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015
-#: ../../mod/admin.php:1016 ../../mod/admin.php:1029
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
-msgid "Name"
-msgstr "Jméno"
+#: ../../include/nav.php:184 ../../mod/admin.php:130
+msgid "Admin"
+msgstr "Administrace"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Přezdívka účtu"
+#: ../../include/nav.php:184
+msgid "Site setup and configuration"
+msgstr "Nastavení webu a konfigurace"
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
+#: ../../include/nav.php:188
+msgid "Navigation"
+msgstr "Navigace"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL adresa účtu"
+#: ../../include/nav.php:188
+msgid "Site map"
+msgstr "Mapa webu"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "Žádost o přátelství URL"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Klikněte zde pro aktualizaci."
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL adresa potvrzení přátelství"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Tato akce překročí limit nastavené Vaším předplatným."
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "Notifikační URL adresa"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Tato akce není v rámci Vašeho předplatného dostupná."
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Poll/Feed URL adresa"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "Nepovolené URL profilu."
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nové foto z této URL adresy"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Chybí URL adresa."
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr "Remote Self"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr "Zrcadlení správ od tohoto kontaktu"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
 
-#: ../../mod/crepair.php:176
-msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
 
-#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92
-msgid "Login"
-msgstr "Přihlásit se"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Autor nebo jméno nenalezeno"
 
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Příspěvek byl vytvořen"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Této adrese neodpovídá žádné URL prohlížeče."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Přístup odmítnut"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Vyhledávání lidí"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Žádné shody"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Fotografie"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Soubory"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Nepodařilo se získat kontaktní informace."
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty, které nejsou členy skupiny"
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "následující"
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Nastavení téma zobrazení bylo aktualizováno."
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Chyba dekódování uživatelského účtu"
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "Web"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "Uživatelé"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Chyba! Nelze ověřit přezdívku"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Pluginy"
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Uživatel '%s' již na tomto serveru existuje!"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "Témata"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Chyba vytváření uživatele"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "Aktualizace databáze"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Chyba vytváření uživatelského účtu"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "Logy"
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d kontakt nenaimporován"
+msgstr[1] "%d kontaktů nenaimporováno"
+msgstr[2] "%d kontakty nenaimporovány"
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr "vyzkoušet adresu"
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr "vyzkoušet webfinger"
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:133
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/admin.php:130 ../../include/nav.php:184
-msgid "Admin"
-msgstr "Administrace"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Začíná:"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "Funkčnosti rozšíření"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Končí:"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr "diagnostika"
+#: ../../include/Contact.php:119
+msgid "stopped following"
+msgstr "následování zastaveno"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "Registrace uživatele čeká na potvrzení"
+#: ../../include/Contact.php:232 ../../include/conversation.php:881
+msgid "Poke"
+msgstr "Šťouchnout"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "Normální účet"
+#: ../../include/Contact.php:233 ../../include/conversation.php:875
+msgid "View Status"
+msgstr "Zobrazit Status"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "Soapbox účet"
+#: ../../include/Contact.php:234 ../../include/conversation.php:876
+msgid "View Profile"
+msgstr "Zobrazit Profil"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "Komunitní účet / Účet celebrity"
+#: ../../include/Contact.php:235 ../../include/conversation.php:877
+msgid "View Photos"
+msgstr "Zobrazit Fotky"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "Účet s automatickým schvalováním přátel"
+#: ../../include/Contact.php:236 ../../include/Contact.php:259
+#: ../../include/conversation.php:878
+msgid "Network Posts"
+msgstr "Zobrazit Příspěvky sítě"
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "Účet Blogu"
+#: ../../include/Contact.php:237 ../../include/Contact.php:259
+#: ../../include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Editovat Kontakty"
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "Soukromé fórum"
+#: ../../include/Contact.php:238
+msgid "Drop Contact"
+msgstr "Odstranit kontakt"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "Fronty zpráv"
+#: ../../include/Contact.php:239 ../../include/Contact.php:259
+#: ../../include/conversation.php:880
+msgid "Send PM"
+msgstr "Poslat soukromou zprávu"
 
-#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
-#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
-#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
-msgid "Administration"
-msgstr "Administrace"
-
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "Shrnutí"
+#: ../../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\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "Registrovaní uživatelé"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Chybová zpráva je\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "Čekající registrace"
+#: ../../include/dbstructure.php:150
+msgid "Errors encountered creating database tables."
+msgstr "Při vytváření databázových tabulek došlo k chybám."
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "Verze"
+#: ../../include/dbstructure.php:208
+msgid "Errors encountered performing database changes."
+msgstr "Při provádění databázových změn došlo k chybám."
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "Aktivní pluginy"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Různé"
 
-#: ../../mod/admin.php:255
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>"
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "rok"
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "Nastavení webu aktualizováno."
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "měsíc"
 
-#: ../../mod/admin.php:545 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "žádné speciální téma pro mobilní zařízení"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "den"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr "Komunitní stránka neexistuje"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nikdy"
 
-#: ../../mod/admin.php:563
-msgid "Public postings from users of this site"
-msgstr "Počet veřejných příspěvků od uživatele na této stránce"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "méně než před sekundou"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
-msgstr "Globální komunitní stránka"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "let"
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr "Při obdržení příspěvku"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "měsíců"
 
-#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Často"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "týdnem"
 
-#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "každou hodinu"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "týdny"
 
-#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Dvakrát denně"
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "dnů"
 
-#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "denně"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "hodina"
 
-#: ../../mod/admin.php:579
-msgid "Multi user instance"
-msgstr "Více uživatelská instance"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "hodin"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "Uzavřeno"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minuta"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "Vyžaduje schválení"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minut"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "Otevřená"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "sekunda"
 
-#: ../../mod/admin.php:608
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "sekund"
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "Vyžadovat u všech odkazů použití SSL"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "před %1$d %2$s"
 
-#: ../../mod/admin.php:610
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[bez předmětu]"
 
-#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358
-#: ../../mod/admin.php:1445 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "Uložit Nastavení"
+#: ../../include/delivery.php:456 ../../include/notifier.php:786
+msgid "(no subject)"
+msgstr "(Bez předmětu)"
 
-#: ../../mod/admin.php:621 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Registrace"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Neznámé | Nezařazeno"
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "Nahrání souborů"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Okamžitě blokovat "
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "Politiky"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "pochybný, spammer, self-makerter"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "Pokročilé"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Znám ho ale, ale bez rozhodnutí"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "Výkonnost"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, pravděpodobně neškodný"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Renomovaný, má mou důvěru"
 
-#: ../../mod/admin.php:629
-msgid "Site name"
-msgstr "Název webu"
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
+msgid "Frequently"
+msgstr "Často"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr "Jméno hostitele (host name)"
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
+msgid "Hourly"
+msgstr "každou hodinu"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
-msgstr "Email ddesílatele"
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
+msgid "Twice daily"
+msgstr "Dvakrát denně"
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "Banner/logo"
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
+msgid "Daily"
+msgstr "denně"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
-msgstr "Ikona zkratky"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Týdenně"
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr "Dotyková ikona"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Měsíčně"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr "Dodatečné informace"
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:635
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/admin.php:636
-msgid "System language"
-msgstr "Systémový jazyk"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "Grafická šablona systému "
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../mod/admin.php:637
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
+#: ../../mod/dfrn_request.php:838
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "Systémové téma zobrazení pro mobilní zařízení"
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "Téma zobrazení pro mobilní zařízení"
-
-#: ../../mod/admin.php:639
-msgid "SSL link policy"
-msgstr "Politika SSL odkazů"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/admin.php:639
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Určuje, zda-li budou generované odkazy používat SSL"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/admin.php:640
-msgid "Force SSL"
-msgstr "Vynutit SSL"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/admin.php:640
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení."
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/admin.php:641
-msgid "Old style 'Share'"
-msgstr "Sdílení \"postaru\""
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:641
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky."
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "skrýt nápovědu z navigačního menu"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/admin.php:642
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora konektor"
 
-#: ../../mod/admin.php:643
-msgid "Single user instance"
-msgstr "Jednouživatelská instance"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../mod/admin.php:643
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "Maximální velikost obrázků"
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:486
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s je nyní přítel s %2$s"
 
-#: ../../mod/admin.php:644
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Sdílení oznámení ze sítě Diaspora"
 
-#: ../../mod/admin.php:645
-msgid "Maximum image length"
-msgstr "Maximální velikost obrázků"
+#: ../../include/diaspora.php:2444
+msgid "Attachments:"
+msgstr "Přílohy:"
 
-#: ../../mod/admin.php:645
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"
+#: ../../include/conversation.php:140 ../../mod/like.php:168
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s nemá rád %2$s na %3$s"
 
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "JPEG kvalita obrázku"
+#: ../../include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s šťouchnul %2$s"
 
-#: ../../mod/admin.php:646
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."
+#: ../../include/conversation.php:226 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s je právě %2$s"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "Politika registrace"
+#: ../../include/conversation.php:265 ../../mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s označen uživatelem %2$s %3$s s %4$s"
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "Maximální počet denních registrací"
+#: ../../include/conversation.php:290
+msgid "post/item"
+msgstr "příspěvek/položka"
 
-#: ../../mod/admin.php:649
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."
+#: ../../include/conversation.php:291
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného"
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "Registrace textu"
+#: ../../include/conversation.php:612 ../../object/Item.php:129
+#: ../../mod/photos.php:1653 ../../mod/content.php:437
+#: ../../mod/content.php:740
+msgid "Select"
+msgstr "Vybrat"
 
-#: ../../mod/admin.php:650
-msgid "Will be displayed prominently on the registration page."
-msgstr "Bude zřetelně zobrazeno na registrační stránce."
+#: ../../include/conversation.php:613 ../../object/Item.php:130
+#: ../../mod/group.php:171 ../../mod/settings.php:682
+#: ../../mod/contacts.php:733 ../../mod/admin.php:1007
+#: ../../mod/photos.php:1654 ../../mod/content.php:438
+#: ../../mod/content.php:741
+msgid "Delete"
+msgstr "Odstranit"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "Účet je opuštěn po x dnech"
+#: ../../include/conversation.php:653 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../mod/content.php:471
+#: ../../mod/content.php:852 ../../mod/content.php:853
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Zobrazit profil uživatele %s na %s"
 
-#: ../../mod/admin.php:651
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
+#: ../../include/conversation.php:665 ../../object/Item.php:316
+msgid "Categories:"
+msgstr "Kategorie:"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "Povolené domény přátel"
+#: ../../include/conversation.php:666 ../../object/Item.php:317
+msgid "Filed under:"
+msgstr "Vyplněn pod:"
 
-#: ../../mod/admin.php:652
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
+#: ../../include/conversation.php:673 ../../object/Item.php:340
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#, php-format
+msgid "%s from %s"
+msgstr "%s od %s"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "Povolené e-mailové domény"
+#: ../../include/conversation.php:689 ../../mod/content.php:497
+msgid "View in context"
+msgstr "Pohled v kontextu"
 
-#: ../../mod/admin.php:653
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
+#: ../../include/conversation.php:691 ../../include/conversation.php:1108
+#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../mod/editpost.php:124 ../../mod/photos.php:1545
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/content.php:499 ../../mod/content.php:883
+msgid "Please wait"
+msgstr "Čekejte prosím"
 
-#: ../../mod/admin.php:654
-msgid "Block public"
-msgstr "Blokovat veřejnost"
+#: ../../include/conversation.php:771
+msgid "remove"
+msgstr "odstranit"
 
-#: ../../mod/admin.php:654
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni."
+#: ../../include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Smazat vybrané položky"
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "Publikovat"
+#: ../../include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Následovat vlákno"
 
-#: ../../mod/admin.php:655
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s likes this."
+msgstr "%s se to líbí."
 
-#: ../../mod/admin.php:656
-msgid "Global directory update URL"
-msgstr "aktualizace URL adresy Globálního adresáře "
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s se to nelíbí."
 
-#: ../../mod/admin.php:656
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d lidem</span> se to líbí"
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "Povolit vícevláknové zpracování obsahu"
+#: ../../include/conversation.php:951
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d lidem</span> se to nelíbí"
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."
+#: ../../include/conversation.php:965
+msgid "and"
+msgstr "a"
 
-#: ../../mod/admin.php:658
-msgid "Private posts by default for new users"
-msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
+#: ../../include/conversation.php:971
+#, php-format
+msgid ", and %d other people"
+msgstr ", a %d dalších lidí"
 
-#: ../../mod/admin.php:658
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s like this."
+msgstr "%s se to líbí."
 
-#: ../../mod/admin.php:659
-msgid "Don't include post content in email notifications"
-msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "%s se to nelíbí."
 
-#: ../../mod/admin.php:659
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Viditelné pro <strong>všechny</strong>"
 
-#: ../../mod/admin.php:660
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+msgid "Please enter a link URL:"
+msgstr "Zadejte prosím URL odkaz:"
 
-#: ../../mod/admin.php:660
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Prosím zadejte URL adresu videa:"
 
-#: ../../mod/admin.php:661
-msgid "Don't embed private images in posts"
-msgstr "Nepovolit přidávání soukromých správ v příspěvcích"
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Prosím zadejte URL adresu zvukového záznamu:"
 
-#: ../../mod/admin.php:661
-msgid ""
-"Don't replace locally-hosted private photos in posts with an embedded copy "
-"of the image. This means that contacts who receive posts containing private "
-"photos will have to authenticate and load each image, which may take a "
-"while."
-msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Štítek:"
 
-#: ../../mod/admin.php:662
-msgid "Allow Users to set remote_self"
-msgstr "Umožnit uživatelům nastavit "
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Uložit do složky:"
 
-#: ../../mod/admin.php:662
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
+#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Kde právě jste?"
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "Blokovat více registrací"
+#: ../../include/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Smazat položku(y)?"
 
-#: ../../mod/admin.php:663
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."
+#: ../../include/conversation.php:1050
+msgid "Post to Email"
+msgstr "Poslat příspěvek na e-mail"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "podpora OpenID"
+#: ../../include/conversation.php:1055
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Kontektory deaktivovány, od \"%s\" je aktivován."
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "Podpora OpenID pro registraci a přihlašování."
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1033
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "kontrola úplného jména"
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1544
+msgid "Share"
+msgstr "Sdílet"
 
-#: ../../mod/admin.php:665
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."
+#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154
+#: ../../mod/editpost.php:110 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Nahrát fotografii"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Regulární výrazy"
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "nahrát fotky"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Použít PHP UTF8 regulární výrazy."
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Přiložit soubor"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
-msgstr "Styl komunitní stránky"
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "přidat soubor"
 
-#: ../../mod/admin.php:667
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server."
+#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155
+#: ../../mod/editpost.php:114 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "Vložit webový odkaz"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr "Počet příspěvků na komunitní stránce"
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "webový odkaz"
 
-#: ../../mod/admin.php:668
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')"
+#: ../../include/conversation.php:1096 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Zadejte odkaz na video"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "Zapnout podporu OStatus"
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "odkaz na video"
 
-#: ../../mod/admin.php:669
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."
+#: ../../include/conversation.php:1098 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Zadejte odkaz na zvukový záznam"
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr "Interval dokončení konverzace OStatus"
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "odkaz na audio"
 
-#: ../../mod/admin.php:670
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."
+#: ../../include/conversation.php:1100 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Nastavte vaši polohu"
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "Povolit podporu Diaspora"
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "nastavit místo"
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
+#: ../../include/conversation.php:1102 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Odstranit adresu v prohlížeči"
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "Povolit pouze Friendica kontakty"
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "vymazat místo"
 
-#: ../../mod/admin.php:672
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Nastavit titulek"
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "Ověřit SSL"
+#: ../../include/conversation.php:1107 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Kategorie (čárkou oddělený seznam)"
 
-#: ../../mod/admin.php:673
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
+#: ../../include/conversation.php:1109 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Nastavení oprávnění"
 
-#: ../../mod/admin.php:674
-msgid "Proxy user"
-msgstr "Proxy uživatel"
+#: ../../include/conversation.php:1110
+msgid "permissions"
+msgstr "oprávnění"
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "Proxy URL adresa"
+#: ../../include/conversation.php:1118 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "skrytá kopie: e-mailové adresy"
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "čas síťového spojení vypršelo (timeout)"
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Veřejný příspěvek"
 
-#: ../../mod/admin.php:676
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Příklad: bob@example.com, mary@example.com"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "Interval doručování"
+#: ../../include/conversation.php:1125 ../../object/Item.php:687
+#: ../../mod/editpost.php:145 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../mod/content.php:719
+msgid "Preview"
+msgstr "Náhled"
 
-#: ../../mod/admin.php:677
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery."
+#: ../../include/conversation.php:1134
+msgid "Post to Groups"
+msgstr "Zveřejnit na Groups"
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "Dotazovací interval"
+#: ../../include/conversation.php:1135
+msgid "Post to Contacts"
+msgstr "Zveřejnit na Groups"
 
-#: ../../mod/admin.php:678
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."
+#: ../../include/conversation.php:1136
+msgid "Private post"
+msgstr "Soukromý příspěvek"
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "Maximální průměrné zatížení"
+#: ../../include/text.php:297
+msgid "newer"
+msgstr "novější"
 
-#: ../../mod/admin.php:679
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"
+#: ../../include/text.php:299
+msgid "older"
+msgstr "starší"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "Použít fulltextový vyhledávací stroj MySQL"
+#: ../../include/text.php:304
+msgid "prev"
+msgstr "předchozí"
 
-#: ../../mod/admin.php:681
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"
+#: ../../include/text.php:306
+msgid "first"
+msgstr "první"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr "Potlačit Jazyk"
+#: ../../include/text.php:338
+msgid "last"
+msgstr "poslední"
 
-#: ../../mod/admin.php:682
-msgid "Suppress language information in meta information about a posting."
-msgstr "Potlačit jazykové informace v meta informacích o příspěvcích"
+#: ../../include/text.php:341
+msgid "next"
+msgstr "další"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr "Potlačit štítky"
+#: ../../include/text.php:396
+msgid "Loading more entries..."
+msgstr "Načítání více záznamů..."
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Potlačit zobrazení listu hastagů na konci zprávy."
+#: ../../include/text.php:397
+msgid "The end"
+msgstr "Konec"
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "Cesta k položkám vyrovnávací paměti"
+#: ../../include/text.php:870
+msgid "No contacts"
+msgstr "Žádné kontakty"
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "Doba platnosti vyrovnávací paměti v sekundách"
+#: ../../include/text.php:879
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontaktů"
+msgstr[2] "%d kontaktů"
 
-#: ../../mod/admin.php:685
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1."
+#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
+msgid "View Contacts"
+msgstr "Zobrazit kontakty"
 
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr "Maximální počet komentářů k příspěvku"
+#: ../../include/text.php:971 ../../mod/editpost.php:109
+#: ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Uložit"
 
-#: ../../mod/admin.php:686
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."
+#: ../../include/text.php:1020
+msgid "poke"
+msgstr "šťouchnout"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "Cesta k souboru zámku"
+#: ../../include/text.php:1020
+msgid "poked"
+msgstr "šťouchnut"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "Cesta k dočasným souborům"
+#: ../../include/text.php:1021
+msgid "ping"
+msgstr "cinknout"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "Základní cesta k instalaci"
+#: ../../include/text.php:1021
+msgid "pinged"
+msgstr "cinkut"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr "Vypnutí obrázkové proxy"
+#: ../../include/text.php:1022
+msgid "prod"
+msgstr "pobídnout"
 
-#: ../../mod/admin.php:690
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti."
+#: ../../include/text.php:1022
+msgid "prodded"
+msgstr "pobídnut"
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr "Aktivovat \"old style\" stránkování "
+#: ../../include/text.php:1023
+msgid "slap"
+msgstr "dát facku"
 
-#: ../../mod/admin.php:691
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky."
+#: ../../include/text.php:1023
+msgid "slapped"
+msgstr "být uhozen"
 
-#: ../../mod/admin.php:692
-msgid "Only search in tags"
-msgstr "Hledat pouze ve štítkách"
+#: ../../include/text.php:1024
+msgid "finger"
+msgstr "osahávat"
 
-#: ../../mod/admin.php:692
-msgid "On large systems the text search can slow down the system extremely."
-msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."
+#: ../../include/text.php:1024
+msgid "fingered"
+msgstr "osaháván"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr "Nová výchozí url adresa"
+#: ../../include/text.php:1025
+msgid "rebuff"
+msgstr "odmítnout"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "Aktualizace byla označena jako úspěšná."
+#: ../../include/text.php:1025
+msgid "rebuffed"
+msgstr "odmítnut"
 
-#: ../../mod/admin.php:719
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována."
+#: ../../include/text.php:1039
+msgid "happy"
+msgstr "šťasný"
 
-#: ../../mod/admin.php:722
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "Provádění aktualizace databáze %s skončilo chybou: %s"
+#: ../../include/text.php:1040
+msgid "sad"
+msgstr "smutný"
 
-#: ../../mod/admin.php:734
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Vykonávání %s selhalo s chybou: %s"
+#: ../../include/text.php:1041
+msgid "mellow"
+msgstr "jemný"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Aktualizace %s byla úspěšně aplikována."
+#: ../../include/text.php:1042
+msgid "tired"
+msgstr "unavený"
 
-#: ../../mod/admin.php:741
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."
+#: ../../include/text.php:1043
+msgid "perky"
+msgstr "emergický"
 
-#: ../../mod/admin.php:743
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána."
+#: ../../include/text.php:1044
+msgid "angry"
+msgstr "nazlobený"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "Žádné neúspěšné aktualizace."
+#: ../../include/text.php:1045
+msgid "stupified"
+msgstr "otupen"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr "Ověření struktury databáze"
+#: ../../include/text.php:1046
+msgid "puzzled"
+msgstr "popletený"
 
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "Neúspěšné aktualizace"
+#: ../../include/text.php:1047
+msgid "interested"
+msgstr "zajímavý"
 
-#: ../../mod/admin.php:769
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."
+#: ../../include/text.php:1048
+msgid "bitter"
+msgstr "hořký"
 
-#: ../../mod/admin.php:770
-msgid "Mark success (if update was manually applied)"
-msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"
+#: ../../include/text.php:1049
+msgid "cheerful"
+msgstr "radnostný"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "Pokusit se provést tuto aktualizaci automaticky."
+#: ../../include/text.php:1050
+msgid "alive"
+msgstr "naživu"
 
-#: ../../mod/admin.php:803
-#, 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\tDrahý %1$s,\n\t\t\t\tadministrátor webu %2$s pro Vás vytvořil uživatelský účet."
+#: ../../include/text.php:1051
+msgid "annoyed"
+msgstr "otráven"
 
-#: ../../mod/admin.php:806
-#, 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\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1$s\n\t\t\tpřihlašovací jméno:\t\t%2$s\n\t\t\theslo:\t\t%3$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4$s."
+#: ../../include/text.php:1052
+msgid "anxious"
+msgstr "znepokojený"
 
-#: ../../mod/admin.php:838 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Registrační údaje pro %s"
+#: ../../include/text.php:1053
+msgid "cranky"
+msgstr "mrzutý"
 
-#: ../../mod/admin.php:850
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s uživatel blokován/odblokován"
-msgstr[1] "%s uživatelů blokováno/odblokováno"
-msgstr[2] "%s uživatelů blokováno/odblokováno"
+#: ../../include/text.php:1054
+msgid "disturbed"
+msgstr "vyrušen"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s uživatel smazán"
-msgstr[1] "%s uživatelů smazáno"
-msgstr[2] "%s uživatelů smazáno"
+#: ../../include/text.php:1055
+msgid "frustrated"
+msgstr "frustrovaný"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Uživatel '%s' smazán"
+#: ../../include/text.php:1056
+msgid "motivated"
+msgstr "motivovaný"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Uživatel '%s' odblokován"
+#: ../../include/text.php:1057
+msgid "relaxed"
+msgstr "uvolněný"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Uživatel '%s' blokován"
+#: ../../include/text.php:1058
+msgid "surprised"
+msgstr "překvapený"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "Přidat Uživatele"
+#: ../../include/text.php:1228
+msgid "Monday"
+msgstr "Pondělí"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "Vybrat vše"
+#: ../../include/text.php:1228
+msgid "Tuesday"
+msgstr "Úterý"
 
-#: ../../mod/admin.php:1001
-msgid "User registrations waiting for confirm"
-msgstr "Registrace uživatele čeká na potvrzení"
+#: ../../include/text.php:1228
+msgid "Wednesday"
+msgstr "Středa"
 
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr "Uživatel čeká na trvalé smazání"
+#: ../../include/text.php:1228
+msgid "Thursday"
+msgstr "Čtvrtek"
 
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "Datum žádosti"
+#: ../../include/text.php:1228
+msgid "Friday"
+msgstr "Pátek"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
-#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-mail"
+#: ../../include/text.php:1228
+msgid "Saturday"
+msgstr "Sobota"
 
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "Žádné registrace."
+#: ../../include/text.php:1228
+msgid "Sunday"
+msgstr "Neděle"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "Odmítnout"
+#: ../../include/text.php:1232
+msgid "January"
+msgstr "Ledna"
 
-#: ../../mod/admin.php:1010
-msgid "Site admin"
-msgstr "Site administrátor"
+#: ../../include/text.php:1232
+msgid "February"
+msgstr "Února"
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "Účtu vypršela platnost"
+#: ../../include/text.php:1232
+msgid "March"
+msgstr "Března"
 
-#: ../../mod/admin.php:1014
-msgid "New User"
-msgstr "Nový uživatel"
+#: ../../include/text.php:1232
+msgid "April"
+msgstr "Dubna"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "Datum registrace"
+#: ../../include/text.php:1232
+msgid "May"
+msgstr "Května"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "Datum posledního přihlášení"
+#: ../../include/text.php:1232
+msgid "June"
+msgstr "Června"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "Poslední položka"
+#: ../../include/text.php:1232
+msgid "July"
+msgstr "Července"
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "Smazán od"
+#: ../../include/text.php:1232
+msgid "August"
+msgstr "Srpna"
 
-#: ../../mod/admin.php:1016 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Účet"
+#: ../../include/text.php:1232
+msgid "September"
+msgstr "Září"
 
-#: ../../mod/admin.php:1018
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
+#: ../../include/text.php:1232
+msgid "October"
+msgstr "Října"
 
-#: ../../mod/admin.php:1019
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
+#: ../../include/text.php:1232
+msgid "November"
+msgstr "Listopadu"
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "Jméno nového uživatele"
+#: ../../include/text.php:1232
+msgid "December"
+msgstr "Prosinec"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname"
-msgstr "Přezdívka"
+#: ../../include/text.php:1422 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Zobrazit video"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "Přezdívka nového uživatele."
+#: ../../include/text.php:1454
+msgid "bytes"
+msgstr "bytů"
 
-#: ../../mod/admin.php:1031
-msgid "Email address of the new user."
-msgstr "Emailová adresa nového uživatele."
+#: ../../include/text.php:1478 ../../include/text.php:1490
+msgid "Click to open/close"
+msgstr "Klikněte pro otevření/zavření"
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s zakázán."
+#: ../../include/text.php:1664 ../../include/text.php:1674
+#: ../../mod/events.php:335
+msgid "link to source"
+msgstr "odkaz na zdroj"
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s povolen."
+#: ../../include/text.php:1731
+msgid "Select an alternate language"
+msgstr "Vyběr alternativního jazyka"
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "Zakázat"
+#: ../../include/text.php:1987
+msgid "activity"
+msgstr "aktivita"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "Povolit"
+#: ../../include/text.php:1989 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../mod/content.php:605
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] "komentář"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "Přepnout"
+#: ../../include/text.php:1990
+msgid "post"
+msgstr "příspěvek"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "Autor: "
+#: ../../include/text.php:2158
+msgid "Item filed"
+msgstr "Položka vyplněna"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "Správce: "
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Odhlášen."
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "Nenalezeny žádná témata."
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Přihlášení se nezdařilo."
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "Snímek obrazovky"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[Experimentální]"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "Chybová zpráva byla:"
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[Nepodporováno]"
+#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
+#: ../../include/bbcode.php:1067
+msgid "Image/photo"
+msgstr "Obrázek/fotografie"
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "Nastavení protokolu aktualizováno."
+#: ../../include/bbcode.php:531
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "Vyčistit"
+#: ../../include/bbcode.php:565
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>"
 
-#: ../../mod/admin.php:1452
-msgid "Enable Debugging"
-msgstr "Povolit ladění"
+#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050
+msgid "$1 wrote:"
+msgstr "$1 napsal:"
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "Soubor s logem"
+#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
+msgid "Encrypted content"
+msgstr "Šifrovaný obsah"
 
-#: ../../mod/admin.php:1453
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Vítejte "
 
-#: ../../mod/admin.php:1454
-msgid "Log level"
-msgstr "Úroveň auditu"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Prosím nahrejte profilovou fotografii"
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "Zavřít"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Vítejte zpět "
 
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "Hostitel FTP"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
 
-#: ../../mod/admin.php:1511
-msgid "FTP Path"
-msgstr "Cesta FTP"
+#: ../../include/oembed.php:213
+msgid "Embedded content"
+msgstr "vložený obsah"
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "FTP uživatel"
+#: ../../include/oembed.php:222
+msgid "Embedding disabled"
+msgstr "Vkládání zakázáno"
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "FTP heslo"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Muž"
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Výsledky hledání pro:"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Žena"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Odstranit termín"
-
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Uložená hledání"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "V současné době muž"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "přidat"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "V současné době žena"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Dle komentářů"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Většinou muž"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Řadit podle data komentáře"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Většinou žena"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Dle data"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Řadit podle data příspěvku"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transexuál"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nové"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodit"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Proud aktivit - dle data"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutrál"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Sdílené odkazy"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nespecifikováno"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Zajímavé odkazy"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Jiné"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "S hvězdičkou"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Nerozhodnuto"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Oblíbené přízpěvky"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Muži"
 
-#: ../../mod/network.php:463
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě."
-msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
-msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Ženy"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Žádná taková skupina"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbička"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Skupina je prázdná"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Bez preferencí"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Skupina: "
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuál"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexuál"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Neplatný kontakt."
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "panic/panna"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Přátelé uživatele %s"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Žádní přátelé k zobrazení"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetišista"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Název události a datum začátku jsou vyžadovány."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Hodně"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nesexuální"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editovat událost"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Svobodný"
 
-#: ../../mod/events.php:335 ../../include/text.php:1647
-#: ../../include/text.php:1657
-msgid "link to source"
-msgstr "odkaz na zdroj"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Osamnělý"
 
-#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Události"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Dostupný"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Vytvořit novou událost"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nedostupný"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Předchozí"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Zamilovaný"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Dále"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Zabouchnutý"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "hodina:minuta"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Seznamující se"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Detaily události"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Nevěrný"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány."
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Závislý na sexu"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Událost začíná:"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:289
+#: ../../include/user.php:293
+msgid "Friends"
+msgstr "Přátelé"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Vyžadováno"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Přátelé / výhody"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Datum/čas konce není zadán nebo není relevantní"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Ležérní"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Akce končí:"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Zadaný"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Ženatý/vdaná"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Popis:"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Pomyslně ženatý/vdaná"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Místo:"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partneři"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Název:"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Žijící ve společné domácnosti"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Sdílet tuto událost"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Zvykové právo"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Vybrat"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Šťastný"
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Zobrazit profil uživatele %s na %s"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nehledající"
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
+
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Zrazen"
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Odloučený"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Nestálý"
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Rozvedený(á)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Pomyslně rozvedený"
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Ovdovělý(á)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Nejistý"
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Je to složité"
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Nezajímá"
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Zeptej se mě"
+
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Pozvánka je vyžadována."
+
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Pozvánka nemohla být ověřena."
+
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Neplatný odkaz OpenID"
+
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Zadejte prosím požadované informace."
+
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Použijte prosím kratší jméno."
+
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Jméno je příliš krátké."
+
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
+
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
+
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Neplatná e-mailová adresa."
+
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Tento e-mail nelze použít."
+
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."
+
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
+
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."
+
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
+
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
+
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
+
+#: ../../include/user.php:377
 #, php-format
-msgid "%s from %s"
-msgstr "%s od %s"
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Pohled v kontextu"
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s."
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
+#: ../../include/user.php:413 ../../mod/admin.php:838
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d komentář"
-msgstr[1] "%d komentářů"
-msgstr[2] "%d komentářů"
+msgid "Registration details for %s"
+msgstr "Registrační údaje pro %s"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1972
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] "komentář"
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Viditelné pro všechny"
 
-#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "zobrazit více"
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Tento záznam byl editován"
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
+#: ../../object/Item.php:116 ../../mod/photos.php:1359
+#: ../../mod/content.php:620
 msgid "Private Message"
 msgstr "Soukromá zpráva"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
+#: ../../object/Item.php:120 ../../mod/settings.php:681
+#: ../../mod/content.php:728
+msgid "Edit"
+msgstr "Upravit"
+
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "uložit do složky"
+
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
+msgstr "přidat hvězdu"
+
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
+msgstr "odebrat hvězdu"
+
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "přepnout hvězdu"
+
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
+msgstr "označeno hvězdou"
+
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "ignorovat vlákno"
+
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "přestat ignorovat vlákno"
+
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "přepnout stav Ignorování"
+
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "ignorován"
+
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
+msgstr "přidat štítek"
+
+#: ../../object/Item.php:231 ../../mod/photos.php:1542
+#: ../../mod/content.php:684
 msgid "I like this (toggle)"
 msgstr "Líbí se mi to (přepínač)"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
+#: ../../object/Item.php:231 ../../mod/content.php:684
 msgid "like"
 msgstr "má rád"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/photos.php:1543
+#: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
 msgstr "Nelíbí se mi to (přepínač)"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/content.php:685
 msgid "dislike"
 msgstr "nemá rád"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "Share this"
 msgstr "Sdílet toto"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "share"
 msgstr "sdílí"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
+msgstr "pro"
+
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "přes"
+
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Zeď-na-Zeď"
+
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "přes Zeď-na-Zeď "
+
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d komentář"
+msgstr[1] "%d komentářů"
+msgstr[2] "%d komentářů"
+
+#: ../../object/Item.php:675 ../../mod/photos.php:1562
 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
+#: ../../mod/content.php:707
 msgid "This is you"
 msgstr "Nastavte Vaši polohu"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Okomentovat"
-
-#: ../../mod/content.php:711 ../../object/Item.php:679
+#: ../../object/Item.php:679 ../../mod/content.php:711
 msgid "Bold"
 msgstr "Tučné"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
+#: ../../object/Item.php:680 ../../mod/content.php:712
 msgid "Italic"
 msgstr "Kurzíva"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
+#: ../../object/Item.php:681 ../../mod/content.php:713
 msgid "Underline"
 msgstr "Podrtžené"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
+#: ../../object/Item.php:682 ../../mod/content.php:714
 msgid "Quote"
 msgstr "Citovat"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
+#: ../../object/Item.php:683 ../../mod/content.php:715
 msgid "Code"
 msgstr "Kód"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
+#: ../../object/Item.php:684 ../../mod/content.php:716
 msgid "Image"
 msgstr "Obrázek"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
+#: ../../object/Item.php:685 ../../mod/content.php:717
 msgid "Link"
 msgstr "Odkaz"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
+#: ../../object/Item.php:686 ../../mod/content.php:718
 msgid "Video"
 msgstr "Video"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Náhled"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Položka není k dispozici."
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Upravit"
-
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "přidat hvězdu"
-
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "odebrat hvězdu"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Položka nebyla nalezena."
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "přepnout hvězdu"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "označeno hvězdou"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Nevybrán příjemce."
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "přidat štítek"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Nebylo možné zjistit Vaši domácí lokaci."
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "uložit do složky"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Zprávu se nepodařilo odeslat."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "pro"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Sběr zpráv selhal."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Zeď-na-Zeď"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Zpráva odeslána."
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "přes Zeď-na-Zeď "
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Žádný příjemce."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Odstranit můj účet"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Odeslat soukromou zprávu"
 
-#: ../../mod/removeme.php:47
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
-
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Prosím, zadejte své heslo pro ověření:"
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica Komunikační server - Nastavení"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "Adresát:"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Nelze se připojit k databázi."
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Předmět:"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Nelze vytvořit tabulku."
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Vaše zpráva:"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Vaše databáze Friendica  byla nainstalována."
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Skupina vytvořena."
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Nelze vytvořit skupinu."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Skupina nenalezena."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Testování systému"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Název skupiny byl změněn."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Otestovat znovu"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Uložit Skupinu"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Databázové spojení"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Vytvořit skupinu kontaktů / přátel."
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Název skupiny: "
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Skupina odstraněna. "
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Nelze odstranit skupinu."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Jméno databázového serveru"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Editor skupin"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Přihlašovací jméno k databázi"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Členové"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Heslo k databázovému účtu "
+#: ../../mod/group.php:194 ../../mod/contacts.php:586
+msgid "All Contacts"
+msgstr "Všechny kontakty"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Jméno databáze"
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "Klikněte na kontakt pro přidání nebo odebrání"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Emailová adresa administrátora webu"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Žádní potenciální delegáti stránky nenalezeni."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/delegate.php:132
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Stávající správci stránky"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Nastavení webu"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Stávající delegáti stránky "
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potenciální delegáti"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Odstranit"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Cesta k \"PHP executable\""
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Přidat"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Žádné záznamy."
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Příkazový řádek PHP"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Neplatný identifikátor požadavku."
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:215
+msgid "Discard"
+msgstr "Odstranit"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Nalezena PHP verze:"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:214 ../../mod/contacts.php:455
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:731
+msgid "Ignore"
+msgstr "Ignorovat"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Systém"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Osobní"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Toto je nutné pro fungování doručování zpráv."
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zobrazit ignorované žádosti"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Skrýt ignorované žádosti"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Typ oznámení: "
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Návrh přátelství"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Generovat kriptovací klíče"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "navrhl %s"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "libCurl PHP modul"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:208
+#: ../../mod/contacts.php:525
+msgid "Hide this contact from others"
+msgstr "Skrýt tento kontakt před ostatními"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "GD graphics PHP modul"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Zveřejnit aktivitu nového přítele."
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP modul"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "if applicable"
+msgstr "je-li použitelné"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "mysqli PHP modul"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:212
+#: ../../mod/admin.php:1005
+msgid "Approve"
+msgstr "Schválit"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "mb_string PHP modul"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Vaši údajní známí: "
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite modul"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ano"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "ne"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
+#: ../../mod/notifications.php:182
+msgid ""
+"Shall your connection be bidirectional or not? \"Friend\" implies that you "
+"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
+"you allow to read but you do not want to read theirs. Approve as: "
+msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "
 
-#: ../../mod/install.php:409
+#: ../../mod/notifications.php:185
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
+"Shall your connection be bidirectional or not? \"Friend\" implies that you "
+"allow to read and you subscribe to their posts. \"Sharer\" means that you "
+"allow to read but you do not want to read theirs. Approve as: "
+msgstr "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: "
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
+#: ../../mod/notifications.php:193
+msgid "Friend"
+msgstr "Přítel"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
+#: ../../mod/notifications.php:194
+msgid "Sharer"
+msgstr "Sdílené"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
+#: ../../mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fanoušek / obdivovatel"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
+#: ../../mod/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Přítel / žádost o připojení"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
+#: ../../mod/notifications.php:200
+msgid "New Follower"
+msgstr "Nový následovník"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
+#: ../../mod/notifications.php:221
+msgid "No introductions."
+msgstr "Žádné představení."
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
+#: ../../mod/notifications.php:262 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:482
+#, php-format
+msgid "%s liked %s's post"
+msgstr "Uživateli %s se líbí příspěvek uživatele %s"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php je editovatelné"
+#: ../../mod/notifications.php:272 ../../mod/notifications.php:401
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "Uživateli %s se nelíbí příspěvek uživatele %s"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:416
+#: ../../mod/notifications.php:507
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s se nyní přátelí s %s"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
+#: ../../mod/notifications.php:294 ../../mod/notifications.php:423
+#, php-format
+msgid "%s created a new post"
+msgstr "%s vytvořil nový příspěvek"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
+#: ../../mod/notifications.php:295 ../../mod/notifications.php:424
+#: ../../mod/notifications.php:517
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s okomentoval příspěvek uživatele %s'"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
+#: ../../mod/notifications.php:310
+msgid "No more network notifications."
+msgstr "Žádné další síťové upozornění."
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 je nastaven pro zápis"
+#: ../../mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Upozornění Sítě"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
+#: ../../mod/notifications.php:340 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Žádné další systémová upozornění."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "Url rewrite je funkční."
+#: ../../mod/notifications.php:344 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Systémová upozornění"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
+#: ../../mod/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Žádné další osobní upozornění."
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dál<h1>"
+#: ../../mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Osobní upozornění"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
+#: ../../mod/notifications.php:524
+msgid "No more home notifications."
+msgstr "Žádné další domácí upozornění."
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena."
+#: ../../mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Upozornění na vstupní straně"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Nebylo možné zjistit Vaši domácí lokaci."
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Žádný profil"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Žádný příjemce."
+#: ../../mod/settings.php:34 ../../mod/photos.php:80
+msgid "everybody"
+msgstr "Žádost o připojení selhala nebo byla zrušena."
 
-#: ../../mod/wallmessage.php:143
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů."
+#: ../../mod/settings.php:41 ../../mod/admin.php:1016
+msgid "Account"
+msgstr "Účet"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Nápověda:"
+#: ../../mod/settings.php:46
+msgid "Additional features"
+msgstr "Další funkčnosti"
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Nápověda"
+#: ../../mod/settings.php:51
+msgid "Display"
+msgstr "Zobrazení"
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Nenalezen"
+#: ../../mod/settings.php:57 ../../mod/settings.php:785
+msgid "Social Networks"
+msgstr "Sociální sítě"
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Stránka nenalezena"
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
+#: ../../mod/admin.php:1155
+msgid "Plugins"
+msgstr "Pluginy"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s vítá %2$s"
+#: ../../mod/settings.php:72
+msgid "Connected apps"
+msgstr "Propojené aplikace"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Vítá Vás %s"
+#: ../../mod/settings.php:77 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Export osobních údajů"
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"
+#: ../../mod/settings.php:82
+msgid "Remove account"
+msgstr "Odstranit účet"
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Nebo - nenahrával jste prázdný soubor?"
-
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Velikost souboru přesáhla limit %d"
-
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Nahrání souboru se nezdařilo."
-
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Shoda profilu"
-
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
-
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "zajímá se o:"
-
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Spojit"
-
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "odkaz"
-
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Není k dispozici."
-
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Komunita"
-
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:168 ../../mod/search.php:192
-msgid "No results."
-msgstr "Žádné výsledky."
-
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "Žádost o připojení selhala nebo byla zrušena."
-
-#: ../../mod/settings.php:41
-msgid "Additional features"
-msgstr "Další funkčnosti"
-
-#: ../../mod/settings.php:46
-msgid "Display"
-msgstr "Zobrazení"
-
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
-msgid "Social Networks"
-msgstr "Sociální sítě"
-
-#: ../../mod/settings.php:62 ../../include/nav.php:170
-msgid "Delegations"
-msgstr "Delegace"
-
-#: ../../mod/settings.php:67
-msgid "Connected apps"
-msgstr "Propojené aplikace"
-
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Export osobních údajů"
-
-#: ../../mod/settings.php:77
-msgid "Remove account"
-msgstr "Odstranit účet"
-
-#: ../../mod/settings.php:129
+#: ../../mod/settings.php:134
 msgid "Missing some important data!"
 msgstr "Chybí některé důležité údaje!"
 
-#: ../../mod/settings.php:238
+#: ../../mod/settings.php:137 ../../mod/settings.php:645
+#: ../../mod/contacts.php:729
+msgid "Update"
+msgstr "Aktualizace"
+
+#: ../../mod/settings.php:243
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení."
 
-#: ../../mod/settings.php:243
+#: ../../mod/settings.php:248
 msgid "Email settings updated."
 msgstr "Nastavení e-mailu aktualizována."
 
-#: ../../mod/settings.php:258
+#: ../../mod/settings.php:263
 msgid "Features updated"
 msgstr "Aktualizované funkčnosti"
 
-#: ../../mod/settings.php:321
+#: ../../mod/settings.php:326
 msgid "Relocate message has been send to your contacts"
 msgstr "Správa o změně umístění byla odeslána vašim kontaktům"
 
-#: ../../mod/settings.php:335
+#: ../../mod/settings.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Hesla se neshodují. Heslo nebylo změněno."
 
-#: ../../mod/settings.php:340
+#: ../../mod/settings.php:345
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Prázdné hesla nejsou povolena. Heslo nebylo změněno."
 
-#: ../../mod/settings.php:348
+#: ../../mod/settings.php:353
 msgid "Wrong password."
 msgstr "Špatné heslo."
 
-#: ../../mod/settings.php:359
+#: ../../mod/settings.php:364
 msgid "Password changed."
 msgstr "Heslo bylo změněno."
 
-#: ../../mod/settings.php:361
+#: ../../mod/settings.php:366
 msgid "Password update failed. Please try again."
 msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:433
 msgid " Please use a shorter name."
 msgstr "Prosím použijte kratší jméno."
 
-#: ../../mod/settings.php:430
+#: ../../mod/settings.php:435
 msgid " Name too short."
 msgstr "Jméno je příliš krátké."
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:444
 msgid "Wrong Password"
 msgstr "Špatné heslo"
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:449
 msgid " Not valid email."
 msgstr "Neplatný e-mail."
 
-#: ../../mod/settings.php:450
+#: ../../mod/settings.php:455
 msgid " Cannot change to that email."
 msgstr "Nelze provést změnu na tento e-mail."
 
-#: ../../mod/settings.php:506
+#: ../../mod/settings.php:511
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina."
 
-#: ../../mod/settings.php:510
+#: ../../mod/settings.php:515
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu."
 
-#: ../../mod/settings.php:540
+#: ../../mod/settings.php:545
 msgid "Settings updated."
 msgstr "Nastavení aktualizováno."
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:680
 msgid "Add application"
 msgstr "Přidat aplikaci"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:619 ../../mod/settings.php:729
+#: ../../mod/settings.php:803 ../../mod/settings.php:885
+#: ../../mod/settings.php:1118 ../../mod/admin.php:620
+#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445
+msgid "Save Settings"
+msgstr "Uložit Nastavení"
+
+#: ../../mod/settings.php:621 ../../mod/settings.php:647
+#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1029 ../../mod/crepair.php:165
+msgid "Name"
+msgstr "Jméno"
+
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Redirect"
 msgstr "Přesměrování"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Icon url"
 msgstr "URL ikony"
 
-#: ../../mod/settings.php:631
+#: ../../mod/settings.php:636
 msgid "You can't edit this application."
 msgstr "Nemůžete editovat tuto aplikaci."
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:679
 msgid "Connected Apps"
 msgstr "Připojené aplikace"
 
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:683
 msgid "Client key starts with"
 msgstr "Klienský klíč začíná"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:684
 msgid "No name"
 msgstr "Bez názvu"
 
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:685
 msgid "Remove authorization"
 msgstr "Odstranit oprávnění"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:697
 msgid "No Plugin settings configured"
 msgstr "Žádný doplněk není nastaven"
 
-#: ../../mod/settings.php:700
+#: ../../mod/settings.php:705
 msgid "Plugin Settings"
 msgstr "Nastavení doplňku"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "Off"
 msgstr "Vypnuto"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "On"
 msgstr "Zapnuto"
 
-#: ../../mod/settings.php:722
+#: ../../mod/settings.php:727
 msgid "Additional Features"
 msgstr "Další Funkčnosti"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Vestavěná podpora pro připojení s %s je %s"
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "enabled"
 msgstr "povoleno"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "disabled"
 msgstr "zakázáno"
 
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:742
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:778
 msgid "Email access is disabled on this site."
 msgstr "Přístup k elektronické poště je na tomto serveru zakázán."
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:790
 msgid "Email/Mailbox Setup"
 msgstr "Nastavení e-mailu"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:791
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce."
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:792
 msgid "Last successful email check:"
 msgstr "Poslední úspěšná kontrola e-mailu:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:794
 msgid "IMAP server name:"
 msgstr "jméno IMAP serveru:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:795
 msgid "IMAP port:"
 msgstr "IMAP port:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:796
 msgid "Security:"
 msgstr "Zabezpečení:"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
+#: ../../mod/settings.php:796 ../../mod/settings.php:801
 msgid "None"
 msgstr "Žádný"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:797
 msgid "Email login name:"
 msgstr "přihlašovací jméno k e-mailu:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:798
 msgid "Email password:"
 msgstr "heslo k Vašemu e-mailu:"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:799
 msgid "Reply-to address:"
 msgstr "Odpovědět na adresu:"
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:800
 msgid "Send public posts to all email contacts:"
 msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Action after import:"
 msgstr "Akce po importu:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Mark as seen"
 msgstr "Označit jako přečtené"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Move to folder"
 msgstr "Přesunout do složky"
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:802
 msgid "Move to folder:"
 msgstr "Přesunout do složky:"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:833 ../../mod/admin.php:545
+msgid "No special theme for mobile devices"
+msgstr "žádné speciální téma pro mobilní zařízení"
+
+#: ../../mod/settings.php:883
 msgid "Display Settings"
 msgstr "Nastavení Zobrazení"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:899
+#: ../../mod/settings.php:889 ../../mod/settings.php:904
 msgid "Display Theme:"
 msgstr "Vybrat grafickou šablonu:"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:890
 msgid "Mobile Theme:"
 msgstr "Téma pro mobilní zařízení:"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Update browser every xx seconds"
 msgstr "Aktualizovat prohlížeč každých xx sekund"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimum 10 sekund, žádné maximum."
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:892
 msgid "Number of items to display per page:"
 msgstr "Počet položek zobrazených na stránce:"
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
+#: ../../mod/settings.php:892 ../../mod/settings.php:893
 msgid "Maximum of 100 items"
 msgstr "Maximum 100 položek"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:893
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:894
 msgid "Don't show emoticons"
 msgstr "Nezobrazovat emotikony"
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:895
 msgid "Don't show notices"
 msgstr "Nezobrazovat oznámění"
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:896
 msgid "Infinite scroll"
 msgstr "Nekonečné posouvání"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:897
 msgid "Automatic updates only at the top of the network page"
 msgstr "Automatické aktualizace pouze na hlavní stránce Síť."
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:974
 msgid "User Types"
 msgstr "Uživatelské typy"
 
-#: ../../mod/settings.php:970
+#: ../../mod/settings.php:975
 msgid "Community Types"
 msgstr "Komunitní typy"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:976
 msgid "Normal Account Page"
 msgstr "Normální stránka účtu"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:977
 msgid "This account is a normal personal profile"
 msgstr "Tento účet je běžný osobní profil"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:980
 msgid "Soapbox Page"
 msgstr "Stránka \"Soapbox\""
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:981
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení"
 
-#: ../../mod/settings.php:979
+#: ../../mod/settings.php:984
 msgid "Community Forum/Celebrity Account"
 msgstr "Komunitní fórum/ účet celebrity"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:985
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení."
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:988
 msgid "Automatic Friend Page"
 msgstr "Automatická stránka přítele"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:989
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:992
 msgid "Private Forum [Experimental]"
 msgstr "Soukromé fórum [Experimentální]"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:993
 msgid "Private forum - approved members only"
 msgstr "Soukromé fórum - pouze pro schválené členy"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu."
 
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1015
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publikovat Váš výchozí profil v místním adresáři webu?"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:661
-#: ../../mod/profiles.php:665 ../../mod/api.php:106
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1021
+#: ../../mod/settings.php:1029 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1038 ../../mod/settings.php:1044
+#: ../../mod/settings.php:1050 ../../mod/settings.php:1056
+#: ../../mod/settings.php:1086 ../../mod/settings.php:1087
+#: ../../mod/settings.php:1088 ../../mod/settings.php:1089
+#: ../../mod/settings.php:1090 ../../mod/register.php:234
+#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106
+#: ../../mod/profiles.php:661 ../../mod/profiles.php:665
 msgid "No"
 msgstr "Ne"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1021
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publikovat Váš výchozí profil v globální sociálním adresáři?"
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1029
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?"
 
-#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Skrýt Vaše profilové detaily před neznámými uživateli?"
-
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí."
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1038
 msgid "Allow friends to post to your profile page?"
 msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?"
 
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1044
 msgid "Allow friends to tag your posts?"
 msgstr "Povolit přátelům označovat Vaše příspěvky?"
 
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1050
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?"
 
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1056
 msgid "Permit unknown people to send you private mail?"
 msgstr "Povolit neznámým lidem Vám zasílat soukromé zprávy?"
 
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1064
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil <strong>není zveřejněn</strong>."
 
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "nebo"
+
+#: ../../mod/settings.php:1072
 msgid "Your Identity Address is"
 msgstr "Vaše adresa identity je"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 msgid "Automatically expire posts after this many days:"
 msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány"
 
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1084
 msgid "Advanced expiration settings"
 msgstr "Pokročilé nastavení expirací"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1085
 msgid "Advanced Expiration"
 msgstr "Nastavení expirací"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1086
 msgid "Expire posts:"
 msgstr "Expirovat příspěvky:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1087
 msgid "Expire personal notes:"
 msgstr "Expirovat osobní poznámky:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1088
 msgid "Expire starred posts:"
 msgstr "Expirovat příspěvky s hvězdou:"
 
-#: ../../mod/settings.php:1084
+#: ../../mod/settings.php:1089
 msgid "Expire photos:"
 msgstr "Expirovat fotografie:"
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1090
 msgid "Only expire posts by others:"
 msgstr "Přízpěvky expirovat pouze ostatními:"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1116
 msgid "Account Settings"
 msgstr "Nastavení účtu"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1124
 msgid "Password Settings"
 msgstr "Nastavení hesla"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1125
 msgid "New Password:"
 msgstr "Nové heslo:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Confirm:"
 msgstr "Potvrďte:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Leave password fields blank unless changing"
 msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1127
 msgid "Current Password:"
 msgstr "Stávající heslo:"
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
 msgid "Your current password to confirm the changes"
 msgstr "Vaše stávající heslo k potvrzení změn"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1128
 msgid "Password:"
 msgstr "Heslo: "
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1132
 msgid "Basic Settings"
 msgstr "Základní nastavení"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Celé jméno:"
-
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1134
 msgid "Email Address:"
 msgstr "E-mailová adresa:"
 
-#: ../../mod/settings.php:1130
+#: ../../mod/settings.php:1135
 msgid "Your Timezone:"
 msgstr "Vaše časové pásmo:"
 
-#: ../../mod/settings.php:1131
+#: ../../mod/settings.php:1136
 msgid "Default Post Location:"
 msgstr "Výchozí umístění příspěvků:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1137
 msgid "Use Browser Location:"
 msgstr "Používat umístění dle prohlížeče:"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1140
 msgid "Security and Privacy Settings"
 msgstr "Nastavení zabezpečení a soukromí"
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1142
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximální počet žádostí o přátelství za den:"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
 msgid "(to prevent spam abuse)"
 msgstr "(Aby se zabránilo spamu)"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1143
 msgid "Default Post Permissions"
 msgstr "Výchozí oprávnění pro příspěvek"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1144
 msgid "(click to open/close)"
 msgstr "(Klikněte pro otevření/zavření)"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Zobrazit ve Skupinách"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Zobrazit v Kontaktech"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1155
 msgid "Default Private Post"
 msgstr "Výchozí Soukromý příspěvek"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1156
 msgid "Default Public Post"
 msgstr "Výchozí Veřejný příspěvek"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1160
 msgid "Default Permissions for New Posts"
 msgstr "Výchozí oprávnění pro nové příspěvky"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1172
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximum soukromých zpráv od neznámých lidí:"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1175
 msgid "Notification Settings"
 msgstr "Nastavení notifikací"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1176
 msgid "By default post a status message when:"
 msgstr "Defaultně posílat statusové zprávy když:"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1177
 msgid "accepting a friend request"
 msgstr "akceptuji požadavek na přátelství"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1178
 msgid "joining a forum/community"
 msgstr "připojující se k fóru/komunitě"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1179
 msgid "making an <em>interesting</em> profile change"
 msgstr "provedení <em>zajímavé</em> profilové změny"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1180
 msgid "Send a notification email when:"
 msgstr "Poslat notifikaci e-mailem, když"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1181
 msgid "You receive an introduction"
 msgstr "obdržíte žádost o propojení"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1182
 msgid "Your introductions are confirmed"
 msgstr "Vaše žádosti jsou potvrzeny"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1183
 msgid "Someone writes on your profile wall"
 msgstr "někdo Vám napíše na Vaši profilovou stránku"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1184
 msgid "Someone writes a followup comment"
 msgstr "někdo Vám napíše následný komentář"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1185
 msgid "You receive a private message"
 msgstr "obdržíte soukromou zprávu"
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1186
 msgid "You receive a friend suggestion"
 msgstr "Obdržel jste návrh přátelství"
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1187
 msgid "You are tagged in a post"
 msgstr "Jste označen v příspěvku"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1188
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Byl Jste šťouchnout v příspěvku"
 
-#: ../../mod/settings.php:1185
+#: ../../mod/settings.php:1190
 msgid "Text-only notification emails"
 msgstr "Pouze textové notifikační e-maily"
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1192
 msgid "Send text only notification emails, without the html part"
 msgstr "Posílat pouze textové notifikační e-maily, bez html části."
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1194
 msgid "Advanced Account/Page Type Settings"
 msgstr "Pokročilé nastavení účtu/stránky"
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1195
 msgid "Change the behaviour of this account for special situations"
 msgstr "Změnit chování tohoto účtu ve speciálních situacích"
 
-#: ../../mod/settings.php:1193
+#: ../../mod/settings.php:1198
 msgid "Relocate"
 msgstr "Změna umístění"
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1199
 msgid ""
 "If you have moved this profile from another server, and some of your "
 "contacts don't receive your updates, try pushing this button."
 msgstr "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko."
 
-#: ../../mod/settings.php:1195
+#: ../../mod/settings.php:1200
 msgid "Resend relocate message to contacts"
 msgstr "Znovu odeslat správu o změně umístění Vašim kontaktům"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Toto pozvání již bylo přijato."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Společní přátelé"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Žádné společné kontakty."
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Vzdálené soukromé informace nejsou k dispozici."
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Viditelné pro:"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#: ../../mod/contacts.php:112
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d požadovaný parametr nebyl nalezen na daném místě"
-msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
-msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d kontakt upraven."
+msgstr[1] "%d kontakty upraveny"
+msgstr[2] "%d kontaktů upraveno"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Představení dokončeno."
+#: ../../mod/contacts.php:143 ../../mod/contacts.php:276
+msgid "Could not access contact record."
+msgstr "Nelze získat přístup k záznamu kontaktu."
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Neopravitelná chyba protokolu"
+#: ../../mod/contacts.php:157
+msgid "Could not locate selected profile."
+msgstr "Nelze nalézt vybraný profil."
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil není k dispozici."
+#: ../../mod/contacts.php:190
+msgid "Contact updated."
+msgstr "Kontakt aktualizován."
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
+#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Nepodařilo se aktualizovat kontakt."
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Ochrana proti spamu byla aktivována"
+#: ../../mod/contacts.php:291
+msgid "Contact has been blocked"
+msgstr "Kontakt byl zablokován"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
+#: ../../mod/contacts.php:291
+msgid "Contact has been unblocked"
+msgstr "Kontakt byl odblokován"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Neplatný odkaz"
+#: ../../mod/contacts.php:302
+msgid "Contact has been ignored"
+msgstr "Kontakt bude ignorován"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Neplatná emailová adresa"
+#: ../../mod/contacts.php:302
+msgid "Contact has been unignored"
+msgstr "Kontakt přestal být ignorován"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
+#: ../../mod/contacts.php:314
+msgid "Contact has been archived"
+msgstr "Kontakt byl archivován"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese."
+#: ../../mod/contacts.php:314
+msgid "Contact has been unarchived"
+msgstr "Kontakt byl vrácen z archívu."
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Již jste se zde zavedli."
+#: ../../mod/contacts.php:339 ../../mod/contacts.php:727
+msgid "Do you really want to delete this contact?"
+msgstr "Opravdu chcete smazat tento kontakt?"
 
-#: ../../mod/dfrn_request.php:480
+#: ../../mod/contacts.php:356
+msgid "Contact has been removed."
+msgstr "Kontakt byl odstraněn."
+
+#: ../../mod/contacts.php:394
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Zřejmě jste již přátelé se %s."
+msgid "You are mutual friends with %s"
+msgstr "Jste vzájemní přátelé s uživatelem %s"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Neplatné URL profilu."
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Sdílíte s uživatelem %s"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nepovolené URL profilu."
+#: ../../mod/contacts.php:403
+#, php-format
+msgid "%s is sharing with you"
+msgstr "uživatel %s sdílí s vámi"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Vaše žádost o propojení byla odeslána."
+#: ../../mod/contacts.php:423
+msgid "Private communications are not available for this contact."
+msgstr "Soukromá komunikace není dostupná pro tento kontakt."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
+#: ../../mod/contacts.php:426 ../../mod/admin.php:569
+msgid "Never"
+msgstr "Nikdy"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
+#: ../../mod/contacts.php:430
+msgid "(Update was successful)"
+msgstr "(Aktualizace byla úspěšná)"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Skrýt tento kontakt"
+#: ../../mod/contacts.php:430
+msgid "(Update was not successful)"
+msgstr "(Aktualizace nebyla úspěšná)"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Vítejte doma %s."
+#: ../../mod/contacts.php:432
+msgid "Suggest friends"
+msgstr "Navrhněte přátelé"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/contacts.php:436
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Prosím potvrďte Vaši žádost o propojení %s."
+msgid "Network type: %s"
+msgstr "Typ sítě: %s"
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Potvrdit"
+#: ../../mod/contacts.php:444
+msgid "View all contacts"
+msgstr "Zobrazit všechny kontakty"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1009
+msgid "Unblock"
+msgstr "Odblokovat"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>."
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
+msgid "Block"
+msgstr "Blokovat"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Požadavek o přátelství / kontaktování"
+#: ../../mod/contacts.php:452
+msgid "Toggle Blocked status"
+msgstr "Přepnout stav Blokováno"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:519
+#: ../../mod/contacts.php:731
+msgid "Unignore"
+msgstr "Přestat ignorovat"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Odpovězte, prosím, následující:"
+#: ../../mod/contacts.php:458
+msgid "Toggle Ignored status"
+msgstr "Přepnout stav Ignorováno"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "Zná Vás uživatel %s ?"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Unarchive"
+msgstr "Vrátit z archívu"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Přidat osobní poznámku:"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Archive"
+msgstr "Archivovat"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/contacts.php:465
+msgid "Toggle Archive status"
+msgstr "Přepnout stav Archivováno"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet / Federativní Sociální Web"
+#: ../../mod/contacts.php:468
+msgid "Repair"
+msgstr "Opravit"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
+#: ../../mod/contacts.php:471
+msgid "Advanced Contact Settings"
+msgstr "Pokročilé nastavení kontaktu"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
+#: ../../mod/contacts.php:477
+msgid "Communications lost with this contact!"
+msgstr "Komunikace s tímto kontaktem byla ztracena!"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Odeslat žádost"
+#: ../../mod/contacts.php:480
+msgid "Fetch further information for feeds"
+msgstr "Načítat další informace pro kanál"
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
+#: ../../mod/contacts.php:481
+msgid "Disabled"
+msgstr "Zakázáno"
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení."
+#: ../../mod/contacts.php:481
+msgid "Fetch information"
+msgstr "Načítat informace"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Vaši registraci nelze zpracovat."
+#: ../../mod/contacts.php:481
+msgid "Fetch information and keywords"
+msgstr "Načítat informace a klíčová slova"
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
-msgstr "Vaše registrace čeká na schválení vlastníkem serveru."
+#: ../../mod/contacts.php:490
+msgid "Contact Editor"
+msgstr "Editor kontaktu"
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
+#: ../../mod/contacts.php:493
+msgid "Profile Visibility"
+msgstr "Viditelnost profilu"
 
-#: ../../mod/register.php:214
+#: ../../mod/contacts.php:494
+#, php-format
 msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu."
 
-#: ../../mod/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
+#: ../../mod/contacts.php:495
+msgid "Contact Information / Notes"
+msgstr "Kontaktní informace / poznámky"
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Vaše OpenID (nepovinné): "
+#: ../../mod/contacts.php:496
+msgid "Edit contact notes"
+msgstr "Editovat poznámky kontaktu"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:695
+#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Navštivte profil uživatele %s [%s]"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "Členství na tomto webu je pouze na pozvání."
+#: ../../mod/contacts.php:502
+msgid "Block/Unblock contact"
+msgstr "Blokovat / Odblokovat kontakt"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "Vaše pozvání ID:"
+#: ../../mod/contacts.php:503
+msgid "Ignore contact"
+msgstr "Ignorovat kontakt"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vaše celé jméno (např. Jan Novák):"
+#: ../../mod/contacts.php:504
+msgid "Repair URL settings"
+msgstr "Opravit nastavení adresy URL "
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Vaše e-mailová adresa:"
+#: ../../mod/contacts.php:505
+msgid "View conversations"
+msgstr "Zobrazit konverzace"
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@$sitename</strong>\"."
+#: ../../mod/contacts.php:507
+msgid "Delete contact"
+msgstr "Odstranit kontakt"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Vyberte přezdívku:"
+#: ../../mod/contacts.php:511
+msgid "Last update:"
+msgstr "Poslední aktualizace:"
 
-#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109
-msgid "Register"
-msgstr "Registrovat"
+#: ../../mod/contacts.php:513
+msgid "Update public posts"
+msgstr "Aktualizovat veřejné příspěvky"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/contacts.php:515 ../../mod/admin.php:1503
+msgid "Update now"
+msgstr "Aktualizovat"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Import Vašeho profilu do této friendica instance"
+#: ../../mod/contacts.php:522
+msgid "Currently blocked"
+msgstr "V současnosti zablokováno"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Systém vypnut z důvodů údržby"
+#: ../../mod/contacts.php:523
+msgid "Currently ignored"
+msgstr "V současnosti ignorováno"
 
-#: ../../mod/search.php:99 ../../include/text.php:953
-#: ../../include/text.php:954 ../../include/nav.php:119
-msgid "Search"
-msgstr "Vyhledávání"
+#: ../../mod/contacts.php:524
+msgid "Currently archived"
+msgstr "Aktuálně archivován"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Globální adresář"
+#: ../../mod/contacts.php:525
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Nalézt na tomto webu"
+#: ../../mod/contacts.php:526
+msgid "Notification for new posts"
+msgstr "Upozornění na nové příspěvky"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Adresář serveru"
+#: ../../mod/contacts.php:526
+msgid "Send a notification of every new post of this contact"
+msgstr "Poslat upozornění při každém novém příspěvku tohoto kontaktu"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:750
-msgid "Age: "
-msgstr "Věk: "
+#: ../../mod/contacts.php:529
+msgid "Blacklisted keywords"
+msgstr "Zakázaná klíčová slova"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Pohlaví: "
+#: ../../mod/contacts.php:529
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\""
 
-#: ../../mod/directory.php:138 ../../boot.php:1650
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Pohlaví:"
+#: ../../mod/contacts.php:580
+msgid "Suggestions"
+msgstr "Doporučení"
 
-#: ../../mod/directory.php:140 ../../boot.php:1653
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/contacts.php:583
+msgid "Suggest potential friends"
+msgstr "Navrhnout potenciální přátele"
 
-#: ../../mod/directory.php:142 ../../boot.php:1655
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Domácí stránka:"
+#: ../../mod/contacts.php:589
+msgid "Show all contacts"
+msgstr "Zobrazit všechny kontakty"
 
-#: ../../mod/directory.php:144 ../../boot.php:1657
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "O mě:"
+#: ../../mod/contacts.php:592
+msgid "Unblocked"
+msgstr "Odblokován"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Žádné záznamy (některé položky mohou být skryty)."
+#: ../../mod/contacts.php:595
+msgid "Only show unblocked contacts"
+msgstr "Zobrazit pouze neblokované kontakty"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Žádní potenciální delegáti stránky nenalezeni."
+#: ../../mod/contacts.php:599
+msgid "Blocked"
+msgstr "Blokován"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:170
-msgid "Delegate Page Management"
-msgstr "Správa delegátů stránky"
+#: ../../mod/contacts.php:602
+msgid "Only show blocked contacts"
+msgstr "Zobrazit pouze blokované kontakty"
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte.."
+#: ../../mod/contacts.php:606
+msgid "Ignored"
+msgstr "Ignorován"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Stávající správci stránky"
+#: ../../mod/contacts.php:609
+msgid "Only show ignored contacts"
+msgstr "Zobrazit pouze ignorované kontakty"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Stávající delegáti stránky "
+#: ../../mod/contacts.php:613
+msgid "Archived"
+msgstr "Archivován"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potenciální delegáti"
+#: ../../mod/contacts.php:616
+msgid "Only show archived contacts"
+msgstr "Zobrazit pouze archivované kontakty"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Přidat"
+#: ../../mod/contacts.php:620
+msgid "Hidden"
+msgstr "Skrytý"
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Žádné záznamy."
+#: ../../mod/contacts.php:623
+msgid "Only show hidden contacts"
+msgstr "Zobrazit pouze skryté kontakty"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Společní přátelé"
+#: ../../mod/contacts.php:671
+msgid "Mutual Friendship"
+msgstr "Vzájemné přátelství"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Žádné společné kontakty."
+#: ../../mod/contacts.php:675
+msgid "is a fan of yours"
+msgstr "je Váš fanoušek"
+
+#: ../../mod/contacts.php:679
+msgid "you are a fan of"
+msgstr "jste fanouškem"
+
+#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Editovat kontakt"
+
+#: ../../mod/contacts.php:722
+msgid "Search your contacts"
+msgstr "Prohledat Vaše kontakty"
+
+#: ../../mod/contacts.php:723 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Zjištění: "
+
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP"
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Nebo - nenahrával jste prázdný soubor?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Velikost souboru přesáhla limit %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Nahrání souboru se nezdařilo."
+
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:25
+#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr "[Vložený obsah - obnovte stránku pro zobrazení]"
 
 #: ../../mod/uexport.php:77
 msgid "Export account"
@@ -4646,3240 +4544,3394 @@ msgid ""
 "of your account (photos are not exported)"
 msgstr "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce."
+
+#: ../../mod/register.php:96
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s je právě %2$s"
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení."
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Nálada"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Vaši registraci nelze zpracovat."
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "Vaše registrace čeká na schválení vlastníkem serveru."
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Opravdu chcete smazat tento návrh?"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu."
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Návrhy přátel"
+#: ../../mod/register.php:214
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'."
 
-#: ../../mod/suggest.php:74
+#: ../../mod/register.php:215
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky."
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorovat / skrýt"
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Vaše OpenID (nepovinné): "
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil smazán."
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "Členství na tomto webu je pouze na pozvání."
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nový profil vytvořen."
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "Vaše pozvání ID:"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profil není možné naklonovat."
+#: ../../mod/register.php:255 ../../mod/admin.php:621
+msgid "Registration"
+msgstr "Registrace"
 
-#: ../../mod/profiles.php:189
-msgid "Profile Name is required."
-msgstr "Jméno profilu je povinné."
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vaše celé jméno (např. Jan Novák):"
 
-#: ../../mod/profiles.php:340
-msgid "Marital Status"
-msgstr "Rodinný Stav"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Vaše e-mailová adresa:"
 
-#: ../../mod/profiles.php:344
-msgid "Romantic Partner"
-msgstr "Romatický partner"
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@$sitename</strong>\"."
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "Libí se mi"
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Vyberte přezdívku:"
 
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "Nelibí se mi"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../mod/profiles.php:356
-msgid "Work/Employment"
-msgstr "Práce/Zaměstnání"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Import Vašeho profilu do této friendica instance"
 
-#: ../../mod/profiles.php:359
-msgid "Religion"
-msgstr "Náboženství"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Příspěvek úspěšně odeslán"
 
-#: ../../mod/profiles.php:363
-msgid "Political Views"
-msgstr "Politické přesvědčení"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Systém vypnut z důvodů údržby"
 
-#: ../../mod/profiles.php:367
-msgid "Gender"
-msgstr "Pohlaví"
+#: ../../mod/profile.php:155 ../../mod/display.php:332
+msgid "Access to this profile has been restricted."
+msgstr "Přístup na tento profil byl omezen."
 
-#: ../../mod/profiles.php:371
-msgid "Sexual Preference"
-msgstr "Sexuální orientace"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipy pro nové členy"
 
-#: ../../mod/profiles.php:375
-msgid "Homepage"
-msgstr "Domácí stránka"
+#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/search.php:89 ../../mod/community.php:18
+#: ../../mod/display.php:212 ../../mod/directory.php:33
+msgid "Public access denied."
+msgstr "Veřejný přístup odepřen."
 
-#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
-msgid "Interests"
-msgstr "Zájmy"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Není vybráno žádné video"
 
-#: ../../mod/profiles.php:383
-msgid "Address"
-msgstr "Adresa"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "Přístup k této položce je omezen."
 
-#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
-msgid "Location"
-msgstr "Lokace"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Zobrazit album"
 
-#: ../../mod/profiles.php:473
-msgid "Profile updated."
-msgstr "Profil aktualizován."
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Aktuální Videa"
 
-#: ../../mod/profiles.php:568
-msgid " and "
-msgstr " a "
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Nahrát nová videa"
 
-#: ../../mod/profiles.php:576
-msgid "public profile"
-msgstr "veřejný profil"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Správa identit a / nebo stránek"
 
-#: ../../mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s změnil %2$s na &ldquo;%3$s&rdquo;"
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva."
 
-#: ../../mod/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Navštivte %2$s uživatele %1$s"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Vyberte identitu pro správu: "
 
-#: ../../mod/profiles.php:583
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s aktualizoval %2$s, změnou %3$s."
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Položka nenalezena"
 
-#: ../../mod/profiles.php:658
-msgid "Hide contacts and friends:"
-msgstr "Skrýt kontakty a přátele:"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Upravit příspěvek"
 
-#: ../../mod/profiles.php:663
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Vyhledávání lidí"
 
-#: ../../mod/profiles.php:685
-msgid "Edit Profile Details"
-msgstr "Upravit podrobnosti profilu "
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Žádné shody"
 
-#: ../../mod/profiles.php:687
-msgid "Change Profile Photo"
-msgstr "Změna Profilové fotky"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Účet schválen."
 
-#: ../../mod/profiles.php:688
-msgid "View this profile"
-msgstr "Zobrazit tento profil"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrace zrušena pro %s"
 
-#: ../../mod/profiles.php:689
-msgid "Create a new profile using these settings"
-msgstr "Vytvořit nový profil pomocí tohoto nastavení"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Přihlaste se, prosím."
 
-#: ../../mod/profiles.php:690
-msgid "Clone this profile"
-msgstr "Klonovat tento profil"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Toto pozvání již bylo přijato."
 
-#: ../../mod/profiles.php:691
-msgid "Delete this profile"
-msgstr "Smazat tento profil"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Adresa profilu není platná nebo neobsahuje profilové informace"
 
-#: ../../mod/profiles.php:692
-msgid "Basic information"
-msgstr "Základní informace"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka"
 
-#: ../../mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Profilový obrázek"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Varování: umístění profilu nemá žádnou profilovou fotografii."
 
-#: ../../mod/profiles.php:695
-msgid "Preferences"
-msgstr "Nastavení"
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d požadovaný parametr nebyl nalezen na daném místě"
+msgstr[1] "%d požadované parametry nebyly nalezeny na daném místě"
+msgstr[2] "%d požadované parametry nebyly nalezeny na daném místě"
 
-#: ../../mod/profiles.php:696
-msgid "Status information"
-msgstr "Statusové informace"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Představení dokončeno."
 
-#: ../../mod/profiles.php:697
-msgid "Additional information"
-msgstr "Dodatečné informace"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Neopravitelná chyba protokolu"
 
-#: ../../mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Jméno profilu:"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil není k dispozici."
 
-#: ../../mod/profiles.php:701
-msgid "Your Full Name:"
-msgstr "Vaše celé jméno:"
+#: ../../mod/dfrn_request.php:267
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s dnes obdržel příliš mnoho požadavků na připojení."
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "Název / Popis:"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Ochrana proti spamu byla aktivována"
 
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "Vaše pohlaví:"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Přátelům se doporučuje to zkusit znovu za 24 hodin."
 
-#: ../../mod/profiles.php:704
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Narozeniny uživatele (%s):"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Neplatný odkaz"
 
-#: ../../mod/profiles.php:705
-msgid "Street Address:"
-msgstr "Ulice:"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Neplatná emailová adresa"
 
-#: ../../mod/profiles.php:706
-msgid "Locality/City:"
-msgstr "Město:"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Tento účet nebyl nastaven pro email. Požadavek nesplněn."
 
-#: ../../mod/profiles.php:707
-msgid "Postal/Zip Code:"
-msgstr "PSČ:"
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Nepodařilo se zjistit Vaše jméno na zadané adrese."
 
-#: ../../mod/profiles.php:708
-msgid "Country:"
-msgstr "Země:"
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Již jste se zde zavedli."
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Region / stát:"
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Zřejmě jste již přátelé se %s."
 
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Neplatné URL profilu."
 
-#: ../../mod/profiles.php:711
-msgid "Who: (if applicable)"
-msgstr "Kdo: (pokud je možné)"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Vaše žádost o propojení byla odeslána."
 
-#: ../../mod/profiles.php:712
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Prosím přihlašte se k potvrzení žádosti o propojení."
 
-#: ../../mod/profiles.php:713
-msgid "Since [date]:"
-msgstr "Od [data]:"
-
-#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Sexuální preference:"
-
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "Odkaz na domovskou stránku:"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu."
 
-#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Rodné město"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Skrýt tento kontakt"
 
-#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politické přesvědčení:"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Vítejte doma %s."
 
-#: ../../mod/profiles.php:718
-msgid "Religious Views:"
-msgstr "Náboženské přesvědčení:"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Prosím potvrďte Vaši žádost o propojení %s."
 
-#: ../../mod/profiles.php:719
-msgid "Public Keywords:"
-msgstr "Veřejná klíčová slova:"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:"
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "Soukromá klíčová slova:"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>."
 
-#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Líbí se:"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Požadavek o přátelství / kontaktování"
 
-#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Nelibí se:"
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "Příklad: fishing photography software"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Odpovězte, prosím, následující:"
 
-#: ../../mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Zná Vás uživatel %s ?"
 
-#: ../../mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Přidat osobní poznámku:"
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "Řekněte nám něco o sobě ..."
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet / Federativní Sociální Web"
 
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "Koníčky/zájmy"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole."
 
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "Kontaktní informace a sociální sítě"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\"."
 
-#: ../../mod/profiles.php:729
-msgid "Musical interests"
-msgstr "Hudební vkus"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Odeslat žádost"
 
-#: ../../mod/profiles.php:730
-msgid "Books, literature"
-msgstr "Knihy, literatura"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Soubory"
 
-#: ../../mod/profiles.php:731
-msgid "Television"
-msgstr "Televize"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Povolit připojení aplikacím"
 
-#: ../../mod/profiles.php:732
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/tanec/kultura/zábava"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
 
-#: ../../mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Láska/romantika"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Pro pokračování se prosím přihlaste."
 
-#: ../../mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Práce/zaměstnání"
+#: ../../mod/api.php:104
+msgid ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
 
-#: ../../mod/profiles.php:735
-msgid "School/education"
-msgstr "Škola/vzdělání"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Opravdu chcete smazat tento návrh?"
 
-#: ../../mod/profiles.php:740
+#: ../../mod/suggest.php:74
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
-
-#: ../../mod/profiles.php:803
-msgid "Edit/Manage Profiles"
-msgstr "Upravit / Spravovat profily"
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin."
 
-#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637
-msgid "Change profile photo"
-msgstr "Změnit profilovou fotografii"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorovat / skrýt"
 
-#: ../../mod/profiles.php:805 ../../boot.php:1612
-msgid "Create New Profile"
-msgstr "Vytvořit nový profil"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty, které nejsou členy skupiny"
 
-#: ../../mod/profiles.php:816 ../../boot.php:1622
-msgid "Profile Image"
-msgstr "Profilový obrázek"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120
+msgid "Contact not found."
+msgstr "Kontakt nenalezen."
 
-#: ../../mod/profiles.php:818 ../../boot.php:1625
-msgid "visible to everybody"
-msgstr "viditelné pro všechny"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Návrhy přátelství odeslány "
 
-#: ../../mod/profiles.php:819 ../../boot.php:1626
-msgid "Edit visibility"
-msgstr "Upravit viditelnost"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Navrhněte přátelé"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Položka nenalezena"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Navrhněte přátelé pro uživatele %s"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Upravit příspěvek"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "odkaz"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "nahrát fotky"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Žádné kontakty."
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Přiložit soubor"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Nastavení téma zobrazení bylo aktualizováno."
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "přidat soubor"
+#: ../../mod/admin.php:104 ../../mod/admin.php:619
+msgid "Site"
+msgstr "Web"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "webový odkaz"
+#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
+msgid "Users"
+msgstr "Uživatelé"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Zadejte odkaz na video"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
+msgid "Themes"
+msgstr "Témata"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "odkaz na video"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "Aktualizace databáze"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Zadejte odkaz na zvukový záznam"
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
+msgid "Logs"
+msgstr "Logy"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "odkaz na audio"
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr "vyzkoušet adresu"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Nastavte vaši polohu"
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr "vyzkoušet webfinger"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "nastavit místo"
+#: ../../mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Funkčnosti rozšíření"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Odstranit adresu v prohlížeči"
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr "diagnostika"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "vymazat místo"
+#: ../../mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Nastavení oprávnění"
-
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "skrytá kopie: e-mailové adresy"
+#: ../../mod/admin.php:193 ../../mod/admin.php:952
+msgid "Normal Account"
+msgstr "Normální účet"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Veřejný příspěvek"
+#: ../../mod/admin.php:194 ../../mod/admin.php:953
+msgid "Soapbox Account"
+msgstr "Soapbox účet"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Nastavit titulek"
+#: ../../mod/admin.php:195 ../../mod/admin.php:954
+msgid "Community/Celebrity Account"
+msgstr "Komunitní účet / Účet celebrity"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Kategorie (čárkou oddělený seznam)"
+#: ../../mod/admin.php:196 ../../mod/admin.php:955
+msgid "Automatic Friend Account"
+msgstr "Účet s automatickým schvalováním přátel"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Příklad: bob@example.com, mary@example.com"
+#: ../../mod/admin.php:197
+msgid "Blog Account"
+msgstr "Účet Blogu"
 
-#: ../../mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "Toto je Friendica, verze"
+#: ../../mod/admin.php:198
+msgid "Private Forum"
+msgstr "Soukromé fórum"
 
-#: ../../mod/friendica.php:60
-msgid "running at web location"
-msgstr "běžící na webu"
+#: ../../mod/admin.php:217
+msgid "Message queues"
+msgstr "Fronty zpráv"
 
-#: ../../mod/friendica.php:62
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>."
+#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
+#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
+#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
+msgid "Administration"
+msgstr "Administrace"
 
-#: ../../mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Pro hlášení chyb a námětů na změny navštivte:"
+#: ../../mod/admin.php:223
+msgid "Summary"
+msgstr "Shrnutí"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"
+#: ../../mod/admin.php:225
+msgid "Registered users"
+msgstr "Registrovaní uživatelé"
 
-#: ../../mod/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Instalované pluginy/doplňky/aplikace:"
+#: ../../mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Čekající registrace"
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Nejsou žádné nainstalované doplňky/aplikace"
+#: ../../mod/admin.php:228
+msgid "Version"
+msgstr "Verze"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Povolit připojení aplikacím"
+#: ../../mod/admin.php:232
+msgid "Active plugins"
+msgstr "Aktivní pluginy"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:"
+#: ../../mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Pro pokračování se prosím přihlaste."
+#: ../../mod/admin.php:516
+msgid "Site settings updated."
+msgstr "Nastavení webu aktualizováno."
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?"
+#: ../../mod/admin.php:562
+msgid "No community page"
+msgstr "Komunitní stránka neexistuje"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Vzdálené soukromé informace nejsou k dispozici."
+#: ../../mod/admin.php:563
+msgid "Public postings from users of this site"
+msgstr "Počet veřejných příspěvků od uživatele na této stránce"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Viditelné pro:"
+#: ../../mod/admin.php:564
+msgid "Global community page"
+msgstr "Globální komunitní stránka"
 
-#: ../../mod/notes.php:44 ../../boot.php:2150
-msgid "Personal Notes"
-msgstr "Osobní poznámky"
+#: ../../mod/admin.php:570
+msgid "At post arrival"
+msgstr "Při obdržení příspěvku"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/admin.php:579
+msgid "Multi user instance"
+msgstr "Více uživatelská instance"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Časová konverze"
+#: ../../mod/admin.php:602
+msgid "Closed"
+msgstr "Uzavřeno"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
+#: ../../mod/admin.php:603
+msgid "Requires approval"
+msgstr "Vyžaduje schválení"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC čas: %s"
+#: ../../mod/admin.php:604
+msgid "Open"
+msgstr "Otevřená"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuální časové pásmo: %s"
+#: ../../mod/admin.php:608
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Žádná SSL politika, odkazy budou následovat stránky SSL stav"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Převedený lokální čas : %s"
+#: ../../mod/admin.php:609
+msgid "Force all links to use SSL"
+msgstr "Vyžadovat u všech odkazů použití SSL"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Prosím, vyberte své časové pásmo:"
+#: ../../mod/admin.php:610
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Šťouchanec"
+#: ../../mod/admin.php:622
+msgid "File upload"
+msgstr "Nahrání souborů"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "někoho šťouchnout nebo mu provést  jinou věc"
+#: ../../mod/admin.php:623
+msgid "Policies"
+msgstr "Politiky"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Příjemce"
+#: ../../mod/admin.php:624
+msgid "Advanced"
+msgstr "Pokročilé"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Vyberte, co si přejete příjemci udělat"
+#: ../../mod/admin.php:625
+msgid "Performance"
+msgstr "Výkonnost"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Změnit tento příspěvek na soukromý"
+#: ../../mod/admin.php:626
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server."
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Celkový limit pozvánek byl překročen"
+#: ../../mod/admin.php:629
+msgid "Site name"
+msgstr "Název webu"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : není platná e-mailová adresa."
+#: ../../mod/admin.php:630
+msgid "Host name"
+msgstr "Jméno hostitele (host name)"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Prosím přidejte se k nám na Friendice"
+#: ../../mod/admin.php:631
+msgid "Sender Email"
+msgstr "Email ddesílatele"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."
+#: ../../mod/admin.php:632
+msgid "Banner/Logo"
+msgstr "Banner/logo"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Doručení zprávy se nezdařilo."
+#: ../../mod/admin.php:633
+msgid "Shortcut icon"
+msgstr "Ikona zkratky"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d zpráva odeslána."
-msgstr[1] "%d zprávy odeslány."
-msgstr[2] "%d zprávy odeslány."
+#: ../../mod/admin.php:634
+msgid "Touch icon"
+msgstr "Dotyková ikona"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Nemáte k dispozici žádné další pozvánky"
+#: ../../mod/admin.php:635
+msgid "Additional Info"
+msgstr "Dodatečné informace"
 
-#: ../../mod/invite.php:120
-#, php-format
+#: ../../mod/admin.php:635
 msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo."
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
+#: ../../mod/admin.php:636
+msgid "System language"
+msgstr "Systémový jazyk"
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."
+#: ../../mod/admin.php:637
+msgid "System theme"
+msgstr "Grafická šablona systému "
 
-#: ../../mod/invite.php:126
+#: ../../mod/admin.php:637
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Poslat pozvánky"
+#: ../../mod/admin.php:638
+msgid "Mobile system theme"
+msgstr "Systémové téma zobrazení pro mobilní zařízení"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Zadejte e-mailové adresy, jednu na řádek:"
+#: ../../mod/admin.php:638
+msgid "Theme for mobile devices"
+msgstr "Téma zobrazení pro mobilní zařízení"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."
+#: ../../mod/admin.php:639
+msgid "SSL link policy"
+msgstr "Politika SSL odkazů"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Budete muset zadat kód této pozvánky: $invite_code"
+#: ../../mod/admin.php:639
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Určuje, zda-li budou generované odkazy používat SSL"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
+#: ../../mod/admin.php:640
+msgid "Force SSL"
+msgstr "Vynutit SSL"
 
-#: ../../mod/invite.php:139
+#: ../../mod/admin.php:640
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"
-
-#: ../../mod/photos.php:52 ../../boot.php:2129
-msgid "Photo Albums"
-msgstr "Fotoalba"
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení."
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Fotogalerie kontaktu"
+#: ../../mod/admin.php:641
+msgid "Old style 'Share'"
+msgstr "Sdílení \"postaru\""
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Nahrát nové fotografie"
+#: ../../mod/admin.php:641
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktivovat bbcode element \"share\" pro opakující se položky."
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontakt byl zablokován"
+#: ../../mod/admin.php:642
+msgid "Hide help entry from navigation menu"
+msgstr "skrýt nápovědu z navigačního menu"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album nenalezeno."
+#: ../../mod/admin.php:642
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help."
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Smazat album"
+#: ../../mod/admin.php:643
+msgid "Single user instance"
+msgstr "Jednouživatelská instance"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
+#: ../../mod/admin.php:643
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele"
 
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Smazat fotografii"
+#: ../../mod/admin.php:644
+msgid "Maximum image size"
+msgstr "Maximální velikost obrázků"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Opravdu chcete smazat tuto fotografii?"
+#: ../../mod/admin.php:644
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno."
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s byl označen v %2$s uživatelem %3$s"
+#: ../../mod/admin.php:645
+msgid "Maximum image length"
+msgstr "Maximální velikost obrázků"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "fotografie"
+#: ../../mod/admin.php:645
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu"
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "Velikost obrázku překračuje limit velikosti"
+#: ../../mod/admin.php:646
+msgid "JPEG image quality"
+msgstr "JPEG kvalita obrázku"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Soubor obrázku je prázdný."
+#: ../../mod/admin.php:646
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu."
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Není vybrána žádná fotografie"
+#: ../../mod/admin.php:648
+msgid "Register policy"
+msgstr "Politika registrace"
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
+#: ../../mod/admin.php:649
+msgid "Maximum Daily Registrations"
+msgstr "Maximální počet denních registrací"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Nahrání fotografií "
+#: ../../mod/admin.php:649
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt."
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Název nového alba: "
+#: ../../mod/admin.php:650
+msgid "Register text"
+msgstr "Registrace textu"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "nebo stávající název alba: "
+#: ../../mod/admin.php:650
+msgid "Will be displayed prominently on the registration page."
+msgstr "Bude zřetelně zobrazeno na registrační stránce."
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Nezobrazovat stav pro tento upload"
+#: ../../mod/admin.php:651
+msgid "Accounts abandoned after x days"
+msgstr "Účet je opuštěn po x dnech"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Oprávnění:"
+#: ../../mod/admin.php:651
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit."
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Soukromé Fotografie"
+#: ../../mod/admin.php:652
+msgid "Allowed friend domains"
+msgstr "Povolené domény přátel"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Veřejné Fotografie"
+#: ../../mod/admin.php:652
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Edituj album"
+#: ../../mod/admin.php:653
+msgid "Allowed email domains"
+msgstr "Povolené e-mailové domény"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Zobrazit nejprve nejnovější:"
+#: ../../mod/admin.php:653
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu."
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Zobrazit nejprve nejstarší:"
+#: ../../mod/admin.php:654
+msgid "Block public"
+msgstr "Blokovat veřejnost"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Zobraz fotografii"
+#: ../../mod/admin.php:654
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni."
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
+#: ../../mod/admin.php:655
+msgid "Force publish"
+msgstr "Publikovat"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Fotografie není k dispozici"
+#: ../../mod/admin.php:655
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu."
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Zobrazit obrázek"
+#: ../../mod/admin.php:656
+msgid "Global directory update URL"
+msgstr "aktualizace URL adresy Globálního adresáře "
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Editovat fotografii"
+#: ../../mod/admin.php:656
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci."
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Použít jako profilovou fotografii"
+#: ../../mod/admin.php:657
+msgid "Allow threaded items"
+msgstr "Povolit vícevláknové zpracování obsahu"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Zobrazit v plné velikosti"
+#: ../../mod/admin.php:657
+msgid "Allow infinite level threading for items on this site."
+msgstr "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken."
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Štítky: "
+#: ../../mod/admin.php:658
+msgid "Private posts by default for new users"
+msgstr "Nastavit pro nové uživatele příspěvky jako soukromé"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Odstranit všechny štítky]"
+#: ../../mod/admin.php:658
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné."
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Rotovat po směru hodinových ručiček (doprava)"
+#: ../../mod/admin.php:659
+msgid "Don't include post content in email notifications"
+msgstr "Nezahrnovat obsah příspěvků v emailových upozorněních"
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Rotovat proti směru hodinových ručiček (doleva)"
+#: ../../mod/admin.php:659
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. "
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Nové jméno alba"
+#: ../../mod/admin.php:660
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace."
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Titulek"
+#: ../../mod/admin.php:660
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy."
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Přidat štítek"
+#: ../../mod/admin.php:661
+msgid "Don't embed private images in posts"
+msgstr "Nepovolit přidávání soukromých správ v příspěvcích"
 
-#: ../../mod/photos.php:1512
+#: ../../mod/admin.php:661
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"Don't replace locally-hosted private photos in posts with an embedded copy "
+"of the image. This means that contacts who receive posts containing private "
+"photos will have to authenticate and load each image, which may take a "
+"while."
+msgstr "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas."
 
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Soukromé fotografie"
+#: ../../mod/admin.php:662
+msgid "Allow Users to set remote_self"
+msgstr "Umožnit uživatelům nastavit "
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Veřejné fotografie"
+#: ../../mod/admin.php:662
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu."
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Sdílet"
+#: ../../mod/admin.php:663
+msgid "Block multiple registrations"
+msgstr "Blokovat více registrací"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Aktuální fotografie"
+#: ../../mod/admin.php:663
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky."
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Účet schválen."
+#: ../../mod/admin.php:664
+msgid "OpenID support"
+msgstr "podpora OpenID"
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrace zrušena pro %s"
+#: ../../mod/admin.php:664
+msgid "OpenID support for registration and logins."
+msgstr "Podpora OpenID pro registraci a přihlašování."
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Přihlaste se, prosím."
+#: ../../mod/admin.php:665
+msgid "Fullname check"
+msgstr "kontrola úplného jména"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Přesunout účet"
+#: ../../mod/admin.php:665
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření."
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Můžete importovat účet z jiného Friendica serveru."
+#: ../../mod/admin.php:666
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Regulární výrazy"
 
-#: ../../mod/uimport.php:68
-msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."
+#: ../../mod/admin.php:666
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Použít PHP UTF8 regulární výrazy."
 
-#: ../../mod/uimport.php:69
+#: ../../mod/admin.php:667
+msgid "Community Page Style"
+msgstr "Styl komunitní stránky"
+
+#: ../../mod/admin.php:667
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"
+"Type of community page to show. 'Global community' shows every public "
+"posting from an open distributed network that arrived on this server."
+msgstr "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server."
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Soubor s účtem"
+#: ../../mod/admin.php:668
+msgid "Posts per user on community page"
+msgstr "Počet příspěvků na komunitní stránce"
 
-#: ../../mod/uimport.php:70
+#: ../../mod/admin.php:668
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""
-
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Položka není k dispozici."
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Položka nebyla nalezena."
+#: ../../mod/admin.php:669
+msgid "Enable OStatus support"
+msgstr "Zapnout podporu OStatus"
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "Odstranit tuto položku?"
+#: ../../mod/admin.php:669
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění."
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "zobrazit méně"
+#: ../../mod/admin.php:670
+msgid "OStatus conversation completion interval"
+msgstr "Interval dokončení konverzace OStatus"
 
-#: ../../boot.php:1122
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Aktualizace %s selhala. Zkontrolujte protokol chyb."
+#: ../../mod/admin.php:670
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol."
 
-#: ../../boot.php:1240
-msgid "Create a New Account"
-msgstr "Vytvořit nový účet"
+#: ../../mod/admin.php:671
+msgid "Enable Diaspora support"
+msgstr "Povolit podporu Diaspora"
 
-#: ../../boot.php:1265 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Odhlásit se"
+#: ../../mod/admin.php:671
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Poskytnout zabudovanou kompatibilitu sitě Diaspora."
 
-#: ../../boot.php:1268
-msgid "Nickname or Email address: "
-msgstr "Přezdívka nebo e-mailová adresa:"
+#: ../../mod/admin.php:672
+msgid "Only allow Friendica contacts"
+msgstr "Povolit pouze Friendica kontakty"
 
-#: ../../boot.php:1269
-msgid "Password: "
-msgstr "Heslo: "
+#: ../../mod/admin.php:672
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované."
 
-#: ../../boot.php:1270
-msgid "Remember me"
-msgstr "Pamatuj si mne"
+#: ../../mod/admin.php:673
+msgid "Verify SSL"
+msgstr "Ověřit SSL"
 
-#: ../../boot.php:1273
-msgid "Or login using OpenID: "
-msgstr "Nebo přihlášení pomocí OpenID: "
+#: ../../mod/admin.php:673
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem."
 
-#: ../../boot.php:1279
-msgid "Forgot your password?"
-msgstr "Zapomněli jste své heslo?"
+#: ../../mod/admin.php:674
+msgid "Proxy user"
+msgstr "Proxy uživatel"
 
-#: ../../boot.php:1282
-msgid "Website Terms of Service"
-msgstr "Podmínky použití serveru"
+#: ../../mod/admin.php:675
+msgid "Proxy URL"
+msgstr "Proxy URL adresa"
 
-#: ../../boot.php:1283
-msgid "terms of service"
-msgstr "podmínky použití"
+#: ../../mod/admin.php:676
+msgid "Network timeout"
+msgstr "čas síťového spojení vypršelo (timeout)"
 
-#: ../../boot.php:1285
-msgid "Website Privacy Policy"
-msgstr "Pravidla ochrany soukromí serveru"
+#: ../../mod/admin.php:676
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno)."
 
-#: ../../boot.php:1286
-msgid "privacy policy"
-msgstr "Ochrana soukromí"
+#: ../../mod/admin.php:677
+msgid "Delivery interval"
+msgstr "Interval doručování"
 
-#: ../../boot.php:1419
-msgid "Requested account is not available."
-msgstr "Požadovaný účet není dostupný."
+#: ../../mod/admin.php:677
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery."
 
-#: ../../boot.php:1501 ../../boot.php:1635
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Upravit profil"
+#: ../../mod/admin.php:678
+msgid "Poll interval"
+msgstr "Dotazovací interval"
 
-#: ../../boot.php:1600
-msgid "Message"
-msgstr "Zpráva"
+#: ../../mod/admin.php:678
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval."
 
-#: ../../boot.php:1606 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "Profily"
+#: ../../mod/admin.php:679
+msgid "Maximum Load Average"
+msgstr "Maximální průměrné zatížení"
 
-#: ../../boot.php:1606
-msgid "Manage/edit profiles"
-msgstr "Spravovat/upravit profily"
+#: ../../mod/admin.php:679
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50"
 
-#: ../../boot.php:1706
-msgid "Network:"
-msgstr "Síť:"
+#: ../../mod/admin.php:681
+msgid "Use MySQL full text engine"
+msgstr "Použít fulltextový vyhledávací stroj MySQL"
 
-#: ../../boot.php:1736 ../../boot.php:1822
-msgid "g A l F d"
-msgstr "g A l F d"
+#: ../../mod/admin.php:681
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků"
 
-#: ../../boot.php:1737 ../../boot.php:1823
-msgid "F d"
-msgstr "d. F"
+#: ../../mod/admin.php:682
+msgid "Suppress Language"
+msgstr "Potlačit Jazyk"
 
-#: ../../boot.php:1782 ../../boot.php:1863
-msgid "[today]"
-msgstr "[Dnes]"
+#: ../../mod/admin.php:682
+msgid "Suppress language information in meta information about a posting."
+msgstr "Potlačit jazykové informace v meta informacích o příspěvcích"
 
-#: ../../boot.php:1794
-msgid "Birthday Reminders"
-msgstr "Připomínka narozenin"
+#: ../../mod/admin.php:683
+msgid "Suppress Tags"
+msgstr "Potlačit štítky"
 
-#: ../../boot.php:1795
-msgid "Birthdays this week:"
-msgstr "Narozeniny tento týden:"
+#: ../../mod/admin.php:683
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Potlačit zobrazení listu hastagů na konci zprávy."
 
-#: ../../boot.php:1856
-msgid "[No description]"
-msgstr "[Žádný popis]"
+#: ../../mod/admin.php:684
+msgid "Path to item cache"
+msgstr "Cesta k položkám vyrovnávací paměti"
 
-#: ../../boot.php:1874
-msgid "Event Reminders"
-msgstr "Připomenutí událostí"
+#: ../../mod/admin.php:685
+msgid "Cache duration in seconds"
+msgstr "Doba platnosti vyrovnávací paměti v sekundách"
 
-#: ../../boot.php:1875
-msgid "Events this week:"
-msgstr "Události tohoto týdne:"
+#: ../../mod/admin.php:685
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1."
 
-#: ../../boot.php:2112 ../../include/nav.php:76
-msgid "Status"
-msgstr "Stav"
+#: ../../mod/admin.php:686
+msgid "Maximum numbers of comments per post"
+msgstr "Maximální počet komentářů k příspěvku"
 
-#: ../../boot.php:2115
-msgid "Status Messages and Posts"
-msgstr "Statusové zprávy a příspěvky "
+#: ../../mod/admin.php:686
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100."
 
-#: ../../boot.php:2122
-msgid "Profile Details"
-msgstr "Detaily profilu"
+#: ../../mod/admin.php:687
+msgid "Path for lock file"
+msgstr "Cesta k souboru zámku"
 
-#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Videa"
+#: ../../mod/admin.php:688
+msgid "Temp path"
+msgstr "Cesta k dočasným souborům"
 
-#: ../../boot.php:2146
-msgid "Events and Calendar"
-msgstr "Události a kalendář"
+#: ../../mod/admin.php:689
+msgid "Base path to installation"
+msgstr "Základní cesta k instalaci"
 
-#: ../../boot.php:2153
-msgid "Only You Can See This"
-msgstr "Toto můžete vidět jen Vy"
+#: ../../mod/admin.php:690
+msgid "Disable picture proxy"
+msgstr "Vypnutí obrázkové proxy"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Tento záznam byl editován"
+#: ../../mod/admin.php:690
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti."
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignorovat vlákno"
+#: ../../mod/admin.php:691
+msgid "Enable old style pager"
+msgstr "Aktivovat \"old style\" stránkování "
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "přestat ignorovat vlákno"
+#: ../../mod/admin.php:691
+msgid ""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky."
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "přepnout stav Ignorování"
+#: ../../mod/admin.php:692
+msgid "Only search in tags"
+msgstr "Hledat pouze ve štítkách"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "ignorován"
+#: ../../mod/admin.php:692
+msgid "On large systems the text search can slow down the system extremely."
+msgstr "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému."
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Kategorie:"
+#: ../../mod/admin.php:694
+msgid "New base url"
+msgstr "Nová výchozí url adresa"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Vyplněn pod:"
+#: ../../mod/admin.php:711
+msgid "Update has been marked successful"
+msgstr "Aktualizace byla označena jako úspěšná."
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "přes"
+#: ../../mod/admin.php:719
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována."
 
-#: ../../include/dbstructure.php:26
+#: ../../mod/admin.php:722
 #, php-format
-msgid ""
-"\n"
-"\t\t\tThe friendica developers released update %s recently,\n"
-"\t\t\tbut when I tried to install it, something went terribly wrong.\n"
-"\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n"
-"\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
-msgstr "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena."
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "Provádění aktualizace databáze %s skončilo chybou: %s"
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/admin.php:734
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Chybová zpráva je\n[pre]%s[/pre]"
+msgid "Executing %s failed with error: %s"
+msgstr "Vykonávání %s selhalo s chybou: %s"
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Při vytváření databázových tabulek došlo k chybám."
+#: ../../mod/admin.php:737
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Aktualizace %s byla úspěšně aplikována."
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr "Při provádění databázových změn došlo k chybám."
+#: ../../mod/admin.php:741
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná."
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Odhlášen."
+#: ../../mod/admin.php:743
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána."
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. "
+#: ../../mod/admin.php:762
+msgid "No failed updates."
+msgstr "Žádné neúspěšné aktualizace."
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Chybová zpráva byla:"
+#: ../../mod/admin.php:763
+msgid "Check database structure"
+msgstr "Ověření struktury databáze"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Přidat nový kontakt"
+#: ../../mod/admin.php:768
+msgid "Failed Updates"
+msgstr "Neúspěšné aktualizace"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Zadejte adresu nebo umístění webu"
+#: ../../mod/admin.php:769
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status."
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Příklad: jan@příklad.cz, http://příklad.cz/jana"
+#: ../../mod/admin.php:770
+msgid "Mark success (if update was manually applied)"
+msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)"
 
-#: ../../include/contact_widgets.php:24
+#: ../../mod/admin.php:771
+msgid "Attempt to execute this update step automatically"
+msgstr "Pokusit se provést tuto aktualizaci automaticky."
+
+#: ../../mod/admin.php:803
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "Pozvánka %d k dispozici"
-msgstr[1] "Pozvánky %d k dispozici"
-msgstr[2] "Pozvánky %d k dispozici"
-
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Nalézt lidi"
+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\tDrahý %1$s,\n\t\t\t\tadministrátor webu %2$s pro Vás vytvořil uživatelský účet."
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Zadejte jméno nebo zájmy"
+#: ../../mod/admin.php:806
+#, 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\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1$s\n\t\t\tpřihlašovací jméno:\t\t%2$s\n\t\t\theslo:\t\t%3$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4$s."
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Připojit / Následovat"
+#: ../../mod/admin.php:850
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s uživatel blokován/odblokován"
+msgstr[1] "%s uživatelů blokováno/odblokováno"
+msgstr[2] "%s uživatelů blokováno/odblokováno"
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Příklady: Robert Morgenstein, rybaření"
+#: ../../mod/admin.php:857
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s uživatel smazán"
+msgstr[1] "%s uživatelů smazáno"
+msgstr[2] "%s uživatelů smazáno"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Podobné zájmy"
+#: ../../mod/admin.php:896
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Uživatel '%s' smazán"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Náhodný Profil"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Uživatel '%s' odblokován"
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Pozvat přátele"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Uživatel '%s' blokován"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Sítě"
+#: ../../mod/admin.php:999
+msgid "Add User"
+msgstr "Přidat Uživatele"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Všechny sítě"
+#: ../../mod/admin.php:1000
+msgid "select all"
+msgstr "Vybrat vše"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Uložené složky"
+#: ../../mod/admin.php:1001
+msgid "User registrations waiting for confirm"
+msgstr "Registrace uživatele čeká na potvrzení"
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Všechno"
+#: ../../mod/admin.php:1002
+msgid "User waiting for permanent deletion"
+msgstr "Uživatel čeká na trvalé smazání"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Kategorie"
+#: ../../mod/admin.php:1003
+msgid "Request date"
+msgstr "Datum žádosti"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Obecné funkčnosti"
+#: ../../mod/admin.php:1004
+msgid "No registrations."
+msgstr "Žádné registrace."
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Vícenásobné profily"
+#: ../../mod/admin.php:1006
+msgid "Deny"
+msgstr "Odmítnout"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Schopnost vytvořit vícenásobné profily"
+#: ../../mod/admin.php:1010
+msgid "Site admin"
+msgstr "Site administrátor"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Nastavení vytváření příspěvků"
+#: ../../mod/admin.php:1011
+msgid "Account expired"
+msgstr "Účtu vypršela platnost"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Richtext Editor"
+#: ../../mod/admin.php:1014
+msgid "New User"
+msgstr "Nový uživatel"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Povolit richtext editor"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Register date"
+msgstr "Datum registrace"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Náhled příspěvku"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last login"
+msgstr "Datum posledního přihlášení"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Povolit náhledy příspěvků a komentářů před jejich zveřejněním"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last item"
+msgstr "Poslední položka"
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Automaticky zmíněná Fóra"
+#: ../../mod/admin.php:1015
+msgid "Deleted since"
+msgstr "Smazán od"
 
-#: ../../include/features.php:33
+#: ../../mod/admin.php:1018
 msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně"
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Síťové postranní widgety"
+#: ../../mod/admin.php:1019
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?"
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Vyhledávat dle Data"
+#: ../../mod/admin.php:1029
+msgid "Name of the new user."
+msgstr "Jméno nového uživatele"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Možnost označit příspěvky dle časového intervalu"
+#: ../../mod/admin.php:1030
+msgid "Nickname"
+msgstr "Přezdívka"
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Skupinový Filtr"
+#: ../../mod/admin.php:1030
+msgid "Nickname of the new user."
+msgstr "Přezdívka nového uživatele."
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny"
+#: ../../mod/admin.php:1031
+msgid "Email address of the new user."
+msgstr "Emailová adresa nového uživatele."
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Síťový Filtr"
+#: ../../mod/admin.php:1064
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s zakázán."
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě"
+#: ../../mod/admin.php:1068
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s povolen."
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Uložit kritéria vyhledávání pro znovupoužití"
+#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
+msgid "Disable"
+msgstr "Zakázat"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Síťové záložky"
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
+msgid "Enable"
+msgstr "Povolit"
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Osobní síťový záložka "
+#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
+msgid "Toggle"
+msgstr "Přepnout"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval "
+#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
+msgid "Author: "
+msgstr "Autor: "
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Nová záložka síť"
+#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
+msgid "Maintainer: "
+msgstr "Správce: "
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)"
+#: ../../mod/admin.php:1254
+msgid "No themes found."
+msgstr "Nenalezeny žádná témata."
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "záložka Síťové sdílené odkazy "
+#: ../../mod/admin.php:1316
+msgid "Screenshot"
+msgstr "Snímek obrazovky"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně"
+#: ../../mod/admin.php:1362
+msgid "[Experimental]"
+msgstr "[Experimentální]"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Nástroje Příspěvků/Komentářů"
+#: ../../mod/admin.php:1363
+msgid "[Unsupported]"
+msgstr "[Nepodporováno]"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Násobné mazání"
+#: ../../mod/admin.php:1390
+msgid "Log settings updated."
+msgstr "Nastavení protokolu aktualizováno."
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Označit a smazat více "
+#: ../../mod/admin.php:1446
+msgid "Clear"
+msgstr "Vyčistit"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Editovat Odeslané příspěvky"
+#: ../../mod/admin.php:1452
+msgid "Enable Debugging"
+msgstr "Povolit ladění"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Editovat a opravit příspěvky a komentáře po odeslání"
+#: ../../mod/admin.php:1453
+msgid "Log file"
+msgstr "Soubor s logem"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Štítkování"
+#: ../../mod/admin.php:1453
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica"
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Schopnost přidat štítky ke stávajícím příspvěkům"
+#: ../../mod/admin.php:1454
+msgid "Log level"
+msgstr "Úroveň auditu"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Kategorie příspěvků"
+#: ../../mod/admin.php:1504
+msgid "Close"
+msgstr "Zavřít"
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Přidat kategorie k Vašim příspěvkům"
+#: ../../mod/admin.php:1510
+msgid "FTP Host"
+msgstr "Hostitel FTP"
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Možnost řadit příspěvky do složek"
+#: ../../mod/admin.php:1511
+msgid "FTP Path"
+msgstr "Cesta FTP"
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Označit příspěvky jako neoblíbené"
+#: ../../mod/admin.php:1512
+msgid "FTP User"
+msgstr "FTP uživatel"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Možnost označit příspěvky/komentáře jako neoblíbené"
+#: ../../mod/admin.php:1513
+msgid "FTP Password"
+msgstr "FTP heslo"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Příspěvky s hvězdou"
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Obrázek překročil limit velikosti %d"
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Možnost označit příspěvky s indikátorem hvězdy"
+#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Obrázek není možné zprocesovat"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Utlumit upozornění na přísvěvky"
+#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Nahrání obrázku selhalo."
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Možnost stlumit upozornění pro vlákno"
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Vítá Vás %s"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Chybí URL adresa."
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Chyba OpenID protokolu. Navrátilo se žádné ID."
 
-#: ../../include/follow.php:59
+#: ../../mod/openid.php:53
 msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nenalezen účet a OpenID registrace na tomto serveru není dovolena."
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál."
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Výsledky hledání pro:"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Uvedená adresa profilu neposkytuje dostatečné informace."
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Odstranit termín"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Autor nebo jméno nenalezeno"
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Dle komentářů"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Této adrese neodpovídá žádné URL prohlížeče."
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Řadit podle data komentáře"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem."
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Dle data"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Použite mailo: před adresou k vynucení emailové kontroly."
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Řadit podle data příspěvku"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Zadaná adresa profilu patří do sítě, která  byla na tomto serveru zakázána."
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Příspěvky, které Vás zmiňují nebo zahrnují"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení."
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nové"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Nepodařilo se získat kontaktní informace."
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Proud aktivit - dle data"
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "následující"
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Sdílené odkazy"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem."
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Zajímavé odkazy"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Defaultní soukromá skrupina pro nové kontakty."
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "S hvězdičkou"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Všichni"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Oblíbené přízpěvky"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "editovat"
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě."
+msgstr[1] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
+msgstr[2] "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě."
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editovat skupinu"
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Vytvořit novou skupinu"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Žádná taková skupina"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakty, které nejsou v žádné skupině"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Skupina je prázdná"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Různé"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Skupina: "
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "rok"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "měsíc"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení."
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "den"
-
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nikdy"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Neplatný kontakt."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "méně než před sekundou"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- vyber -"
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "let"
+#: ../../mod/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Toto je Friendica, verze"
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "měsíců"
+#: ../../mod/friendica.php:60
+msgid "running at web location"
+msgstr "běžící na webu"
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "týdnem"
+#: ../../mod/friendica.php:62
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>."
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "týdny"
+#: ../../mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Pro hlášení chyb a námětů na změny navštivte:"
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "dnů"
+#: ../../mod/friendica.php:65
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com"
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "hodina"
+#: ../../mod/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Instalované pluginy/doplňky/aplikace:"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "hodin"
+#: ../../mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Nejsou žádné nainstalované doplňky/aplikace"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minuta"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Aplikace"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minut"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Žádné nainstalované aplikace."
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "sekunda"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Nahrát nové fotografie"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "sekund"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontakt byl zablokován"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "před %1$d %2$s"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album nenalezeno."
 
-#: ../../include/datetime.php:477 ../../include/items.php:2211
-#, php-format
-msgid "%s's birthday"
-msgstr "%s má narozeniny"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Smazat album"
 
-#: ../../include/datetime.php:478 ../../include/items.php:2212
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Veselé narozeniny %s"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Opravdu chcete smazat toto foto album a všechny jeho fotografie?"
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "Viditelné pro všechny"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Smazat fotografii"
 
-#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "zobrazit"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Opravdu chcete smazat tuto fotografii?"
 
-#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "nikdy nezobrazit"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s byl označen v %2$s uživatelem %3$s"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[bez předmětu]"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "fotografie"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "následování zastaveno"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "Velikost obrázku překračuje limit velikosti"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Šťouchnout"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Soubor obrázku je prázdný."
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Zobrazit Status"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Není vybrána žádná fotografie"
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Zobrazit Profil"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií."
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Zobrazit Fotky"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Nahrání fotografií "
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Zobrazit Příspěvky sítě"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Název nového alba: "
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Editovat Kontakty"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "nebo stávající název alba: "
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Odstranit kontakt"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Nezobrazovat stav pro tento upload"
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Poslat soukromou zprávu"
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Oprávnění:"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Vítejte "
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Soukromé Fotografie"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Prosím nahrejte profilovou fotografii"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Veřejné Fotografie"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Vítejte zpět "
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Edituj album"
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním."
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Zobrazit nejprve nejnovější:"
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "událost"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Zobrazit nejprve nejstarší:"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s šťouchnul %2$s"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Zobraz fotografii"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1005
-msgid "poked"
-msgstr "šťouchnut"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen."
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "příspěvek/položka"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Fotografie není k dispozici"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "uživatel %1$s označil %2$s's %3$s jako oblíbeného"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Zobrazit obrázek"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "odstranit"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Editovat fotografii"
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Smazat vybrané položky"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Použít jako profilovou fotografii"
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Následovat vlákno"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Zobrazit v plné velikosti"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "%s se to líbí."
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Štítky: "
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s se to nelíbí."
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Odstranit všechny štítky]"
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d lidem</span> se to líbí"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Rotovat po směru hodinových ručiček (doprava)"
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d lidem</span> se to nelíbí"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Rotovat proti směru hodinových ručiček (doleva)"
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "a"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Nové jméno alba"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr ", a %d dalších lidí"
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Titulek"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s se to líbí."
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Přidat štítek"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s se to nelíbí."
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Viditelné pro <strong>všechny</strong>"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Soukromé fotografie"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Prosím zadejte URL adresu videa:"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Veřejné fotografie"
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Prosím zadejte URL adresu zvukového záznamu:"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Aktuální fotografie"
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Štítek:"
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Příspěvek byl vytvořen"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Kde právě jste?"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt přidán"
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Smazat položku(y)?"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Přesunout účet"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "Poslat příspěvek na e-mail"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Můžete importovat účet z jiného Friendica serveru."
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Kontektory deaktivovány, od \"%s\" je aktivován."
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali."
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "oprávnění"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory"
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Zveřejnit na Groups"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Soubor s účtem"
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Zveřejnit na Groups"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\""
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Soukromý příspěvek"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Celkový limit pozvánek byl překročen"
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "zobrazit v plné velikosti"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : není platná e-mailová adresa."
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "novější"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Prosím přidejte se k nám na Friendice"
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "starší"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu."
 
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "předchozí"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Doručení zprávy se nezdařilo."
 
-#: ../../include/text.php:306
-msgid "first"
-msgstr "první"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d zpráva odeslána."
+msgstr[1] "%d zprávy odeslány."
+msgstr[2] "%d zprávy odeslány."
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "poslední"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Nemáte k dispozici žádné další pozvánky"
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "další"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí."
 
-#: ../../include/text.php:855
-msgid "No contacts"
-msgstr "Žádné kontakty"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru."
 
-#: ../../include/text.php:864
+#: ../../mod/invite.php:123
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontaktů"
-msgstr[2] "%d kontaktů"
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat."
 
-#: ../../include/text.php:1005
-msgid "poke"
-msgstr "šťouchnout"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy."
 
-#: ../../include/text.php:1006
-msgid "ping"
-msgstr "cinknout"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Poslat pozvánky"
 
-#: ../../include/text.php:1006
-msgid "pinged"
-msgstr "cinkut"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Zadejte e-mailové adresy, jednu na řádek:"
 
-#: ../../include/text.php:1007
-msgid "prod"
-msgstr "pobídnout"
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť."
 
-#: ../../include/text.php:1007
-msgid "prodded"
-msgstr "pobídnut"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Budete muset zadat kód této pozvánky: $invite_code"
 
-#: ../../include/text.php:1008
-msgid "slap"
-msgstr "dát facku"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:"
 
-#: ../../include/text.php:1008
-msgid "slapped"
-msgstr "být uhozen"
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com"
 
-#: ../../include/text.php:1009
-msgid "finger"
-msgstr "osahávat"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Přístup odmítnut"
 
-#: ../../include/text.php:1009
-msgid "fingered"
-msgstr "osaháván"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Nenalezen žádný platný účet."
 
-#: ../../include/text.php:1010
-msgid "rebuff"
-msgstr "odmítnout"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku."
 
-#: ../../include/text.php:1010
-msgid "rebuffed"
-msgstr "odmítnut"
+#: ../../mod/lostpass.php:42
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\tDrahý %1$s,\n\t\t\tNa \"%2$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti."
 
-#: ../../include/text.php:1024
-msgid "happy"
-msgstr "šťasný"
+#: ../../mod/lostpass.php:53
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2$s\n\t\tPřihlašovací jméno:\t%3$s"
 
-#: ../../include/text.php:1025
-msgid "sad"
-msgstr "smutný"
+#: ../../mod/lostpass.php:72
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Na %s bylo zažádáno o resetování hesla"
 
-#: ../../include/text.php:1026
-msgid "mellow"
-msgstr "jemný"
+#: ../../mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo."
 
-#: ../../include/text.php:1027
-msgid "tired"
-msgstr "unavený"
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Vaše heslo bylo na Vaše přání resetováno."
 
-#: ../../include/text.php:1028
-msgid "perky"
-msgstr "emergický"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Někdo Vám napsal na Vaši profilovou stránku"
 
-#: ../../include/text.php:1029
-msgid "angry"
-msgstr "nazlobený"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Uložte si nebo zkopírujte nové heslo - a pak"
 
-#: ../../include/text.php:1030
-msgid "stupified"
-msgstr "otupen"
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "klikněte zde pro přihlášení"
 
-#: ../../include/text.php:1031
-msgid "puzzled"
-msgstr "popletený"
+#: ../../mod/lostpass.php:114
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení)."
 
-#: ../../include/text.php:1032
-msgid "interested"
-msgstr "zajímavý"
+#: ../../mod/lostpass.php:125
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tDrahý %1$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t"
 
-#: ../../include/text.php:1033
-msgid "bitter"
-msgstr "hořký"
+#: ../../mod/lostpass.php:131
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1$s\n\t\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\t\tHeslo:\t%3$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce  nastavení účtu poté, co se přihlásíte.\n\t\t\t"
 
-#: ../../include/text.php:1034
-msgid "cheerful"
-msgstr "radnostný"
+#: ../../mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Vaše heslo bylo změněno na %s"
 
-#: ../../include/text.php:1035
-msgid "alive"
-msgstr "naživu"
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Zapomněli jste heslo?"
 
-#: ../../include/text.php:1036
-msgid "annoyed"
-msgstr "otráven"
+#: ../../mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce."
 
-#: ../../include/text.php:1037
-msgid "anxious"
-msgstr "znepokojený"
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Přezdívka nebo e-mail: "
 
-#: ../../include/text.php:1038
-msgid "cranky"
-msgstr "mrzutý"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Reset"
 
-#: ../../include/text.php:1039
-msgid "disturbed"
-msgstr "vyrušen"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Zdrojový text (bbcode):"
 
-#: ../../include/text.php:1040
-msgid "frustrated"
-msgstr "frustrovaný"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Zdrojový (Diaspora) text k převedení do BB kódování:"
 
-#: ../../include/text.php:1041
-msgid "motivated"
-msgstr "motivovaný"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Zdrojový vstup: "
 
-#: ../../include/text.php:1042
-msgid "relaxed"
-msgstr "uvolněný"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (raw HTML): "
 
-#: ../../include/text.php:1043
-msgid "surprised"
-msgstr "překvapený"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../include/text.php:1213
-msgid "Monday"
-msgstr "Pondělí"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../include/text.php:1213
-msgid "Tuesday"
-msgstr "Úterý"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../include/text.php:1213
-msgid "Wednesday"
-msgstr "Středa"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../include/text.php:1213
-msgid "Thursday"
-msgstr "Čtvrtek"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/text.php:1213
-msgid "Friday"
-msgstr "Pátek"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../include/text.php:1213
-msgid "Saturday"
-msgstr "Sobota"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Vstupní data (ve formátu Diaspora): "
 
-#: ../../include/text.php:1213
-msgid "Sunday"
-msgstr "Neděle"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../include/text.php:1217
-msgid "January"
-msgstr "Ledna"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Štítek odstraněn"
 
-#: ../../include/text.php:1217
-msgid "February"
-msgstr "Února"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Odebrat štítek položky"
 
-#: ../../include/text.php:1217
-msgid "March"
-msgstr "Března"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Vyberte štítek k odebrání: "
 
-#: ../../include/text.php:1217
-msgid "April"
-msgstr "Dubna"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Odstranit můj účet"
 
-#: ../../include/text.php:1217
-msgid "May"
-msgstr "Května"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit."
 
-#: ../../include/text.php:1217
-msgid "June"
-msgstr "Června"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Prosím, zadejte své heslo pro ověření:"
 
-#: ../../include/text.php:1217
-msgid "July"
-msgstr "Července"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Neplatný identifikátor profilu."
 
-#: ../../include/text.php:1217
-msgid "August"
-msgstr "Srpna"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor viditelnosti profilu "
 
-#: ../../include/text.php:1217
-msgid "September"
-msgstr "Září"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Viditelný pro"
 
-#: ../../include/text.php:1217
-msgid "October"
-msgstr "Října"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Všechny kontakty (se zabezpečeným přístupovým profilem )"
 
-#: ../../include/text.php:1217
-msgid "November"
-msgstr "Listopadu"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Shoda profilu"
 
-#: ../../include/text.php:1217
-msgid "December"
-msgstr "Prosinec"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu."
 
-#: ../../include/text.php:1437
-msgid "bytes"
-msgstr "bytů"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "zajímá se o:"
 
-#: ../../include/text.php:1461 ../../include/text.php:1473
-msgid "Click to open/close"
-msgstr "Klikněte pro otevření/zavření"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Název události a datum začátku jsou vyžadovány."
 
-#: ../../include/text.php:1702 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "standardní"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../include/text.php:1714
-msgid "Select an alternate language"
-msgstr "Vyběr alternativního jazyka"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editovat událost"
 
-#: ../../include/text.php:1970
-msgid "activity"
-msgstr "aktivita"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Vytvořit novou událost"
 
-#: ../../include/text.php:1973
-msgid "post"
-msgstr "příspěvek"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Předchozí"
 
-#: ../../include/text.php:2141
-msgid "Item filed"
-msgstr "Položka vyplněna"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Dále"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
-#: ../../include/bbcode.php:1048
-msgid "Image/photo"
-msgstr "Obrázek/fotografie"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "hodina:minuta"
 
-#: ../../include/bbcode.php:528
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Detaily události"
 
-#: ../../include/bbcode.php:562
+#: ../../mod/events.php:457
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>"
-
-#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
-msgid "$1 wrote:"
-msgstr "$1 napsal:"
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Formát je %s %s. Datum začátku a Název jsou vyžadovány."
 
-#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
-msgid "Encrypted content"
-msgstr "Šifrovaný obsah"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Událost začíná:"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(Bez předmětu)"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Vyžadováno"
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:33
-msgid "noreply"
-msgstr "neodpovídat"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Datum/čas konce není zadán nebo není relevantní"
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Nelze nalézt záznam v DNS pro databázový server '%s'"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Akce končí:"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Neznámé | Nezařazeno"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Nastavit časové pásmo pro uživatele s právem pro čtení"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Okamžitě blokovat "
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Popis:"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "pochybný, spammer, self-makerter"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Název:"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Znám ho ale, ale bez rozhodnutí"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Sdílet tuto událost"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, pravděpodobně neškodný"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} chce být Vaším přítelem"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Renomovaný, má mou důvěru"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} vám poslal zprávu"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Týdenně"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} požaduje registraci"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Měsíčně"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} komentoval příspěvek uživatele %s"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} má rád příspěvek uživatele %s"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} nemá rád příspěvek uživatele %s"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} se skamarádil s %s"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} zasláno"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} označen %s' příspěvek s #%s"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} vás zmínil v příspěvku"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Nálada"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Nastavte svou aktuální náladu a řekněte to Vašim přátelům"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/search.php:174 ../../mod/community.php:62
+#: ../../mod/community.php:71
+msgid "No results."
+msgstr "Žádné výsledky."
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora konektor"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Nepodařilo se najít kontaktní informace."
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Opravdu chcete smazat tuto zprávu?"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Zpráva odstraněna."
 
-#: ../../include/Scrape.php:614
-msgid " on Last.fm"
-msgstr " na Last.fm"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Konverzace odstraněna."
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Začíná:"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Žádné zprávy."
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Končí:"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Neznámý odesilatel - %s"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Vy a %s"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s a Vy"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Narozeniny:"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Odstranit konverzaci"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Věk:"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D M R - g:i A"
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/message.php:411
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "pro %1$d %2$s"
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d zpráva"
+msgstr[1] "%d zprávy"
+msgstr[2] "%d zpráv"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Štítky:"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Zpráva není k dispozici."
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Náboženství:"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Smazat zprávu"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Koníčky/zájmy:"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky."
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktní informace a sociální sítě:"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Poslat odpověď"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Hudební vkus:"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Není k dispozici."
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Knihy, literatura:"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:179 ../../mod/profiles.php:630
+#: ../../mod/dfrn_confirm.php:64
+msgid "Profile not found."
+msgstr "Profil nenalezen"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televize:"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil smazán."
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/tanec/kultura/zábava:"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Láska/romance"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nový profil vytvořen."
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Práce/zaměstnání:"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profil není možné naklonovat."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Škola/vzdělávání:"
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Jméno profilu je povinné."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Klikněte zde pro aktualizaci."
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Rodinný Stav"
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Tato akce překročí limit nastavené Vaším předplatným."
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Romatický partner"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Tato akce není v rámci Vašeho předplatného dostupná."
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Libí se mi"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Konec této relace"
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Nelibí se mi"
 
-#: ../../include/nav.php:76 ../../include/nav.php:148
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Vaše příspěvky a konverzace"
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Práce/Zaměstnání"
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Vaše profilová stránka"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Náboženství"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Vaše fotky"
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Politické přesvědčení"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Vaše videa"
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Pohlaví"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Vaše události"
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Sexuální orientace"
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Osobní poznámky"
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Domácí stránka"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Vaše osobní poznámky"
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
+msgid "Interests"
+msgstr "Zájmy"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Přihlásit se"
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Adresa"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Domácí stránka"
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
+msgid "Location"
+msgstr "Lokace"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Vytvořit účet"
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profil aktualizován."
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Nápověda a dokumentace"
+#: ../../mod/profiles.php:568
+msgid " and "
+msgstr " a "
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Aplikace"
+#: ../../mod/profiles.php:576
+msgid "public profile"
+msgstr "veřejný profil"
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Doplňkové aplikace, nástroje, hry"
+#: ../../mod/profiles.php:579
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s změnil %2$s na &ldquo;%3$s&rdquo;"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Hledání na stránkách tohoto webu"
+#: ../../mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Navštivte %2$s uživatele %1$s"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Konverzace na tomto webu"
+#: ../../mod/profiles.php:583
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s aktualizoval %2$s, změnou %3$s."
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
-msgstr "Konverzace v síti"
+#: ../../mod/profiles.php:658
+msgid "Hide contacts and friends:"
+msgstr "Skrýt kontakty a přátele:"
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "Adresář"
+#: ../../mod/profiles.php:663
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?"
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "Adresář"
+#: ../../mod/profiles.php:685
+msgid "Edit Profile Details"
+msgstr "Upravit podrobnosti profilu "
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "Informace"
+#: ../../mod/profiles.php:687
+msgid "Change Profile Photo"
+msgstr "Změna Profilové fotky"
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "Informace o této instanci Friendica"
+#: ../../mod/profiles.php:688
+msgid "View this profile"
+msgstr "Zobrazit tento profil"
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Konverzace od Vašich přátel"
+#: ../../mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Vytvořit nový profil pomocí tohoto nastavení"
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "Síťový Reset"
+#: ../../mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Klonovat tento profil"
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Načíst stránku Síť bez filtrů"
+#: ../../mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Smazat tento profil"
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "Žádosti přátel"
+#: ../../mod/profiles.php:692
+msgid "Basic information"
+msgstr "Základní informace"
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "Zobrazit všechny upozornění"
+#: ../../mod/profiles.php:693
+msgid "Profile picture"
+msgstr "Profilový obrázek"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "Označit všechny upozornění systému jako přečtené"
+#: ../../mod/profiles.php:695
+msgid "Preferences"
+msgstr "Nastavení"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Soukromá pošta"
+#: ../../mod/profiles.php:696
+msgid "Status information"
+msgstr "Statusové informace"
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "Doručená pošta"
+#: ../../mod/profiles.php:697
+msgid "Additional information"
+msgstr "Dodatečné informace"
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "Odeslaná pošta"
+#: ../../mod/profiles.php:699 ../../mod/newmember.php:36
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Nahrát profilovou fotografii"
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "Spravovat"
+#: ../../mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Jméno profilu:"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "Spravovat jiné stránky"
+#: ../../mod/profiles.php:701
+msgid "Your Full Name:"
+msgstr "Vaše celé jméno:"
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "Nastavení účtu"
+#: ../../mod/profiles.php:702
+msgid "Title/Description:"
+msgstr "Název / Popis:"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "Spravovat/Editovat Profily"
+#: ../../mod/profiles.php:703
+msgid "Your Gender:"
+msgstr "Vaše pohlaví:"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "Spravovat/upravit přátelé a kontakty"
+#: ../../mod/profiles.php:704
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Narozeniny uživatele (%s):"
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "Nastavení webu a konfigurace"
+#: ../../mod/profiles.php:705
+msgid "Street Address:"
+msgstr "Ulice:"
 
-#: ../../include/nav.php:188
-msgid "Navigation"
-msgstr "Navigace"
+#: ../../mod/profiles.php:706
+msgid "Locality/City:"
+msgstr "Město:"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "Mapa webu"
+#: ../../mod/profiles.php:707
+msgid "Postal/Zip Code:"
+msgstr "PSČ:"
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1063
-#: ../../include/api.php:1065
-msgid "User not found."
-msgstr "Uživatel nenalezen"
+#: ../../mod/profiles.php:708
+msgid "Country:"
+msgstr "Země:"
 
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
+#: ../../mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Region / stát:"
 
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
+#: ../../mod/profiles.php:710
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Rodinný stav:"
 
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut."
+#: ../../mod/profiles.php:711
+msgid "Who: (if applicable)"
+msgstr "Kdo: (pokud je možné)"
 
-#: ../../include/api.php:1272
-msgid "There is no status with this id."
-msgstr "Není tu žádný status s tímto id."
+#: ../../mod/profiles.php:712
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Příklady: jan123, Jan Novák, jan@seznam.cz"
 
-#: ../../include/api.php:1342
-msgid "There is no conversation with this id."
-msgstr "Nemáme žádnou konverzaci s tímto id."
+#: ../../mod/profiles.php:713
+msgid "Since [date]:"
+msgstr "Od [data]:"
 
-#: ../../include/api.php:1614
-msgid "Invalid request."
-msgstr "Neplatný požadavek."
+#: ../../mod/profiles.php:715
+msgid "Homepage URL:"
+msgstr "Odkaz na domovskou stránku:"
 
-#: ../../include/api.php:1625
-msgid "Invalid item."
-msgstr "Neplatná položka."
+#: ../../mod/profiles.php:718
+msgid "Religious Views:"
+msgstr "Náboženské přesvědčení:"
 
-#: ../../include/api.php:1635
-msgid "Invalid action. "
-msgstr "Neplatná akce"
+#: ../../mod/profiles.php:719
+msgid "Public Keywords:"
+msgstr "Veřejná klíčová slova:"
 
-#: ../../include/api.php:1643
-msgid "DB error"
-msgstr "DB chyba"
+#: ../../mod/profiles.php:720
+msgid "Private Keywords:"
+msgstr "Soukromá klíčová slova:"
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Pozvánka je vyžadována."
+#: ../../mod/profiles.php:723
+msgid "Example: fishing photography software"
+msgstr "Příklad: fishing photography software"
 
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Pozvánka nemohla být ověřena."
+#: ../../mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)"
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Neplatný odkaz OpenID"
+#: ../../mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Zadejte prosím požadované informace."
+#: ../../mod/profiles.php:726
+msgid "Tell us about yourself..."
+msgstr "Řekněte nám něco o sobě ..."
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Použijte prosím kratší jméno."
+#: ../../mod/profiles.php:727
+msgid "Hobbies/Interests"
+msgstr "Koníčky/zájmy"
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Jméno je příliš krátké."
+#: ../../mod/profiles.php:728
+msgid "Contact information and Social Networks"
+msgstr "Kontaktní informace a sociální sítě"
 
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)."
+#: ../../mod/profiles.php:729
+msgid "Musical interests"
+msgstr "Hudební vkus"
 
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Váš e-mailová doména není na tomto serveru mezi povolenými."
+#: ../../mod/profiles.php:730
+msgid "Books, literature"
+msgstr "Knihy, literatura"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Neplatná e-mailová adresa."
+#: ../../mod/profiles.php:731
+msgid "Television"
+msgstr "Televize"
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Tento e-mail nelze použít."
+#: ../../mod/profiles.php:732
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/tanec/kultura/zábava"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem."
+#: ../../mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Láska/romantika"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Přezdívka je již registrována. Prosím vyberte jinou."
+#: ../../mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Práce/zaměstnání"
 
-#: ../../include/user.php:148
+#: ../../mod/profiles.php:735
+msgid "School/education"
+msgstr "Škola/vzdělání"
+
+#: ../../mod/profiles.php:740
 msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu."
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo."
+#: ../../mod/profiles.php:750 ../../mod/directory.php:113
+msgid "Age: "
+msgstr "Věk: "
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Došlo k chybě při registraci. Zkuste to prosím znovu."
+#: ../../mod/profiles.php:803
+msgid "Edit/Manage Profiles"
+msgstr "Upravit / Spravovat profily"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu."
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica Komunikační server - Nastavení"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Přátelé"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Nelze se připojit k databázi."
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\n\t\tDrahý %1$s,\n\t\t\tDěkujeme Vám za registraci na %2$s. Váš účet byl vytvořen.\n\t"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Nelze vytvořit tabulku."
 
-#: ../../include/user.php:381
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3$s\n\t\t\tpřihlašovací jméno:\t%1$s\n\t\t\theslo:\t%5$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2$s."
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Vaše databáze Friendica  byla nainstalována."
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Sdílení oznámení ze sítě Diaspora"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete."
 
-#: ../../include/diaspora.php:2520
-msgid "Attachments:"
-msgstr "Přílohy:"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Přečtěte si prosím informace v souboru \"INSTALL.txt\"."
 
-#: ../../include/items.php:4555
-msgid "Do you really want to delete this item?"
-msgstr "Opravdu chcete smazat tuto položku?"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Testování systému"
 
-#: ../../include/items.php:4778
-msgid "Archives"
-msgstr "Archív"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Otestovat znovu"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Muž"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Databázové spojení"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Žena"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "V současné době muž"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, "
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "V současné době žena"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Většinou muž"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Jméno databázového serveru"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Většinou žena"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Přihlašovací jméno k databázi"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Heslo k databázovému účtu "
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Jméno databáze"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transexuál"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Emailová adresa administrátora webu"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodit"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutrál"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Prosím, vyberte výchozí časové pásmo pro váš server"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nespecifikováno"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Nastavení webu"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Jiné"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Nerozhodnuto"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Muži"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Cesta k \"PHP executable\""
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Ženy"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Příkazový řádek PHP"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbička"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "PHP executable není php cli binary (může být verze cgi-fgci)"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Bez preferencí"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Nalezena PHP verze:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuál"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexuál"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu."
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Toto je nutné pro fungování doručování zpráv."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "panic/panna"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetišista"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Hodně"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Generovat kriptovací klíče"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nesexuální"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "libCurl PHP modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Svobodný"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "GD graphics PHP modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Osamnělý"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Dostupný"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "mysqli PHP modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nedostupný"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "mb_string PHP modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Zamilovaný"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Zabouchnutý"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován."
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Seznamující se"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Chyba: požadovaný libcurl PHP modul není nainstalován."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Nevěrný"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Chyba: požadovaný GD graphics PHP modul není nainstalován."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Závislý na sexu"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Chyba: požadovaný openssl PHP modul není nainstalován."
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Přátelé / výhody"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Chyba: požadovaný mysqli PHP modul není nainstalován."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Ležérní"
-
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Zadaný"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován."
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Ženatý/vdaná"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Pomyslně ženatý/vdaná"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete."
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partneři"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři."
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Žijící ve společné domácnosti"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce."
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Zvykové právo"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php je editovatelné"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Šťastný"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování."
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nehledající"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Zrazen"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje."
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Odloučený"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 je nastaven pro zápis"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Nestálý"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru."
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Rozvedený(á)"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "Url rewrite je funkční."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Pomyslně rozvedený"
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru."
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Ovdovělý(á)"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dál<h1>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Nejistý"
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno."
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Je to složité"
+#: ../../mod/help.php:31
+msgid "Help:"
+msgstr "Nápověda:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Nezajímá"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Nastavení kontaktu změněno"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Zeptej se mě"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Aktualizace kontaktu selhala."
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Friendica Notifikace"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Opravit nastavení kontaktu"
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Děkujeme, "
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat."
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "%s Administrátor"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce."
 
-#: ../../include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Návrat k editoru kontaktu"
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Upozornění] Obdržena nová zpráva na %s"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Žádné zrcadlení"
 
-#: ../../include/enotify.php:70
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s Vám poslal novou soukromou zprávu na %2$s."
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Zrcadlit pro přeposlané příspěvky"
 
-#: ../../include/enotify.php:71
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s Vám poslal %2$s."
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Zrcadlit jako mé vlastní příspěvky"
 
-#: ../../include/enotify.php:71
-msgid "a private message"
-msgstr "soukromá zpráva"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Přezdívka účtu"
 
-#: ../../include/enotify.php:72
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět."
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - upřednostněno před Jménem/Přezdívkou"
 
-#: ../../include/enotify.php:124
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s[/url]"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL adresa účtu"
 
-#: ../../include/enotify.php:131
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]%3$s's %4$s[/url]"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "Žádost o přátelství URL"
 
-#: ../../include/enotify.php:139
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s okomentoval na [url=%2$s]Váš %3$s[/url]"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL adresa potvrzení přátelství"
 
-#: ../../include/enotify.php:149
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Upozornění] Komentář ke konverzaci #%1$d od %2$s"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "Notifikační URL adresa"
 
-#: ../../include/enotify.php:150
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "Uživatel %s okomentoval vámi sledovanou položku/konverzaci."
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Poll/Feed URL adresa"
 
-#: ../../include/enotify.php:153 ../../include/enotify.php:168
-#: ../../include/enotify.php:181 ../../include/enotify.php:194
-#: ../../include/enotify.php:212 ../../include/enotify.php:225
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět."
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nové foto z této URL adresy"
 
-#: ../../include/enotify.php:160
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr "Remote Self"
 
-#: ../../include/enotify.php:162
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s přidal příspěvek na Vaši profilovou zeď na %2$s"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr "Zrcadlení správ od tohoto kontaktu"
 
-#: ../../include/enotify.php:164
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s napřidáno na [url=%2$s]na Vaši zeď[/url]"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu."
 
-#: ../../include/enotify.php:175
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Upozornění] %s Vás označil"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Vítejte na Friendica"
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s Vás označil na %2$s"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Seznam doporučení pro nového člena"
 
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]Vás označil[/url]."
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace."
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notify] %s nasdílel nový příspěvek"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Začínáme"
 
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s nasdílel nový příspěvek na %2$s"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Prohlídka Friendica "
 
-#: ../../include/enotify.php:190
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]nasdílel příspěvek[/url]."
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit."
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Upozornění] %1$s Vás šťouchnul"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Navštivte své nastavení"
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s Vás šťouchnul na %2$s"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti."
 
-#: ../../include/enotify.php:204
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "Uživatel %1$s [url=%2$s]Vás šťouchnul[/url]."
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít."
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Upozornění] %s označil Váš příspěvek"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají."
 
-#: ../../include/enotify.php:220
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s označil Váš příspěvek na %2$s"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editujte Váš profil"
 
-#: ../../include/enotify.php:221
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s označil [url=%2$s]Váš příspěvek[/url]"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky."
 
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Upozornění] Obdrženo přestavení"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profilová klíčová slova"
 
-#: ../../include/enotify.php:233
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Obdržel jste žádost o spojení od '%1$s' na %2$s"
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství."
 
-#: ../../include/enotify.php:234
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Obdržel jste [url=%1$s]žádost o spojení[/url] od %2$s."
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Probíhá pokus o připojení"
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Můžete navštívit jejich profil na %s"
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace."
 
-#: ../../include/enotify.php:239
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí představení."
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web."
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica:Upozornění] Nový člověk s vámi sdílí"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importování emaiů"
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "uživatel %1$s sdílí s vámi ma %2$s"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu"
 
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica:Upozornění] Máte nového následovníka"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Navštivte Vaši stránku s kontakty"
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Máte nového následovníka na %2$s : %1$s"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>."
 
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Upozornění] Obdržen návrh na přátelství"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Navštivte lokální adresář Friendica"
 
-#: ../../include/enotify.php:271
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Obdržel jste návrh přátelství od '%1$s' na %2$s"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována."
 
-#: ../../include/enotify.php:272
-#, php-format
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Nalezení nových lidí"
+
+#: ../../mod/newmember.php:62
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Obdržel jste [url=%1$s]návrh přátelství[/url] s %2$s from %3$s."
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin."
 
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "Jméno:"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Seskupte si své kontakty"
 
-#: ../../include/enotify.php:278
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť."
 
-#: ../../include/enotify.php:281
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Prosím navštivte %s pro schválení či zamítnutí doporučení."
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Proč nejsou mé příspěvky veřejné?"
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica:Upozornění] Spojení akceptováno"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu"
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' akceptoval váš požadavek na spojení na %2$s"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Získání nápovědy"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s akceptoval váš [url=%1$s]požadavek na spojení[/url]."
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Navštivte sekci nápovědy"
 
-#: ../../include/enotify.php:294
+#: ../../mod/newmember.php:82
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení."
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací."
 
-#: ../../include/enotify.php:297 ../../include/enotify.php:311
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Prosím navštivte %s  pokud chcete změnit tento vztah."
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Šťouchanec"
 
-#: ../../include/enotify.php:307
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky.."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "někoho šťouchnout nebo mu provést  jinou věc"
 
-#: ../../include/enotify.php:309
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr "''%1$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Příjemce"
 
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Systém Friendica :Upozornění] registrační požadavek"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Vyberte, co si přejete příjemci udělat"
 
-#: ../../include/enotify.php:323
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Obdržel jste požadavek na registraci od '%1$s' na %2$s"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Změnit tento příspěvek na soukromý"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Obdržel jste [url=%1$s]požadavek na registraci[/url] od '%2$s'."
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "Položka byla odstraněna."
 
-#: ../../include/enotify.php:327
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Plné jméno:\t%1$s\\nUmístění webu:\t%2$s\\nPřihlašovací účet:\t%3$s (%4$s)"
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s následuje %3$s uživatele %2$s"
 
-#: ../../include/enotify.php:330
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s vítá %2$s"
 
-#: ../../include/oembed.php:212
-msgid "Embedded content"
-msgstr "vložený obsah"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen."
 
-#: ../../include/oembed.php:221
-msgid "Embedding disabled"
-msgstr "Vkládání zakázáno"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Odpověď ze vzdáleného serveru nebyla srozumitelná."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Chyba dekódování uživatelského účtu"
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Neočekávaná odpověď od vzdáleného serveru:"
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Potvrzení úspěšně dokončena."
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Chyba! Nelze ověřit přezdívku"
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Vzdálený server oznámil:"
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Uživatel '%s' již na tomto serveru existuje!"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Chyba vytváření uživatele"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Žádost o propojení selhala nebo byla zrušena."
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Chyba vytváření uživatelského účtu"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Nelze nastavit fotografii kontaktu."
 
-#: ../../include/uimport.php:220
+#: ../../mod/dfrn_confirm.php:571
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d kontakt nenaimporován"
-msgstr[1] "%d kontaktů nenaimporováno"
-msgstr[2] "%d kontakty nenaimporovány"
-
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem"
+msgid "No user record found for '%s' "
+msgstr "Pro '%s' nenalezen žádný uživatelský záznam "
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "přepnout mobil"
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "Náš šifrovací klíč zřejmě přestal správně fungovat."
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Nastavení téma"
+#: ../../mod/dfrn_confirm.php:592
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat."
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)"
+#: ../../mod/dfrn_confirm.php:613
+msgid "Contact record was not found for you on our site."
+msgstr "Kontakt záznam nebyl nalezen pro vás na našich stránkách."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Nastav velikost písma pro přízpěvky a komentáře."
+#: ../../mod/dfrn_confirm.php:627
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "V adresáři není k dispozici veřejný klíč pro URL %s."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Nastavení šířku grafické šablony"
+#: ../../mod/dfrn_confirm.php:647
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Barevné schéma"
+#: ../../mod/dfrn_confirm.php:658
+msgid "Unable to set your contact credentials on our system."
+msgstr "Nelze nastavit Vaše přihlašovací údaje v našem systému."
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Nastav výšku řádku  pro přízpěvky a komentáře."
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
+msgstr "Nelze aktualizovat Váš profil v našem systému"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Nastavit barevné schéma"
+#: ../../mod/dfrn_confirm.php:797
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s se připojil k %2$s"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Zarovnání"
+#: ../../mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Nelze nalézt původní příspěvek."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Vlevo"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Prázdný příspěvek odstraněn."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Uprostřed"
+#: ../../mod/item.php:839
+msgid "System error. Post not saved."
+msgstr "Chyba systému. Příspěvek nebyl uložen."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Velikost písma u příspěvků"
+#: ../../mod/item.php:965
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica."
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Velikost písma textů"
+#: ../../mod/item.php:967
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Můžete je navštívit online na adrese %s"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Nastav rozlišení pro prostřední sloupec"
+#: ../../mod/item.php:968
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam."
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Nastavení barevného schematu"
+#: ../../mod/item.php:972
+#, php-format
+msgid "%s posted an update."
+msgstr "%s poslal aktualizaci."
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Nastavit přiblížení pro Earth Layer"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo."
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Nastavit zeměpistnou délku (X) pro Earth Layers"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Nepodařilo se snížit velikost obrázku [%s]."
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Nastavit zeměpistnou šířku (X) pro Earth Layers"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě."
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
-msgstr "Komunitní stránky"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Obrázek nelze zpracovat "
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Nahrát soubor:"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Komunitní profily"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Vybrat profil:"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Pomoc nebo @ProNováčky ?"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Nahrát"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Propojené služby"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "přeskočit tento krok "
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Nalézt Přátele"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "Vybrat fotografii z Vašich fotoalb"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Poslední uživatelé"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Oříznout obrázek"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Poslední fotografie"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení."
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Poslední líbí/nelíbí"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Editace dokončena"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Vaše kontakty"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Obrázek byl úspěšně nahrán."
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Vaše osobní fotky"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Přátelé uživatele %s"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokální Adresář"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Žádní přátelé k zobrazení"
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Nastavit faktor přiblížení pro Earth Layers"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Nalézt na tomto webu"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Zobrazit/skrýt boxy na pravém sloupci:"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Adresář serveru"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "Nastavit styl"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Pohlaví: "
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "zelená nula"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Žádné záznamy (některé položky mohou být skryty)."
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "fialová nula"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Časová konverze"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "velikonoční zajíček"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách"
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "tmavá nula"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC čas: %s"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "komiksová"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuální časové pásmo: %s"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "flákač"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Převedený lokální čas : %s"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variace"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Prosím, vyberte své časové pásmo:"
index 9b38cc821545825e8b7da379a690c88ed3c1adea..e642279dc59af7ede4e568fb43c73e962795100e 100644 (file)
@@ -5,1366 +5,363 @@ function string_plural_select_cs($n){
        return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d kontakt upraven.",
-       1 => "%d kontakty upraveny",
-       2 => "%d kontaktů upraveno",
-);
-$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu.";
-$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil.";
-$a->strings["Contact updated."] = "Kontakt aktualizován.";
-$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
+$a->strings["Submit"] = "Odeslat";
+$a->strings["Theme settings"] = "Nastavení téma";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)";
+$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře.";
+$a->strings["Set theme width"] = "Nastavení šířku grafické šablony";
+$a->strings["Color scheme"] = "Barevné schéma";
+$a->strings["Set style"] = "Nastavit styl";
+$a->strings["default"] = "standardní";
+$a->strings["greenzero"] = "zelená nula";
+$a->strings["purplezero"] = "fialová nula";
+$a->strings["easterbunny"] = "velikonoční zajíček";
+$a->strings["darkzero"] = "tmavá nula";
+$a->strings["comix"] = "komiksová";
+$a->strings["slackr"] = "flákač";
+$a->strings["Variations"] = "Variace";
+$a->strings["don't show"] = "nikdy nezobrazit";
+$a->strings["show"] = "zobrazit";
+$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku  pro přízpěvky a komentáře.";
+$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec";
+$a->strings["Set color scheme"] = "Nastavení barevného schematu";
+$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers";
+$a->strings["Community Pages"] = "Komunitní stránky";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Community Profiles"] = "Komunitní profily";
+$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
+$a->strings["Connect Services"] = "Propojené služby";
+$a->strings["Find Friends"] = "Nalézt Přátele";
+$a->strings["Last users"] = "Poslední uživatelé";
+$a->strings["Last photos"] = "Poslední fotografie";
+$a->strings["Last likes"] = "Poslední líbí/nelíbí";
+$a->strings["Home"] = "Domů";
+$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
+$a->strings["Profile"] = "Profil";
+$a->strings["Your profile page"] = "Vaše profilová stránka";
+$a->strings["Contacts"] = "Kontakty";
+$a->strings["Your contacts"] = "Vaše kontakty";
+$a->strings["Photos"] = "Fotografie";
+$a->strings["Your photos"] = "Vaše fotky";
+$a->strings["Events"] = "Události";
+$a->strings["Your events"] = "Vaše události";
+$a->strings["Personal notes"] = "Osobní poznámky";
+$a->strings["Your personal photos"] = "Vaše osobní fotky";
+$a->strings["Community"] = "Komunita";
+$a->strings["event"] = "událost";
+$a->strings["status"] = "Stav";
+$a->strings["photo"] = "fotografie";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s";
+$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
+$a->strings["Profile Photos"] = "Profilové fotografie";
+$a->strings["Local Directory"] = "Lokální Adresář";
+$a->strings["Global Directory"] = "Globální adresář";
+$a->strings["Similar Interests"] = "Podobné zájmy";
+$a->strings["Friend Suggestions"] = "Návrhy přátel";
+$a->strings["Invite Friends"] = "Pozvat přátele";
+$a->strings["Settings"] = "Nastavení";
+$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers";
+$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:";
+$a->strings["Alignment"] = "Zarovnání";
+$a->strings["Left"] = "Vlevo";
+$a->strings["Center"] = "Uprostřed";
+$a->strings["Posts font size"] = "Velikost písma u příspěvků";
+$a->strings["Textareas font size"] = "Velikost písma textů";
+$a->strings["Set colour scheme"] = "Nastavit barevné schéma";
+$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření.";
+$a->strings["Not Found"] = "Nenalezen";
+$a->strings["Page not found."] = "Stránka nenalezena";
+$a->strings["Permission denied"] = "Nedostatečné oprávnění";
 $a->strings["Permission denied."] = "Přístup odmítnut.";
-$a->strings["Contact has been blocked"] = "Kontakt byl zablokován";
-$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován";
-$a->strings["Contact has been ignored"] = "Kontakt bude ignorován";
-$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován";
-$a->strings["Contact has been archived"] = "Kontakt byl archivován";
-$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu.";
-$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?";
+$a->strings["toggle mobile"] = "přepnout mobil";
+$a->strings["Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"] = "Přejete si potvrdit vaši identitu (<tt>%s</tt>) s <tt>%s</tt>";
+$a->strings["Confirm"] = "Potvrdit";
+$a->strings["Do not confirm"] = "Nepotvrzovat";
+$a->strings["Trust This Site"] = "Důvěřovat tomuto webu";
+$a->strings["No Identifier Sent"] = "Nezaslán žádný identifikátor";
+$a->strings["Requested identity don't match logged in user."] = "Požadovaná identita neodpovídá přihlášenému uživateli";
+$a->strings["Please wait; you are being redirected to <%s>"] = "Čekejte prosím, budete přesměrován na <%s>";
+$a->strings["Delete this item?"] = "Odstranit tuto položku?";
+$a->strings["Comment"] = "Okomentovat";
+$a->strings["show more"] = "zobrazit více";
+$a->strings["show fewer"] = "zobrazit méně";
+$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
+$a->strings["Create a New Account"] = "Vytvořit nový účet";
+$a->strings["Register"] = "Registrovat";
+$a->strings["Logout"] = "Odhlásit se";
+$a->strings["Login"] = "Přihlásit se";
+$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:";
+$a->strings["Password: "] = "Heslo: ";
+$a->strings["Remember me"] = "Pamatuj si mne";
+$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: ";
+$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
+$a->strings["Password Reset"] = "Obnovení hesla";
+$a->strings["Website Terms of Service"] = "Podmínky použití serveru";
+$a->strings["terms of service"] = "podmínky použití";
+$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
+$a->strings["privacy policy"] = "Ochrana soukromí";
+$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
+$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
+$a->strings["Edit profile"] = "Upravit profil";
+$a->strings["Connect"] = "Spojit";
+$a->strings["Message"] = "Zpráva";
+$a->strings["Profiles"] = "Profily";
+$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
+$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
+$a->strings["Create New Profile"] = "Vytvořit nový profil";
+$a->strings["Profile Image"] = "Profilový obrázek";
+$a->strings["visible to everybody"] = "viditelné pro všechny";
+$a->strings["Edit visibility"] = "Upravit viditelnost";
+$a->strings["Location:"] = "Místo:";
+$a->strings["Gender:"] = "Pohlaví:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Domácí stránka:";
+$a->strings["About:"] = "O mě:";
+$a->strings["Network:"] = "Síť:";
+$a->strings["g A l F d"] = "g A l F d";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[Dnes]";
+$a->strings["Birthday Reminders"] = "Připomínka narozenin";
+$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
+$a->strings["[No description]"] = "[Žádný popis]";
+$a->strings["Event Reminders"] = "Připomenutí událostí";
+$a->strings["Events this week:"] = "Události tohoto týdne:";
+$a->strings["Status"] = "Stav";
+$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
+$a->strings["Profile Details"] = "Detaily profilu";
+$a->strings["Photo Albums"] = "Fotoalba";
+$a->strings["Videos"] = "Videa";
+$a->strings["Events and Calendar"] = "Události a kalendář";
+$a->strings["Personal Notes"] = "Osobní poznámky";
+$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
+$a->strings["General Features"] = "Obecné funkčnosti";
+$a->strings["Multiple Profiles"] = "Vícenásobné profily";
+$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
+$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
+$a->strings["Richtext Editor"] = "Richtext Editor";
+$a->strings["Enable richtext editor"] = "Povolit richtext editor";
+$a->strings["Post Preview"] = "Náhled příspěvku";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
+$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně";
+$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety";
+$a->strings["Search by Date"] = "Vyhledávat dle Data";
+$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
+$a->strings["Group Filter"] = "Skupinový Filtr";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
+$a->strings["Network Filter"] = "Síťový Filtr";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
+$a->strings["Saved Searches"] = "Uložená hledání";
+$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
+$a->strings["Network Tabs"] = "Síťové záložky";
+$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
+$a->strings["Network New Tab"] = "Nová záložka síť";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
+$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
+$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
+$a->strings["Multiple Deletion"] = "Násobné mazání";
+$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
+$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
+$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
+$a->strings["Tagging"] = "Štítkování";
+$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
+$a->strings["Post Categories"] = "Kategorie příspěvků";
+$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
+$a->strings["Saved Folders"] = "Uložené složky";
+$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
+$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
+$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
+$a->strings["Star Posts"] = "Příspěvky s hvězdou";
+$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
+$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky";
+$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno";
+$a->strings["%s's birthday"] = "%s má narozeniny";
+$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s";
+$a->strings["[Name Withheld]"] = "[Jméno odepřeno]";
+$a->strings["Item not found."] = "Položka nenalezena.";
+$a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?";
 $a->strings["Yes"] = "Ano";
 $a->strings["Cancel"] = "Zrušit";
-$a->strings["Contact has been removed."] = "Kontakt byl odstraněn.";
-$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s";
-$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s";
-$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi";
-$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt.";
-$a->strings["Never"] = "Nikdy";
-$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)";
-$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)";
-$a->strings["Suggest friends"] = "Navrhněte přátelé";
-$a->strings["Network type: %s"] = "Typ sítě: %s";
+$a->strings["Archives"] = "Archív";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem.";
+$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
+$a->strings["Everybody"] = "Všichni";
+$a->strings["edit"] = "editovat";
+$a->strings["Groups"] = "Skupiny";
+$a->strings["Edit group"] = "Editovat skupinu";
+$a->strings["Create a new group"] = "Vytvořit novou skupinu";
+$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
+$a->strings["add"] = "přidat";
+$a->strings["Wall Photos"] = "Fotografie na zdi";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'";
+$a->strings["Add New Contact"] = "Přidat nový kontakt";
+$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
+$a->strings["%d invitation available"] = array(
+       0 => "Pozvánka %d k dispozici",
+       1 => "Pozvánky %d k dispozici",
+       2 => "Pozvánky %d k dispozici",
+);
+$a->strings["Find People"] = "Nalézt lidi";
+$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
+$a->strings["Connect/Follow"] = "Připojit / Následovat";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
+$a->strings["Find"] = "Najít";
+$a->strings["Random Profile"] = "Náhodný Profil";
+$a->strings["Networks"] = "Sítě";
+$a->strings["All Networks"] = "Všechny sítě";
+$a->strings["Everything"] = "Všechno";
+$a->strings["Categories"] = "Kategorie";
 $a->strings["%d contact in common"] = array(
        0 => "%d sdílený kontakt",
        1 => "%d sdílených kontaktů",
        2 => "%d sdílených kontaktů",
 );
-$a->strings["View all contacts"] = "Zobrazit všechny kontakty";
-$a->strings["Unblock"] = "Odblokovat";
-$a->strings["Block"] = "Blokovat";
-$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno";
-$a->strings["Unignore"] = "Přestat ignorovat";
-$a->strings["Ignore"] = "Ignorovat";
-$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno";
-$a->strings["Unarchive"] = "Vrátit z archívu";
-$a->strings["Archive"] = "Archivovat";
-$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno";
-$a->strings["Repair"] = "Opravit";
-$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu";
-$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!";
-$a->strings["Contact Editor"] = "Editor kontaktu";
-$a->strings["Submit"] = "Odeslat";
-$a->strings["Profile Visibility"] = "Viditelnost profilu";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.";
-$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky";
-$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu";
-$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
-$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt";
-$a->strings["Ignore contact"] = "Ignorovat kontakt";
-$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL ";
-$a->strings["View conversations"] = "Zobrazit konverzace";
-$a->strings["Delete contact"] = "Odstranit kontakt";
-$a->strings["Last update:"] = "Poslední aktualizace:";
-$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky";
-$a->strings["Update now"] = "Aktualizovat";
-$a->strings["Currently blocked"] = "V současnosti zablokováno";
-$a->strings["Currently ignored"] = "V současnosti ignorováno";
-$a->strings["Currently archived"] = "Aktuálně archivován";
-$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné";
-$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky";
-$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu";
-$a->strings["Fetch further information for feeds"] = "Načítat další informace pro kanál";
-$a->strings["Disabled"] = "Zakázáno";
-$a->strings["Fetch information"] = "Načítat informace";
-$a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova";
-$a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"";
-$a->strings["Suggestions"] = "Doporučení";
-$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele";
-$a->strings["All Contacts"] = "Všechny kontakty";
-$a->strings["Show all contacts"] = "Zobrazit všechny kontakty";
-$a->strings["Unblocked"] = "Odblokován";
-$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty";
-$a->strings["Blocked"] = "Blokován";
-$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty";
-$a->strings["Ignored"] = "Ignorován";
-$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty";
-$a->strings["Archived"] = "Archivován";
-$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty";
-$a->strings["Hidden"] = "Skrytý";
-$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty";
-$a->strings["Mutual Friendship"] = "Vzájemné přátelství";
-$a->strings["is a fan of yours"] = "je Váš fanoušek";
-$a->strings["you are a fan of"] = "jste fanouškem";
-$a->strings["Edit contact"] = "Editovat kontakt";
-$a->strings["Contacts"] = "Kontakty";
-$a->strings["Search your contacts"] = "Prohledat Vaše kontakty";
-$a->strings["Finding: "] = "Zjištění: ";
-$a->strings["Find"] = "Najít";
-$a->strings["Update"] = "Aktualizace";
-$a->strings["Delete"] = "Odstranit";
-$a->strings["No profile"] = "Žádný profil";
-$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
-$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
-$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
-$a->strings["Permission denied"] = "Nedostatečné oprávnění";
-$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
-$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
-$a->strings["Profile"] = "Profil";
-$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
-$a->strings["Visible To"] = "Viditelný pro";
-$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )";
-$a->strings["Item not found."] = "Položka nenalezena.";
-$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
-$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen.";
-$a->strings["Item has been removed."] = "Položka byla odstraněna.";
-$a->strings["Welcome to Friendica"] = "Vítejte na Friendica";
-$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace.";
-$a->strings["Getting Started"] = "Začínáme";
-$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica ";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit.";
-$a->strings["Settings"] = "Nastavení";
-$a->strings["Go to Your Settings"] = "Navštivte své nastavení";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít.";
-$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají.";
-$a->strings["Edit Your Profile"] = "Editujte Váš profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky.";
-$a->strings["Profile Keywords"] = "Profilová klíčová slova";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství.";
-$a->strings["Connecting"] = "Probíhá pokus o připojení";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web.";
-$a->strings["Importing Emails"] = "Importování emaiů";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu";
-$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>.";
-$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována.";
-$a->strings["Finding New People"] = "Nalezení nových lidí";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.";
-$a->strings["Groups"] = "Skupiny";
-$a->strings["Group Your Contacts"] = "Seskupte si své kontakty";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.";
-$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu";
-$a->strings["Getting Help"] = "Získání nápovědy";
-$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
-$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
-$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
-$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
-$a->strings["Profile Photos"] = "Profilové fotografie";
-$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s].";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě.";
-$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
-$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d";
-$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
-$a->strings["Upload File:"] = "Nahrát soubor:";
-$a->strings["Select a profile:"] = "Vybrat profil:";
-$a->strings["Upload"] = "Nahrát";
-$a->strings["or"] = "nebo";
-$a->strings["skip this step"] = "přeskočit tento krok ";
-$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
-$a->strings["Crop Image"] = "Oříznout obrázek";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení.";
-$a->strings["Done Editing"] = "Editace dokončena";
-$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán.";
-$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
-$a->strings["photo"] = "fotografie";
-$a->strings["status"] = "Stav";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
-$a->strings["Tag removed"] = "Štítek odstraněn";
-$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
-$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
-$a->strings["Remove"] = "Odstranit";
-$a->strings["Save to Folder:"] = "Uložit do složky:";
-$a->strings["- select -"] = "- vyber -";
-$a->strings["Save"] = "Uložit";
-$a->strings["Contact added"] = "Kontakt přidán";
-$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek.";
-$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn.";
-$a->strings["Wall Photos"] = "Fotografie na zdi";
-$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica.";
-$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam.";
-$a->strings["%s posted an update."] = "%s poslal aktualizaci.";
-$a->strings["Group created."] = "Skupina vytvořena.";
-$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
-$a->strings["Group not found."] = "Skupina nenalezena.";
-$a->strings["Group name changed."] = "Název skupiny byl změněn.";
-$a->strings["Save Group"] = "Uložit Skupinu";
-$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
-$a->strings["Group Name: "] = "Název skupiny: ";
-$a->strings["Group removed."] = "Skupina odstraněna. ";
-$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
-$a->strings["Group Editor"] = "Editor skupin";
-$a->strings["Members"] = "Členové";
-$a->strings["You must be logged in to use addons. "] = "Musíte být přihlášeni pro použití rozšíření.";
-$a->strings["Applications"] = "Aplikace";
-$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
-$a->strings["Profile not found."] = "Profil nenalezen";
-$a->strings["Contact not found."] = "Kontakt nenalezen.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen.";
-$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná.";
-$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:";
-$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena.";
-$a->strings["Remote site reported: "] = "Vzdálený server oznámil:";
-$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu.";
-$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena.";
-$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s";
-$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam ";
-$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat.";
-$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách.";
-$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat.";
-$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému.";
-$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému";
-$a->strings["[Name Withheld]"] = "[Jméno odepřeno]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s";
-$a->strings["Requested profile is not available."] = "Požadovaný profil není k dispozici.";
-$a->strings["Tips for New Members"] = "Tipy pro nové členy";
-$a->strings["No videos selected"] = "Není vybráno žádné video";
-$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
-$a->strings["View Video"] = "Zobrazit video";
-$a->strings["View Album"] = "Zobrazit album";
-$a->strings["Recent Videos"] = "Aktuální Videa";
-$a->strings["Upload New Videos"] = "Nahrát nová videa";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s";
-$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány ";
-$a->strings["Suggest Friends"] = "Navrhněte přátelé";
-$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s";
-$a->strings["No valid account found."] = "Nenalezen žádný platný účet.";
-$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo.";
-$a->strings["Password Reset"] = "Obnovení hesla";
-$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno.";
-$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku";
-$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
-$a->strings["click here to login"] = "klikněte zde pro přihlášení";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDrahý %1\$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1\$s\n\t\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\t\tHeslo:\t%3\$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce  nastavení účtu poté, co se přihlásíte.\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s";
-$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce.";
-$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: ";
-$a->strings["Reset"] = "Reset";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s má rád %2\$s' na %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s";
-$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
-$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
-$a->strings["{0} requested registration"] = "{0} požaduje registraci";
-$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s";
-$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s";
-$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s";
-$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s";
-$a->strings["{0} posted"] = "{0} zasláno";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku";
-$a->strings["No contacts."] = "Žádné kontakty.";
-$a->strings["View Contacts"] = "Zobrazit kontakty";
-$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
-$a->strings["Discard"] = "Odstranit";
-$a->strings["System"] = "Systém";
-$a->strings["Network"] = "Síť";
-$a->strings["Personal"] = "Osobní";
-$a->strings["Home"] = "Domů";
-$a->strings["Introductions"] = "Představení";
-$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
-$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
-$a->strings["Notification type: "] = "Typ oznámení: ";
-$a->strings["Friend Suggestion"] = "Návrh přátelství";
-$a->strings["suggested by %s"] = "navrhl %s";
-$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele.";
-$a->strings["if applicable"] = "je-li použitelné";
-$a->strings["Approve"] = "Schválit";
-$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
-$a->strings["yes"] = "ano";
-$a->strings["no"] = "ne";
-$a->strings["Approve as: "] = "Schválit jako: ";
-$a->strings["Friend"] = "Přítel";
-$a->strings["Sharer"] = "Sdílené";
-$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel";
-$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
-$a->strings["New Follower"] = "Nový následovník";
-$a->strings["No introductions."] = "Žádné představení.";
-$a->strings["Notifications"] = "Upozornění";
-$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
-$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
-$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
-$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
-$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
-$a->strings["No more network notifications."] = "Žádné další síťové upozornění.";
-$a->strings["Network Notifications"] = "Upozornění Sítě";
-$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
-$a->strings["System Notifications"] = "Systémová upozornění";
-$a->strings["No more personal notifications."] = "Žádné další osobní upozornění.";
-$a->strings["Personal Notifications"] = "Osobní upozornění";
-$a->strings["No more home notifications."] = "Žádné další domácí upozornění.";
-$a->strings["Home Notifications"] = "Upozornění na vstupní straně";
-$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:";
-$a->strings["Source input: "] = "Zdrojový vstup: ";
-$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Nothing new here"] = "Zde není nic nového";
-$a->strings["Clear notifications"] = "Smazat notifikace";
-$a->strings["New Message"] = "Nová zpráva";
-$a->strings["No recipient selected."] = "Nevybrán příjemce.";
-$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
-$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat.";
-$a->strings["Message collection failure."] = "Sběr zpráv selhal.";
-$a->strings["Message sent."] = "Zpráva odeslána.";
-$a->strings["Messages"] = "Zprávy";
-$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
-$a->strings["Message deleted."] = "Zpráva odstraněna.";
-$a->strings["Conversation removed."] = "Konverzace odstraněna.";
-$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:";
-$a->strings["Send Private Message"] = "Odeslat soukromou zprávu";
-$a->strings["To:"] = "Adresát:";
-$a->strings["Subject:"] = "Předmět:";
-$a->strings["Your message:"] = "Vaše zpráva:";
-$a->strings["Upload photo"] = "Nahrát fotografii";
-$a->strings["Insert web link"] = "Vložit webový odkaz";
-$a->strings["Please wait"] = "Čekejte prosím";
-$a->strings["No messages."] = "Žádné zprávy.";
-$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
-$a->strings["You and %s"] = "Vy a %s";
-$a->strings["%s and You"] = "%s a Vy";
-$a->strings["Delete conversation"] = "Odstranit konverzaci";
-$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d zpráva",
-       1 => "%d zprávy",
-       2 => "%d zpráv",
-);
-$a->strings["Message not available."] = "Zpráva není k dispozici.";
-$a->strings["Delete message"] = "Smazat zprávu";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
-$a->strings["Send Reply"] = "Poslat odpověď";
-$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]";
-$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
-$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
-$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce.";
-$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
-$a->strings["No mirroring"] = "Žádné zrcadlení";
-$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky";
-$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky";
-$a->strings["Name"] = "Jméno";
-$a->strings["Account Nickname"] = "Přezdívka účtu";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
-$a->strings["Account URL"] = "URL adresa účtu";
-$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
-$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
-$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
-$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
-$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
-$a->strings["Remote Self"] = "Remote Self";
-$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu.";
-$a->strings["Login"] = "Přihlásit se";
-$a->strings["The post was created"] = "Příspěvek byl vytvořen";
-$a->strings["Access denied."] = "Přístup odmítnut";
-$a->strings["People Search"] = "Vyhledávání lidí";
-$a->strings["No matches"] = "Žádné shody";
-$a->strings["Photos"] = "Fotografie";
-$a->strings["Files"] = "Soubory";
-$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
-$a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno.";
-$a->strings["Site"] = "Web";
-$a->strings["Users"] = "Uživatelé";
-$a->strings["Plugins"] = "Pluginy";
-$a->strings["Themes"] = "Témata";
-$a->strings["DB updates"] = "Aktualizace databáze";
-$a->strings["Logs"] = "Logy";
-$a->strings["probe address"] = "vyzkoušet adresu";
-$a->strings["check webfinger"] = "vyzkoušet webfinger";
-$a->strings["Admin"] = "Administrace";
-$a->strings["Plugin Features"] = "Funkčnosti rozšíření";
-$a->strings["diagnostics"] = "diagnostika";
-$a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení";
-$a->strings["Normal Account"] = "Normální účet";
-$a->strings["Soapbox Account"] = "Soapbox účet";
-$a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity";
-$a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním přátel";
-$a->strings["Blog Account"] = "Účet Blogu";
-$a->strings["Private Forum"] = "Soukromé fórum";
-$a->strings["Message queues"] = "Fronty zpráv";
-$a->strings["Administration"] = "Administrace";
-$a->strings["Summary"] = "Shrnutí";
-$a->strings["Registered users"] = "Registrovaní uživatelé";
-$a->strings["Pending registrations"] = "Čekající registrace";
-$a->strings["Version"] = "Verze";
-$a->strings["Active plugins"] = "Aktivní pluginy";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>";
-$a->strings["Site settings updated."] = "Nastavení webu aktualizováno.";
-$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení";
-$a->strings["No community page"] = "Komunitní stránka neexistuje";
-$a->strings["Public postings from users of this site"] = "Počet veřejných příspěvků od uživatele na této stránce";
-$a->strings["Global community page"] = "Globální komunitní stránka";
-$a->strings["At post arrival"] = "Při obdržení příspěvku";
-$a->strings["Frequently"] = "Často";
-$a->strings["Hourly"] = "každou hodinu";
-$a->strings["Twice daily"] = "Dvakrát denně";
-$a->strings["Daily"] = "denně";
-$a->strings["Multi user instance"] = "Více uživatelská instance";
-$a->strings["Closed"] = "Uzavřeno";
-$a->strings["Requires approval"] = "Vyžaduje schválení";
-$a->strings["Open"] = "Otevřená";
-$a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL politika, odkazy budou následovat stránky SSL stav";
-$a->strings["Force all links to use SSL"] = "Vyžadovat u všech odkazů použití SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)";
-$a->strings["Save Settings"] = "Uložit Nastavení";
-$a->strings["Registration"] = "Registrace";
-$a->strings["File upload"] = "Nahrání souborů";
-$a->strings["Policies"] = "Politiky";
-$a->strings["Advanced"] = "Pokročilé";
-$a->strings["Performance"] = "Výkonnost";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server.";
-$a->strings["Site name"] = "Název webu";
-$a->strings["Host name"] = "Jméno hostitele (host name)";
-$a->strings["Sender Email"] = "Email ddesílatele";
-$a->strings["Banner/Logo"] = "Banner/logo";
-$a->strings["Shortcut icon"] = "Ikona zkratky";
-$a->strings["Touch icon"] = "Dotyková ikona";
-$a->strings["Additional Info"] = "Dodatečné informace";
-$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo.";
-$a->strings["System language"] = "Systémový jazyk";
-$a->strings["System theme"] = "Grafická šablona systému ";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>";
-$a->strings["Mobile system theme"] = "Systémové téma zobrazení pro mobilní zařízení";
-$a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zařízení";
-$a->strings["SSL link policy"] = "Politika SSL odkazů";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL";
-$a->strings["Force SSL"] = "Vynutit SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení.";
-$a->strings["Old style 'Share'"] = "Sdílení \"postaru\"";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky.";
-$a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help.";
-$a->strings["Single user instance"] = "Jednouživatelská instance";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele";
-$a->strings["Maximum image size"] = "Maximální velikost obrázků";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno.";
-$a->strings["Maximum image length"] = "Maximální velikost obrázků";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu";
-$a->strings["JPEG image quality"] = "JPEG kvalita obrázku";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu.";
-$a->strings["Register policy"] = "Politika registrace";
-$a->strings["Maximum Daily Registrations"] = "Maximální počet denních registrací";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt.";
-$a->strings["Register text"] = "Registrace textu";
-$a->strings["Will be displayed prominently on the registration page."] = "Bude zřetelně zobrazeno na registrační stránce.";
-$a->strings["Accounts abandoned after x days"] = "Účet je opuštěn po x dnech";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit.";
-$a->strings["Allowed friend domains"] = "Povolené domény přátel";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu.";
-$a->strings["Allowed email domains"] = "Povolené e-mailové domény";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu.";
-$a->strings["Block public"] = "Blokovat veřejnost";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni.";
-$a->strings["Force publish"] = "Publikovat";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu.";
-$a->strings["Global directory update URL"] = "aktualizace URL adresy Globálního adresáře ";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci.";
-$a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu";
-$a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken.";
-$a->strings["Private posts by default for new users"] = "Nastavit pro nové uživatele příspěvky jako soukromé";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné.";
-$a->strings["Don't include post content in email notifications"] = "Nezahrnovat obsah příspěvků v emailových upozorněních";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. ";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy.";
-$a->strings["Don't embed private images in posts"] = "Nepovolit přidávání soukromých správ v příspěvcích";
-$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas.";
-$a->strings["Allow Users to set remote_self"] = "Umožnit uživatelům nastavit ";
-$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu.";
-$a->strings["Block multiple registrations"] = "Blokovat více registrací";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky.";
-$a->strings["OpenID support"] = "podpora OpenID";
-$a->strings["OpenID support for registration and logins."] = "Podpora OpenID pro registraci a přihlašování.";
-$a->strings["Fullname check"] = "kontrola úplného jména";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření.";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regulární výrazy";
-$a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární výrazy.";
-$a->strings["Community Page Style"] = "Styl komunitní stránky";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server.";
-$a->strings["Posts per user on community page"] = "Počet příspěvků na komunitní stránce";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')";
-$a->strings["Enable OStatus support"] = "Zapnout podporu OStatus";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění.";
-$a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol.";
-$a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Poskytnout zabudovanou kompatibilitu sitě Diaspora.";
-$a->strings["Only allow Friendica contacts"] = "Povolit pouze Friendica kontakty";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované.";
-$a->strings["Verify SSL"] = "Ověřit SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem.";
-$a->strings["Proxy user"] = "Proxy uživatel";
-$a->strings["Proxy URL"] = "Proxy URL adresa";
-$a->strings["Network timeout"] = "čas síťového spojení vypršelo (timeout)";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno).";
-$a->strings["Delivery interval"] = "Interval doručování";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery.";
-$a->strings["Poll interval"] = "Dotazovací interval";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval.";
-$a->strings["Maximum Load Average"] = "Maximální průměrné zatížení";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50";
-$a->strings["Use MySQL full text engine"] = "Použít fulltextový vyhledávací stroj MySQL";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků";
-$a->strings["Suppress Language"] = "Potlačit Jazyk";
-$a->strings["Suppress language information in meta information about a posting."] = "Potlačit jazykové informace v meta informacích o příspěvcích";
-$a->strings["Suppress Tags"] = "Potlačit štítky";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Potlačit zobrazení listu hastagů na konci zprávy.";
-$a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti";
-$a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1.";
-$a->strings["Maximum numbers of comments per post"] = "Maximální počet komentářů k příspěvku";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100.";
-$a->strings["Path for lock file"] = "Cesta k souboru zámku";
-$a->strings["Temp path"] = "Cesta k dočasným souborům";
-$a->strings["Base path to installation"] = "Základní cesta k instalaci";
-$a->strings["Disable picture proxy"] = "Vypnutí obrázkové proxy";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti.";
-$a->strings["Enable old style pager"] = "Aktivovat \"old style\" stránkování ";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky.";
-$a->strings["Only search in tags"] = "Hledat pouze ve štítkách";
-$a->strings["On large systems the text search can slow down the system extremely."] = "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému.";
-$a->strings["New base url"] = "Nová výchozí url adresa";
-$a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná.";
-$a->strings["Database structure update %s was successfully applied."] = "Aktualizace struktury databáze %s byla úspěšně aplikována.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Provádění aktualizace databáze %s skončilo chybou: %s";
-$a->strings["Executing %s failed with error: %s"] = "Vykonávání %s selhalo s chybou: %s";
-$a->strings["Update %s was successfully applied."] = "Aktualizace %s byla úspěšně aplikována.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána.";
-$a->strings["No failed updates."] = "Žádné neúspěšné aktualizace.";
-$a->strings["Check database structure"] = "Ověření struktury databáze";
-$a->strings["Failed Updates"] = "Neúspěšné aktualizace";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status.";
-$a->strings["Mark success (if update was manually applied)"] = "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)";
-$a->strings["Attempt to execute this update step automatically"] = "Pokusit se provést tuto aktualizaci automaticky.";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tDrahý %1\$s,\n\t\t\t\tadministrátor webu %2\$s pro Vás vytvořil uživatelský účet.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1\$s\n\t\t\tpřihlašovací jméno:\t\t%2\$s\n\t\t\theslo:\t\t%3\$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4\$s.";
-$a->strings["Registration details for %s"] = "Registrační údaje pro %s";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s uživatel blokován/odblokován",
-       1 => "%s uživatelů blokováno/odblokováno",
-       2 => "%s uživatelů blokováno/odblokováno",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s uživatel smazán",
-       1 => "%s uživatelů smazáno",
-       2 => "%s uživatelů smazáno",
-);
-$a->strings["User '%s' deleted"] = "Uživatel '%s' smazán";
-$a->strings["User '%s' unblocked"] = "Uživatel '%s' odblokován";
-$a->strings["User '%s' blocked"] = "Uživatel '%s' blokován";
-$a->strings["Add User"] = "Přidat Uživatele";
-$a->strings["select all"] = "Vybrat vše";
-$a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení";
-$a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání";
-$a->strings["Request date"] = "Datum žádosti";
-$a->strings["Email"] = "E-mail";
-$a->strings["No registrations."] = "Žádné registrace.";
-$a->strings["Deny"] = "Odmítnout";
-$a->strings["Site admin"] = "Site administrátor";
-$a->strings["Account expired"] = "Účtu vypršela platnost";
-$a->strings["New User"] = "Nový uživatel";
-$a->strings["Register date"] = "Datum registrace";
-$a->strings["Last login"] = "Datum posledního přihlášení";
-$a->strings["Last item"] = "Poslední položka";
-$a->strings["Deleted since"] = "Smazán od";
-$a->strings["Account"] = "Účet";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?";
-$a->strings["Name of the new user."] = "Jméno nového uživatele";
-$a->strings["Nickname"] = "Přezdívka";
-$a->strings["Nickname of the new user."] = "Přezdívka nového uživatele.";
-$a->strings["Email address of the new user."] = "Emailová adresa nového uživatele.";
-$a->strings["Plugin %s disabled."] = "Plugin %s zakázán.";
-$a->strings["Plugin %s enabled."] = "Plugin %s povolen.";
-$a->strings["Disable"] = "Zakázat";
-$a->strings["Enable"] = "Povolit";
-$a->strings["Toggle"] = "Přepnout";
-$a->strings["Author: "] = "Autor: ";
-$a->strings["Maintainer: "] = "Správce: ";
-$a->strings["No themes found."] = "Nenalezeny žádná témata.";
-$a->strings["Screenshot"] = "Snímek obrazovky";
-$a->strings["[Experimental]"] = "[Experimentální]";
-$a->strings["[Unsupported]"] = "[Nepodporováno]";
-$a->strings["Log settings updated."] = "Nastavení protokolu aktualizováno.";
-$a->strings["Clear"] = "Vyčistit";
-$a->strings["Enable Debugging"] = "Povolit ladění";
-$a->strings["Log file"] = "Soubor s logem";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica";
-$a->strings["Log level"] = "Úroveň auditu";
-$a->strings["Close"] = "Zavřít";
-$a->strings["FTP Host"] = "Hostitel FTP";
-$a->strings["FTP Path"] = "Cesta FTP";
-$a->strings["FTP User"] = "FTP uživatel";
-$a->strings["FTP Password"] = "FTP heslo";
-$a->strings["Search Results For:"] = "Výsledky hledání pro:";
-$a->strings["Remove term"] = "Odstranit termín";
-$a->strings["Saved Searches"] = "Uložená hledání";
-$a->strings["add"] = "přidat";
-$a->strings["Commented Order"] = "Dle komentářů";
-$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře";
-$a->strings["Posted Order"] = "Dle data";
-$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku";
-$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují";
-$a->strings["New"] = "Nové";
-$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data";
-$a->strings["Shared Links"] = "Sdílené odkazy";
-$a->strings["Interesting Links"] = "Zajímavé odkazy";
-$a->strings["Starred"] = "S hvězdičkou";
-$a->strings["Favourite Posts"] = "Oblíbené přízpěvky";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.",
-       1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
-       2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení.";
-$a->strings["No such group"] = "Žádná taková skupina";
-$a->strings["Group is empty"] = "Skupina je prázdná";
-$a->strings["Group: "] = "Skupina: ";
-$a->strings["Contact: "] = "Kontakt: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.";
-$a->strings["Invalid contact."] = "Neplatný kontakt.";
-$a->strings["Friends of %s"] = "Přátelé uživatele %s";
-$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
-$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editovat událost";
-$a->strings["link to source"] = "odkaz na zdroj";
-$a->strings["Events"] = "Události";
-$a->strings["Create New Event"] = "Vytvořit novou událost";
-$a->strings["Previous"] = "Předchozí";
-$a->strings["Next"] = "Dále";
-$a->strings["hour:minute"] = "hodina:minuta";
-$a->strings["Event details"] = "Detaily události";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány.";
-$a->strings["Event Starts:"] = "Událost začíná:";
-$a->strings["Required"] = "Vyžadováno";
-$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
-$a->strings["Event Finishes:"] = "Akce končí:";
-$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
-$a->strings["Description:"] = "Popis:";
-$a->strings["Location:"] = "Místo:";
-$a->strings["Title:"] = "Název:";
-$a->strings["Share this event"] = "Sdílet tuto událost";
-$a->strings["Select"] = "Vybrat";
-$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s";
-$a->strings["%s from %s"] = "%s od %s";
-$a->strings["View in context"] = "Pohled v kontextu";
-$a->strings["%d comment"] = array(
-       0 => "%d komentář",
-       1 => "%d komentářů",
-       2 => "%d komentářů",
-);
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "",
-       2 => "komentář",
-);
-$a->strings["show more"] = "zobrazit více";
-$a->strings["Private Message"] = "Soukromá zpráva";
-$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)";
-$a->strings["like"] = "má rád";
-$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)";
-$a->strings["dislike"] = "nemá rád";
-$a->strings["Share this"] = "Sdílet toto";
-$a->strings["share"] = "sdílí";
-$a->strings["This is you"] = "Nastavte Vaši polohu";
-$a->strings["Comment"] = "Okomentovat";
-$a->strings["Bold"] = "Tučné";
-$a->strings["Italic"] = "Kurzíva";
-$a->strings["Underline"] = "Podrtžené";
-$a->strings["Quote"] = "Citovat";
-$a->strings["Code"] = "Kód";
-$a->strings["Image"] = "Obrázek";
-$a->strings["Link"] = "Odkaz";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Náhled";
-$a->strings["Edit"] = "Upravit";
-$a->strings["add star"] = "přidat hvězdu";
-$a->strings["remove star"] = "odebrat hvězdu";
-$a->strings["toggle star status"] = "přepnout hvězdu";
-$a->strings["starred"] = "označeno hvězdou";
-$a->strings["add tag"] = "přidat štítek";
-$a->strings["save to folder"] = "uložit do složky";
-$a->strings["to"] = "pro";
-$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď";
-$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď ";
-$a->strings["Remove My Account"] = "Odstranit můj účet";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
-$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
-$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
-$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
-$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
-$a->strings["System check"] = "Testování systému";
-$a->strings["Check again"] = "Otestovat znovu";
-$a->strings["Database connection"] = "Databázové spojení";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
-$a->strings["Database Server Name"] = "Jméno databázového serveru";
-$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
-$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
-$a->strings["Database Name"] = "Jméno databáze";
-$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
-$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
-$a->strings["Site settings"] = "Nastavení webu";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Cesta k \"PHP executable\"";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
-$a->strings["Command line PHP"] = "Příkazový řádek PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
-$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
-$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
-$a->strings["libCurl PHP module"] = "libCurl PHP modul";
-$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
-$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
-$a->strings["mysqli PHP module"] = "mysqli PHP modul";
-$a->strings["mb_string PHP module"] = "mb_string PHP modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
-$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
-$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
-$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.";
-$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci.";
-$a->strings["No recipient."] = "Žádný příjemce.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.";
-$a->strings["Help:"] = "Nápověda:";
-$a->strings["Help"] = "Nápověda";
-$a->strings["Not Found"] = "Nenalezen";
-$a->strings["Page not found."] = "Stránka nenalezena";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
-$a->strings["Welcome to %s"] = "Vítá Vás %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP";
-$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?";
-$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d";
-$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
-$a->strings["Profile Match"] = "Shoda profilu";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
-$a->strings["is interested in:"] = "zajímá se o:";
-$a->strings["Connect"] = "Spojit";
-$a->strings["link"] = "odkaz";
-$a->strings["Not available."] = "Není k dispozici.";
-$a->strings["Community"] = "Komunita";
-$a->strings["No results."] = "Žádné výsledky.";
-$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
-$a->strings["Additional features"] = "Další funkčnosti";
-$a->strings["Display"] = "Zobrazení";
-$a->strings["Social Networks"] = "Sociální sítě";
-$a->strings["Delegations"] = "Delegace";
-$a->strings["Connected apps"] = "Propojené aplikace";
-$a->strings["Export personal data"] = "Export osobních údajů";
-$a->strings["Remove account"] = "Odstranit účet";
-$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
-$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
-$a->strings["Features updated"] = "Aktualizované funkčnosti";
-$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
-$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno.";
-$a->strings["Wrong password."] = "Špatné heslo.";
-$a->strings["Password changed."] = "Heslo bylo změněno.";
-$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu.";
-$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno.";
-$a->strings[" Name too short."] = "Jméno je příliš krátké.";
-$a->strings["Wrong Password"] = "Špatné heslo";
-$a->strings[" Not valid email."] = "Neplatný e-mail.";
-$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu.";
-$a->strings["Settings updated."] = "Nastavení aktualizováno.";
-$a->strings["Add application"] = "Přidat aplikaci";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Přesměrování";
-$a->strings["Icon url"] = "URL ikony";
-$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci.";
-$a->strings["Connected Apps"] = "Připojené aplikace";
-$a->strings["Client key starts with"] = "Klienský klíč začíná";
-$a->strings["No name"] = "Bez názvu";
-$a->strings["Remove authorization"] = "Odstranit oprávnění";
-$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven";
-$a->strings["Plugin Settings"] = "Nastavení doplňku";
-$a->strings["Off"] = "Vypnuto";
-$a->strings["On"] = "Zapnuto";
-$a->strings["Additional Features"] = "Další Funkčnosti";
-$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "povoleno";
-$a->strings["disabled"] = "zakázáno";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán.";
-$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.";
-$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:";
-$a->strings["IMAP server name:"] = "jméno IMAP serveru:";
-$a->strings["IMAP port:"] = "IMAP port:";
-$a->strings["Security:"] = "Zabezpečení:";
-$a->strings["None"] = "Žádný";
-$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:";
-$a->strings["Email password:"] = "heslo k Vašemu e-mailu:";
-$a->strings["Reply-to address:"] = "Odpovědět na adresu:";
-$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:";
-$a->strings["Action after import:"] = "Akce po importu:";
-$a->strings["Mark as seen"] = "Označit jako přečtené";
-$a->strings["Move to folder"] = "Přesunout do složky";
-$a->strings["Move to folder:"] = "Přesunout do složky:";
-$a->strings["Display Settings"] = "Nastavení Zobrazení";
-$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:";
-$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:";
-$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum.";
-$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:";
-$a->strings["Maximum of 100 items"] = "Maximum 100 položek";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:";
-$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony";
-$a->strings["Don't show notices"] = "Nezobrazovat oznámění";
-$a->strings["Infinite scroll"] = "Nekonečné posouvání";
-$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť.";
-$a->strings["User Types"] = "Uživatelské typy";
-$a->strings["Community Types"] = "Komunitní typy";
-$a->strings["Normal Account Page"] = "Normální stránka účtu";
-$a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil";
-$a->strings["Soapbox Page"] = "Stránka \"Soapbox\"";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení";
-$a->strings["Community Forum/Celebrity Account"] = "Komunitní fórum/ účet celebrity";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení.";
-$a->strings["Automatic Friend Page"] = "Automatická stránka přítele";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele";
-$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]";
-$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu.";
-$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?";
-$a->strings["No"] = "Ne";
-$a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?";
-$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí.";
-$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?";
-$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?";
-$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?";
-$a->strings["Profile is <strong>not published</strong>."] = "Profil <strong>není zveřejněn</strong>.";
-$a->strings["Your Identity Address is"] = "Vaše adresa identity je";
-$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány";
-$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací";
-$a->strings["Advanced Expiration"] = "Nastavení expirací";
-$a->strings["Expire posts:"] = "Expirovat příspěvky:";
-$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:";
-$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:";
-$a->strings["Expire photos:"] = "Expirovat fotografie:";
-$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:";
-$a->strings["Account Settings"] = "Nastavení účtu";
-$a->strings["Password Settings"] = "Nastavení hesla";
-$a->strings["New Password:"] = "Nové heslo:";
-$a->strings["Confirm:"] = "Potvrďte:";
-$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte";
-$a->strings["Current Password:"] = "Stávající heslo:";
-$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn";
-$a->strings["Password:"] = "Heslo: ";
-$a->strings["Basic Settings"] = "Základní nastavení";
-$a->strings["Full Name:"] = "Celé jméno:";
-$a->strings["Email Address:"] = "E-mailová adresa:";
-$a->strings["Your Timezone:"] = "Vaše časové pásmo:";
-$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:";
-$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:";
-$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:";
-$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)";
-$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek";
-$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)";
-$a->strings["Show to Groups"] = "Zobrazit ve Skupinách";
-$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech";
-$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek";
-$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek";
-$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:";
-$a->strings["Notification Settings"] = "Nastavení notifikací";
-$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:";
-$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství";
-$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě";
-$a->strings["making an <em>interesting</em> profile change"] = "provedení <em>zajímavé</em> profilové změny";
-$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když";
-$a->strings["You receive an introduction"] = "obdržíte žádost o propojení";
-$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny";
-$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku";
-$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář";
-$a->strings["You receive a private message"] = "obdržíte soukromou zprávu";
-$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství";
-$a->strings["You are tagged in a post"] = "Jste označen v příspěvku";
-$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku";
-$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily";
-$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části.";
-$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky";
-$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích";
-$a->strings["Relocate"] = "Změna umístění";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko.";
-$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům";
-$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka";
-$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d požadovaný parametr nebyl nalezen na daném místě",
-       1 => "%d požadované parametry nebyly nalezeny na daném místě",
-       2 => "%d požadované parametry nebyly nalezeny na daném místě",
-);
-$a->strings["Introduction complete."] = "Představení dokončeno.";
-$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu";
-$a->strings["Profile unavailable."] = "Profil není k dispozici.";
-$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení.";
-$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin.";
-$a->strings["Invalid locator"] = "Neplatný odkaz";
-$a->strings["Invalid email address."] = "Neplatná emailová adresa";
-$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn.";
-$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese.";
-$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli.";
-$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s.";
-$a->strings["Invalid profile URL."] = "Neplatné URL profilu.";
-$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
-$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána.";
-$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu.";
-$a->strings["Hide this contact"] = "Skrýt tento kontakt";
-$a->strings["Welcome home %s."] = "Vítejte doma %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s.";
-$a->strings["Confirm"] = "Potvrdit";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>.";
-$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
-$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
-$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole.";
-$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
-$a->strings["Submit Request"] = "Odeslat žádost";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení.";
-$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
-$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
-$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
-$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
-$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
-$a->strings["Your invitation ID: "] = "Vaše pozvání ID:";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):";
-$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@\$sitename</strong>\".";
-$a->strings["Choose a nickname: "] = "Vyberte přezdívku:";
-$a->strings["Register"] = "Registrovat";
-$a->strings["Import"] = "Import";
-$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
-$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
-$a->strings["Search"] = "Vyhledávání";
-$a->strings["Global Directory"] = "Globální adresář";
-$a->strings["Find on this site"] = "Nalézt na tomto webu";
-$a->strings["Site Directory"] = "Adresář serveru";
-$a->strings["Age: "] = "Věk: ";
-$a->strings["Gender: "] = "Pohlaví: ";
-$a->strings["Gender:"] = "Pohlaví:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Domácí stránka:";
-$a->strings["About:"] = "O mě:";
-$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";
-$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni.";
-$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
-$a->strings["Existing Page Managers"] = "Stávající správci stránky";
-$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
-$a->strings["Potential Delegates"] = "Potenciální delegáti";
-$a->strings["Add"] = "Přidat";
-$a->strings["No entries."] = "Žádné záznamy.";
-$a->strings["Common Friends"] = "Společní přátelé";
-$a->strings["No contacts in common."] = "Žádné společné kontakty.";
-$a->strings["Export account"] = "Exportovat účet";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
-$a->strings["Export all"] = "Exportovat vše";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
-$a->strings["Mood"] = "Nálada";
-$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
-$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
-$a->strings["Friend Suggestions"] = "Návrhy přátel";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
-$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
-$a->strings["Profile deleted."] = "Profil smazán.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Nový profil vytvořen.";
-$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat.";
-$a->strings["Profile Name is required."] = "Jméno profilu je povinné.";
-$a->strings["Marital Status"] = "Rodinný Stav";
-$a->strings["Romantic Partner"] = "Romatický partner";
-$a->strings["Likes"] = "Libí se mi";
-$a->strings["Dislikes"] = "Nelibí se mi";
-$a->strings["Work/Employment"] = "Práce/Zaměstnání";
-$a->strings["Religion"] = "Náboženství";
-$a->strings["Political Views"] = "Politické přesvědčení";
-$a->strings["Gender"] = "Pohlaví";
-$a->strings["Sexual Preference"] = "Sexuální orientace";
-$a->strings["Homepage"] = "Domácí stránka";
-$a->strings["Interests"] = "Zájmy";
-$a->strings["Address"] = "Adresa";
-$a->strings["Location"] = "Lokace";
-$a->strings["Profile updated."] = "Profil aktualizován.";
-$a->strings[" and "] = " a ";
-$a->strings["public profile"] = "veřejný profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s změnil %2\$s na &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Navštivte %2\$s uživatele %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?";
-$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu ";
-$a->strings["Change Profile Photo"] = "Změna Profilové fotky";
-$a->strings["View this profile"] = "Zobrazit tento profil";
-$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení";
-$a->strings["Clone this profile"] = "Klonovat tento profil";
-$a->strings["Delete this profile"] = "Smazat tento profil";
-$a->strings["Basic information"] = "Základní informace";
-$a->strings["Profile picture"] = "Profilový obrázek";
-$a->strings["Preferences"] = "Nastavení";
-$a->strings["Status information"] = "Statusové informace";
-$a->strings["Additional information"] = "Dodatečné informace";
-$a->strings["Profile Name:"] = "Jméno profilu:";
-$a->strings["Your Full Name:"] = "Vaše celé jméno:";
-$a->strings["Title/Description:"] = "Název / Popis:";
-$a->strings["Your Gender:"] = "Vaše pohlaví:";
-$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):";
-$a->strings["Street Address:"] = "Ulice:";
-$a->strings["Locality/City:"] = "Město:";
-$a->strings["Postal/Zip Code:"] = "PSČ:";
-$a->strings["Country:"] = "Země:";
-$a->strings["Region/State:"] = "Region / stát:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Rodinný stav:";
-$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz";
-$a->strings["Since [date]:"] = "Od [data]:";
-$a->strings["Sexual Preference:"] = "Sexuální preference:";
-$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:";
-$a->strings["Hometown:"] = "Rodné město";
-$a->strings["Political Views:"] = "Politické přesvědčení:";
-$a->strings["Religious Views:"] = "Náboženské přesvědčení:";
-$a->strings["Public Keywords:"] = "Veřejná klíčová slova:";
-$a->strings["Private Keywords:"] = "Soukromá klíčová slova:";
-$a->strings["Likes:"] = "Líbí se:";
-$a->strings["Dislikes:"] = "Nelibí se:";
-$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)";
-$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ...";
-$a->strings["Hobbies/Interests"] = "Koníčky/zájmy";
-$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě";
-$a->strings["Musical interests"] = "Hudební vkus";
-$a->strings["Books, literature"] = "Knihy, literatura";
-$a->strings["Television"] = "Televize";
-$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava";
-$a->strings["Love/romance"] = "Láska/romantika";
-$a->strings["Work/employment"] = "Práce/zaměstnání";
-$a->strings["School/education"] = "Škola/vzdělání";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
-$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily";
-$a->strings["Change profile photo"] = "Změnit profilovou fotografii";
-$a->strings["Create New Profile"] = "Vytvořit nový profil";
-$a->strings["Profile Image"] = "Profilový obrázek";
-$a->strings["visible to everybody"] = "viditelné pro všechny";
-$a->strings["Edit visibility"] = "Upravit viditelnost";
-$a->strings["Item not found"] = "Položka nenalezena";
-$a->strings["Edit post"] = "Upravit příspěvek";
-$a->strings["upload photo"] = "nahrát fotky";
-$a->strings["Attach file"] = "Přiložit soubor";
-$a->strings["attach file"] = "přidat soubor";
-$a->strings["web link"] = "webový odkaz";
-$a->strings["Insert video link"] = "Zadejte odkaz na video";
-$a->strings["video link"] = "odkaz na video";
-$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam";
-$a->strings["audio link"] = "odkaz na audio";
-$a->strings["Set your location"] = "Nastavte vaši polohu";
-$a->strings["set location"] = "nastavit místo";
-$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči";
-$a->strings["clear location"] = "vymazat místo";
-$a->strings["Permission settings"] = "Nastavení oprávnění";
-$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy";
-$a->strings["Public post"] = "Veřejný příspěvek";
-$a->strings["Set title"] = "Nastavit titulek";
-$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com";
-$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
-$a->strings["running at web location"] = "běžící na webu";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>.";
-$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com";
-$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:";
-$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace";
-$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
-$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
-$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
-$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici.";
-$a->strings["Visible to:"] = "Viditelné pro:";
-$a->strings["Personal Notes"] = "Osobní poznámky";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Časová konverze";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách";
-$a->strings["UTC time: %s"] = "UTC čas: %s";
-$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s";
-$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s";
-$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:";
-$a->strings["Poke/Prod"] = "Šťouchanec";
-$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést  jinou věc";
-$a->strings["Recipient"] = "Příjemce";
-$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat";
-$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý";
-$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
-$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
-$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu.";
-$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
-$a->strings["%d message sent."] = array(
-       0 => "%d zpráva odeslána.",
-       1 => "%d zprávy odeslány.",
-       2 => "%d zprávy odeslány.",
-);
-$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
-$a->strings["Send invitations"] = "Poslat pozvánky";
-$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com";
-$a->strings["Photo Albums"] = "Fotoalba";
-$a->strings["Contact Photos"] = "Fotogalerie kontaktu";
-$a->strings["Upload New Photos"] = "Nahrát nové fotografie";
-$a->strings["Contact information unavailable"] = "Kontakt byl zablokován";
-$a->strings["Album not found."] = "Album nenalezeno.";
-$a->strings["Delete Album"] = "Smazat album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?";
-$a->strings["Delete Photo"] = "Smazat fotografii";
-$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s";
-$a->strings["a photo"] = "fotografie";
-$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti";
-$a->strings["Image file is empty."] = "Soubor obrázku je prázdný.";
-$a->strings["No photos selected"] = "Není vybrána žádná fotografie";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií.";
-$a->strings["Upload Photos"] = "Nahrání fotografií ";
-$a->strings["New album name: "] = "Název nového alba: ";
-$a->strings["or existing album name: "] = "nebo stávající název alba: ";
-$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload";
-$a->strings["Permissions"] = "Oprávnění:";
-$a->strings["Private Photo"] = "Soukromé Fotografie";
-$a->strings["Public Photo"] = "Veřejné Fotografie";
-$a->strings["Edit Album"] = "Edituj album";
-$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:";
-$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:";
-$a->strings["View Photo"] = "Zobraz fotografii";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen.";
-$a->strings["Photo not available"] = "Fotografie není k dispozici";
-$a->strings["View photo"] = "Zobrazit obrázek";
-$a->strings["Edit photo"] = "Editovat fotografii";
-$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii";
-$a->strings["View Full Size"] = "Zobrazit v plné velikosti";
-$a->strings["Tags: "] = "Štítky: ";
-$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]";
-$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)";
-$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)";
-$a->strings["New album name"] = "Nové jméno alba";
-$a->strings["Caption"] = "Titulek";
-$a->strings["Add a Tag"] = "Přidat štítek";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Soukromé fotografie";
-$a->strings["Public photo"] = "Veřejné fotografie";
-$a->strings["Share"] = "Sdílet";
-$a->strings["Recent Photos"] = "Aktuální fotografie";
-$a->strings["Account approved."] = "Účet schválen.";
-$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
-$a->strings["Please login."] = "Přihlaste se, prosím.";
-$a->strings["Move account"] = "Přesunout účet";
-$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory";
-$a->strings["Account file"] = "Soubor s účtem";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
-$a->strings["Item not available."] = "Položka není k dispozici.";
-$a->strings["Item was not found."] = "Položka nebyla nalezena.";
-$a->strings["Delete this item?"] = "Odstranit tuto položku?";
-$a->strings["show fewer"] = "zobrazit méně";
-$a->strings["Update %s failed. See error logs."] = "Aktualizace %s selhala. Zkontrolujte protokol chyb.";
-$a->strings["Create a New Account"] = "Vytvořit nový účet";
-$a->strings["Logout"] = "Odhlásit se";
-$a->strings["Nickname or Email address: "] = "Přezdívka nebo e-mailová adresa:";
-$a->strings["Password: "] = "Heslo: ";
-$a->strings["Remember me"] = "Pamatuj si mne";
-$a->strings["Or login using OpenID: "] = "Nebo přihlášení pomocí OpenID: ";
-$a->strings["Forgot your password?"] = "Zapomněli jste své heslo?";
-$a->strings["Website Terms of Service"] = "Podmínky použití serveru";
-$a->strings["terms of service"] = "podmínky použití";
-$a->strings["Website Privacy Policy"] = "Pravidla ochrany soukromí serveru";
-$a->strings["privacy policy"] = "Ochrana soukromí";
-$a->strings["Requested account is not available."] = "Požadovaný účet není dostupný.";
-$a->strings["Edit profile"] = "Upravit profil";
-$a->strings["Message"] = "Zpráva";
-$a->strings["Profiles"] = "Profily";
-$a->strings["Manage/edit profiles"] = "Spravovat/upravit profily";
-$a->strings["Network:"] = "Síť:";
-$a->strings["g A l F d"] = "g A l F d";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[Dnes]";
-$a->strings["Birthday Reminders"] = "Připomínka narozenin";
-$a->strings["Birthdays this week:"] = "Narozeniny tento týden:";
-$a->strings["[No description]"] = "[Žádný popis]";
-$a->strings["Event Reminders"] = "Připomenutí událostí";
-$a->strings["Events this week:"] = "Události tohoto týdne:";
-$a->strings["Status"] = "Stav";
-$a->strings["Status Messages and Posts"] = "Statusové zprávy a příspěvky ";
-$a->strings["Profile Details"] = "Detaily profilu";
-$a->strings["Videos"] = "Videa";
-$a->strings["Events and Calendar"] = "Události a kalendář";
-$a->strings["Only You Can See This"] = "Toto můžete vidět jen Vy";
-$a->strings["This entry was edited"] = "Tento záznam byl editován";
-$a->strings["ignore thread"] = "ignorovat vlákno";
-$a->strings["unignore thread"] = "přestat ignorovat vlákno";
-$a->strings["toggle ignore status"] = "přepnout stav Ignorování";
-$a->strings["ignored"] = "ignorován";
-$a->strings["Categories:"] = "Kategorie:";
-$a->strings["Filed under:"] = "Vyplněn pod:";
-$a->strings["via"] = "přes";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám.";
-$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám.";
-$a->strings["Logged out."] = "Odhlášen.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
-$a->strings["The error message was:"] = "Chybová zpráva byla:";
-$a->strings["Add New Contact"] = "Přidat nový kontakt";
-$a->strings["Enter address or web location"] = "Zadejte adresu nebo umístění webu";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Příklad: jan@příklad.cz, http://příklad.cz/jana";
-$a->strings["%d invitation available"] = array(
-       0 => "Pozvánka %d k dispozici",
-       1 => "Pozvánky %d k dispozici",
-       2 => "Pozvánky %d k dispozici",
-);
-$a->strings["Find People"] = "Nalézt lidi";
-$a->strings["Enter name or interest"] = "Zadejte jméno nebo zájmy";
-$a->strings["Connect/Follow"] = "Připojit / Následovat";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Příklady: Robert Morgenstein, rybaření";
-$a->strings["Similar Interests"] = "Podobné zájmy";
-$a->strings["Random Profile"] = "Náhodný Profil";
-$a->strings["Invite Friends"] = "Pozvat přátele";
-$a->strings["Networks"] = "Sítě";
-$a->strings["All Networks"] = "Všechny sítě";
-$a->strings["Saved Folders"] = "Uložené složky";
-$a->strings["Everything"] = "Všechno";
-$a->strings["Categories"] = "Kategorie";
-$a->strings["General Features"] = "Obecné funkčnosti";
-$a->strings["Multiple Profiles"] = "Vícenásobné profily";
-$a->strings["Ability to create multiple profiles"] = "Schopnost vytvořit vícenásobné profily";
-$a->strings["Post Composition Features"] = "Nastavení vytváření příspěvků";
-$a->strings["Richtext Editor"] = "Richtext Editor";
-$a->strings["Enable richtext editor"] = "Povolit richtext editor";
-$a->strings["Post Preview"] = "Náhled příspěvku";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Povolit náhledy příspěvků a komentářů před jejich zveřejněním";
-$a->strings["Auto-mention Forums"] = "Automaticky zmíněná Fóra";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Přidat/odebrat zmínku, když stránka fóra je označena/odznačena v ACL okně";
-$a->strings["Network Sidebar Widgets"] = "Síťové postranní widgety";
-$a->strings["Search by Date"] = "Vyhledávat dle Data";
-$a->strings["Ability to select posts by date ranges"] = "Možnost označit příspěvky dle časového intervalu";
-$a->strings["Group Filter"] = "Skupinový Filtr";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené skupiny";
-$a->strings["Network Filter"] = "Síťový Filtr";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Povolit widget pro zobrazení příspěvků v Síti pouze ze zvolené sítě";
-$a->strings["Save search terms for re-use"] = "Uložit kritéria vyhledávání pro znovupoužití";
-$a->strings["Network Tabs"] = "Síťové záložky";
-$a->strings["Network Personal Tab"] = "Osobní síťový záložka ";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Povolit záložku pro zobrazení pouze síťových příspěvků, na které jste reagoval ";
-$a->strings["Network New Tab"] = "Nová záložka síť";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Povolit záložku pro zobrazení pouze nových příspěvků (za posledních 12 hodin)";
-$a->strings["Network Shared Links Tab"] = "záložka Síťové sdílené odkazy ";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Povolit záložky pro zobrazování pouze Síťových příspěvků s vazbou na ně";
-$a->strings["Post/Comment Tools"] = "Nástroje Příspěvků/Komentářů";
-$a->strings["Multiple Deletion"] = "Násobné mazání";
-$a->strings["Select and delete multiple posts/comments at once"] = "Označit a smazat více ";
-$a->strings["Edit Sent Posts"] = "Editovat Odeslané příspěvky";
-$a->strings["Edit and correct posts and comments after sending"] = "Editovat a opravit příspěvky a komentáře po odeslání";
-$a->strings["Tagging"] = "Štítkování";
-$a->strings["Ability to tag existing posts"] = "Schopnost přidat štítky ke stávajícím příspvěkům";
-$a->strings["Post Categories"] = "Kategorie příspěvků";
-$a->strings["Add categories to your posts"] = "Přidat kategorie k Vašim příspěvkům";
-$a->strings["Ability to file posts under folders"] = "Možnost řadit příspěvky do složek";
-$a->strings["Dislike Posts"] = "Označit příspěvky jako neoblíbené";
-$a->strings["Ability to dislike posts/comments"] = "Možnost označit příspěvky/komentáře jako neoblíbené";
-$a->strings["Star Posts"] = "Příspěvky s hvězdou";
-$a->strings["Ability to mark special posts with a star indicator"] = "Možnost označit příspěvky s indikátorem hvězdy";
-$a->strings["Mute Post Notifications"] = "Utlumit upozornění na přísvěvky";
-$a->strings["Ability to mute notifications for a thread"] = "Možnost stlumit upozornění pro vlákno";
+$a->strings["Friendica Notification"] = "Friendica Notifikace";
+$a->strings["Thank You,"] = "Děkujeme, ";
+$a->strings["%s Administrator"] = "%s Administrátor";
+$a->strings["noreply"] = "neodpovídat";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s.";
+$a->strings["a private message"] = "soukromá zpráva";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s.";
+$a->strings["Name:"] = "Jméno:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url].";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Prosím navštivte %s  pokud chcete změnit tento vztah.";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky..";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní";
+$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku.";
+$a->strings["User not found."] = "Uživatel nenalezen";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
+$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id.";
+$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id.";
+$a->strings["Invalid request."] = "Neplatný požadavek.";
+$a->strings["Invalid item."] = "Neplatná položka.";
+$a->strings["Invalid action. "] = "Neplatná akce";
+$a->strings["DB error"] = "DB chyba";
+$a->strings["view full size"] = "zobrazit v plné velikosti";
+$a->strings[" on Last.fm"] = " na Last.fm";
+$a->strings["Full Name:"] = "Celé jméno:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Narozeniny:";
+$a->strings["Age:"] = "Věk:";
+$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Sexuální preference:";
+$a->strings["Hometown:"] = "Rodné město";
+$a->strings["Tags:"] = "Štítky:";
+$a->strings["Political Views:"] = "Politické přesvědčení:";
+$a->strings["Religion:"] = "Náboženství:";
+$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
+$a->strings["Likes:"] = "Líbí se:";
+$a->strings["Dislikes:"] = "Nelibí se:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
+$a->strings["Musical interests:"] = "Hudební vkus:";
+$a->strings["Books, literature:"] = "Knihy, literatura:";
+$a->strings["Television:"] = "Televize:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
+$a->strings["Love/Romance:"] = "Láska/romance";
+$a->strings["Work/employment:"] = "Práce/zaměstnání:";
+$a->strings["School/education:"] = "Škola/vzdělávání:";
+$a->strings["Nothing new here"] = "Zde není nic nového";
+$a->strings["Clear notifications"] = "Smazat notifikace";
+$a->strings["End this session"] = "Konec této relace";
+$a->strings["Your videos"] = "Vaše videa";
+$a->strings["Your personal notes"] = "Vaše osobní poznámky";
+$a->strings["Sign in"] = "Přihlásit se";
+$a->strings["Home Page"] = "Domácí stránka";
+$a->strings["Create an account"] = "Vytvořit účet";
+$a->strings["Help"] = "Nápověda";
+$a->strings["Help and documentation"] = "Nápověda a dokumentace";
+$a->strings["Apps"] = "Aplikace";
+$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry";
+$a->strings["Search"] = "Vyhledávání";
+$a->strings["Search site content"] = "Hledání na stránkách tohoto webu";
+$a->strings["Conversations on this site"] = "Konverzace na tomto webu";
+$a->strings["Conversations on the network"] = "Konverzace v síti";
+$a->strings["Directory"] = "Adresář";
+$a->strings["People directory"] = "Adresář";
+$a->strings["Information"] = "Informace";
+$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica";
+$a->strings["Network"] = "Síť";
+$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel";
+$a->strings["Network Reset"] = "Síťový Reset";
+$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů";
+$a->strings["Introductions"] = "Představení";
+$a->strings["Friend Requests"] = "Žádosti přátel";
+$a->strings["Notifications"] = "Upozornění";
+$a->strings["See all notifications"] = "Zobrazit všechny upozornění";
+$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené";
+$a->strings["Messages"] = "Zprávy";
+$a->strings["Private mail"] = "Soukromá pošta";
+$a->strings["Inbox"] = "Doručená pošta";
+$a->strings["Outbox"] = "Odeslaná pošta";
+$a->strings["New Message"] = "Nová zpráva";
+$a->strings["Manage"] = "Spravovat";
+$a->strings["Manage other pages"] = "Spravovat jiné stránky";
+$a->strings["Delegations"] = "Delegace";
+$a->strings["Delegate Page Management"] = "Správa delegátů stránky";
+$a->strings["Account settings"] = "Nastavení účtu";
+$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily";
+$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty";
+$a->strings["Admin"] = "Administrace";
+$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace";
+$a->strings["Navigation"] = "Navigace";
+$a->strings["Site map"] = "Mapa webu";
+$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným.";
+$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná.";
+$a->strings["Disallowed profile URL."] = "Nepovolené URL profilu.";
 $a->strings["Connect URL missing."] = "Chybí URL adresa.";
 $a->strings["This site is not configured to allow communications with other networks."] = "Tento web není nakonfigurován tak, aby umožňoval komunikaci s ostatními sítěmi.";
 $a->strings["No compatible communication protocols or feeds were discovered."] = "Nenalezen žádný kompatibilní komunikační protokol nebo kanál.";
@@ -1377,13 +374,34 @@ $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."] = "Omezený profil. Tato osoba nebude schopna od Vás přijímat přímé / osobní sdělení.";
 $a->strings["Unable to retrieve contact information."] = "Nepodařilo se získat kontaktní informace.";
 $a->strings["following"] = "následující";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Dříve smazaná skupina s tímto jménem byla obnovena. Stávající oprávnění <strong>může</ strong> ovlivnit tuto skupinu a její budoucí členy. Pokud to není to, co jste chtěli, vytvořte, prosím,  další skupinu s jiným názvem.";
-$a->strings["Default privacy group for new contacts"] = "Defaultní soukromá skrupina pro nové kontakty.";
-$a->strings["Everybody"] = "Všichni";
-$a->strings["edit"] = "editovat";
-$a->strings["Edit group"] = "Editovat skupinu";
-$a->strings["Create a new group"] = "Vytvořit novou skupinu";
-$a->strings["Contacts not in any group"] = "Kontakty, které nejsou v žádné skupině";
+$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
+$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku";
+$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
+$a->strings["User creation error"] = "Chyba vytváření uživatele";
+$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d kontakt nenaimporován",
+       1 => "%d kontaktů nenaimporováno",
+       2 => "%d kontakty nenaimporovány",
+);
+$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Začíná:";
+$a->strings["Finishes:"] = "Končí:";
+$a->strings["stopped following"] = "následování zastaveno";
+$a->strings["Poke"] = "Šťouchnout";
+$a->strings["View Status"] = "Zobrazit Status";
+$a->strings["View Profile"] = "Zobrazit Profil";
+$a->strings["View Photos"] = "Zobrazit Fotky";
+$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
+$a->strings["Edit Contact"] = "Editovat Kontakty";
+$a->strings["Drop Contact"] = "Odstranit kontakt";
+$a->strings["Send PM"] = "Poslat soukromou zprávu";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\tThe friendica vývojáři uvolnili nedávno aktualizaci %s,\n\t\t\tale při pokusu o její instalaci se něco velmi nepovedlo.\n\t\t\tJe třeba to opravit a já to sám nedokážu. Prosím kontaktuj\n\t\t\tfriendica vývojáře, pokud mi s tím nepomůžeš ty sám. Moje databáze může být poškozena.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Chybová zpráva je\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Při vytváření databázových tabulek došlo k chybám.";
+$a->strings["Errors encountered performing database changes."] = "Při provádění databázových změn došlo k chybám.";
 $a->strings["Miscellaneous"] = "Různé";
 $a->strings["year"] = "rok";
 $a->strings["month"] = "měsíc";
@@ -1402,30 +420,53 @@ $a->strings["minutes"] = "minut";
 $a->strings["second"] = "sekunda";
 $a->strings["seconds"] = "sekund";
 $a->strings["%1\$d %2\$s ago"] = "před %1\$d %2\$s";
-$a->strings["%s's birthday"] = "%s má narozeniny";
-$a->strings["Happy Birthday %s"] = "Veselé narozeniny %s";
-$a->strings["Visible to everybody"] = "Viditelné pro všechny";
-$a->strings["show"] = "zobrazit";
-$a->strings["don't show"] = "nikdy nezobrazit";
 $a->strings["[no subject]"] = "[bez předmětu]";
-$a->strings["stopped following"] = "následování zastaveno";
-$a->strings["Poke"] = "Šťouchnout";
-$a->strings["View Status"] = "Zobrazit Status";
-$a->strings["View Profile"] = "Zobrazit Profil";
-$a->strings["View Photos"] = "Zobrazit Fotky";
-$a->strings["Network Posts"] = "Zobrazit Příspěvky sítě";
-$a->strings["Edit Contact"] = "Editovat Kontakty";
-$a->strings["Drop Contact"] = "Odstranit kontakt";
-$a->strings["Send PM"] = "Poslat soukromou zprávu";
-$a->strings["Welcome "] = "Vítejte ";
-$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii";
-$a->strings["Welcome back "] = "Vítejte zpět ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.";
-$a->strings["event"] = "událost";
+$a->strings["(no subject)"] = "(Bez předmětu)";
+$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno";
+$a->strings["Block immediately"] = "Okamžitě blokovat ";
+$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter";
+$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí";
+$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný";
+$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru";
+$a->strings["Frequently"] = "Často";
+$a->strings["Hourly"] = "každou hodinu";
+$a->strings["Twice daily"] = "Dvakrát denně";
+$a->strings["Daily"] = "denně";
+$a->strings["Weekly"] = "Týdenně";
+$a->strings["Monthly"] = "Měsíčně";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora konektor";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s je nyní přítel s %2\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora";
+$a->strings["Attachments:"] = "Přílohy:";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nemá rád %2\$s na %3\$s";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s šťouchnul %2\$s";
-$a->strings["poked"] = "šťouchnut";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s je právě %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s označen uživatelem %2\$s %3\$s s %4\$s";
 $a->strings["post/item"] = "příspěvek/položka";
 $a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "uživatel %1\$s označil %2\$s's %3\$s jako oblíbeného";
+$a->strings["Select"] = "Vybrat";
+$a->strings["Delete"] = "Odstranit";
+$a->strings["View %s's profile @ %s"] = "Zobrazit profil uživatele %s na %s";
+$a->strings["Categories:"] = "Kategorie:";
+$a->strings["Filed under:"] = "Vyplněn pod:";
+$a->strings["%s from %s"] = "%s od %s";
+$a->strings["View in context"] = "Pohled v kontextu";
+$a->strings["Please wait"] = "Čekejte prosím";
 $a->strings["remove"] = "odstranit";
 $a->strings["Delete Selected Items"] = "Smazat vybrané položky";
 $a->strings["Follow Thread"] = "Následovat vlákno";
@@ -1438,31 +479,60 @@ $a->strings[", and %d other people"] = ", a %d dalších lidí";
 $a->strings["%s like this."] = "%s se to líbí.";
 $a->strings["%s don't like this."] = "%s se to nelíbí.";
 $a->strings["Visible to <strong>everybody</strong>"] = "Viditelné pro <strong>všechny</strong>";
+$a->strings["Please enter a link URL:"] = "Zadejte prosím URL odkaz:";
 $a->strings["Please enter a video link/URL:"] = "Prosím zadejte URL adresu videa:";
 $a->strings["Please enter an audio link/URL:"] = "Prosím zadejte URL adresu zvukového záznamu:";
 $a->strings["Tag term:"] = "Štítek:";
+$a->strings["Save to Folder:"] = "Uložit do složky:";
 $a->strings["Where are you right now?"] = "Kde právě jste?";
 $a->strings["Delete item(s)?"] = "Smazat položku(y)?";
 $a->strings["Post to Email"] = "Poslat příspěvek na e-mail";
 $a->strings["Connectors disabled, since \"%s\" is enabled."] = "Kontektory deaktivovány, od \"%s\" je aktivován.";
+$a->strings["Hide your profile details from unknown viewers?"] = "Skrýt Vaše profilové detaily před neznámými uživateli?";
+$a->strings["Share"] = "Sdílet";
+$a->strings["Upload photo"] = "Nahrát fotografii";
+$a->strings["upload photo"] = "nahrát fotky";
+$a->strings["Attach file"] = "Přiložit soubor";
+$a->strings["attach file"] = "přidat soubor";
+$a->strings["Insert web link"] = "Vložit webový odkaz";
+$a->strings["web link"] = "webový odkaz";
+$a->strings["Insert video link"] = "Zadejte odkaz na video";
+$a->strings["video link"] = "odkaz na video";
+$a->strings["Insert audio link"] = "Zadejte odkaz na zvukový záznam";
+$a->strings["audio link"] = "odkaz na audio";
+$a->strings["Set your location"] = "Nastavte vaši polohu";
+$a->strings["set location"] = "nastavit místo";
+$a->strings["Clear browser location"] = "Odstranit adresu v prohlížeči";
+$a->strings["clear location"] = "vymazat místo";
+$a->strings["Set title"] = "Nastavit titulek";
+$a->strings["Categories (comma-separated list)"] = "Kategorie (čárkou oddělený seznam)";
+$a->strings["Permission settings"] = "Nastavení oprávnění";
 $a->strings["permissions"] = "oprávnění";
+$a->strings["CC: email addresses"] = "skrytá kopie: e-mailové adresy";
+$a->strings["Public post"] = "Veřejný příspěvek";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Příklad: bob@example.com, mary@example.com";
+$a->strings["Preview"] = "Náhled";
 $a->strings["Post to Groups"] = "Zveřejnit na Groups";
 $a->strings["Post to Contacts"] = "Zveřejnit na Groups";
 $a->strings["Private post"] = "Soukromý příspěvek";
-$a->strings["view full size"] = "zobrazit v plné velikosti";
 $a->strings["newer"] = "novější";
 $a->strings["older"] = "starší";
 $a->strings["prev"] = "předchozí";
 $a->strings["first"] = "první";
 $a->strings["last"] = "poslední";
 $a->strings["next"] = "další";
+$a->strings["Loading more entries..."] = "Načítání více záznamů...";
+$a->strings["The end"] = "Konec";
 $a->strings["No contacts"] = "Žádné kontakty";
 $a->strings["%d Contact"] = array(
        0 => "%d kontakt",
        1 => "%d kontaktů",
        2 => "%d kontaktů",
 );
+$a->strings["View Contacts"] = "Zobrazit kontakty";
+$a->strings["Save"] = "Uložit";
 $a->strings["poke"] = "šťouchnout";
+$a->strings["poked"] = "šťouchnut";
 $a->strings["ping"] = "cinknout";
 $a->strings["pinged"] = "cinkut";
 $a->strings["prod"] = "pobídnout";
@@ -1512,134 +582,34 @@ $a->strings["September"] = "Září";
 $a->strings["October"] = "Října";
 $a->strings["November"] = "Listopadu";
 $a->strings["December"] = "Prosinec";
+$a->strings["View Video"] = "Zobrazit video";
 $a->strings["bytes"] = "bytů";
 $a->strings["Click to open/close"] = "Klikněte pro otevření/zavření";
-$a->strings["default"] = "standardní";
+$a->strings["link to source"] = "odkaz na zdroj";
 $a->strings["Select an alternate language"] = "Vyběr alternativního jazyka";
-$a->strings["activity"] = "aktivita";
-$a->strings["post"] = "příspěvek";
-$a->strings["Item filed"] = "Položka vyplněna";
-$a->strings["Image/photo"] = "Obrázek/fotografie";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>";
-$a->strings["$1 wrote:"] = "$1 napsal:";
-$a->strings["Encrypted content"] = "Šifrovaný obsah";
-$a->strings["(no subject)"] = "(Bez předmětu)";
-$a->strings["noreply"] = "neodpovídat";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Nelze nalézt záznam v DNS pro databázový server '%s'";
-$a->strings["Unknown | Not categorised"] = "Neznámé | Nezařazeno";
-$a->strings["Block immediately"] = "Okamžitě blokovat ";
-$a->strings["Shady, spammer, self-marketer"] = "pochybný, spammer, self-makerter";
-$a->strings["Known to me, but no opinion"] = "Znám ho ale, ale bez rozhodnutí";
-$a->strings["OK, probably harmless"] = "OK, pravděpodobně neškodný";
-$a->strings["Reputable, has my trust"] = "Renomovaný, má mou důvěru";
-$a->strings["Weekly"] = "Týdenně";
-$a->strings["Monthly"] = "Měsíčně";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora konektor";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "App.net";
-$a->strings[" on Last.fm"] = " na Last.fm";
-$a->strings["Starts:"] = "Začíná:";
-$a->strings["Finishes:"] = "Končí:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Narozeniny:";
-$a->strings["Age:"] = "Věk:";
-$a->strings["for %1\$d %2\$s"] = "pro %1\$d %2\$s";
-$a->strings["Tags:"] = "Štítky:";
-$a->strings["Religion:"] = "Náboženství:";
-$a->strings["Hobbies/Interests:"] = "Koníčky/zájmy:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktní informace a sociální sítě:";
-$a->strings["Musical interests:"] = "Hudební vkus:";
-$a->strings["Books, literature:"] = "Knihy, literatura:";
-$a->strings["Television:"] = "Televize:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/tanec/kultura/zábava:";
-$a->strings["Love/Romance:"] = "Láska/romance";
-$a->strings["Work/employment:"] = "Práce/zaměstnání:";
-$a->strings["School/education:"] = "Škola/vzdělávání:";
-$a->strings["Click here to upgrade."] = "Klikněte zde pro aktualizaci.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Tato akce překročí limit nastavené Vaším předplatným.";
-$a->strings["This action is not available under your subscription plan."] = "Tato akce není v rámci Vašeho předplatného dostupná.";
-$a->strings["End this session"] = "Konec této relace";
-$a->strings["Your posts and conversations"] = "Vaše příspěvky a konverzace";
-$a->strings["Your profile page"] = "Vaše profilová stránka";
-$a->strings["Your photos"] = "Vaše fotky";
-$a->strings["Your videos"] = "Vaše videa";
-$a->strings["Your events"] = "Vaše události";
-$a->strings["Personal notes"] = "Osobní poznámky";
-$a->strings["Your personal notes"] = "Vaše osobní poznámky";
-$a->strings["Sign in"] = "Přihlásit se";
-$a->strings["Home Page"] = "Domácí stránka";
-$a->strings["Create an account"] = "Vytvořit účet";
-$a->strings["Help and documentation"] = "Nápověda a dokumentace";
-$a->strings["Apps"] = "Aplikace";
-$a->strings["Addon applications, utilities, games"] = "Doplňkové aplikace, nástroje, hry";
-$a->strings["Search site content"] = "Hledání na stránkách tohoto webu";
-$a->strings["Conversations on this site"] = "Konverzace na tomto webu";
-$a->strings["Conversations on the network"] = "Konverzace v síti";
-$a->strings["Directory"] = "Adresář";
-$a->strings["People directory"] = "Adresář";
-$a->strings["Information"] = "Informace";
-$a->strings["Information about this friendica instance"] = "Informace o této instanci Friendica";
-$a->strings["Conversations from your friends"] = "Konverzace od Vašich přátel";
-$a->strings["Network Reset"] = "Síťový Reset";
-$a->strings["Load Network page with no filters"] = "Načíst stránku Síť bez filtrů";
-$a->strings["Friend Requests"] = "Žádosti přátel";
-$a->strings["See all notifications"] = "Zobrazit všechny upozornění";
-$a->strings["Mark all system notifications seen"] = "Označit všechny upozornění systému jako přečtené";
-$a->strings["Private mail"] = "Soukromá pošta";
-$a->strings["Inbox"] = "Doručená pošta";
-$a->strings["Outbox"] = "Odeslaná pošta";
-$a->strings["Manage"] = "Spravovat";
-$a->strings["Manage other pages"] = "Spravovat jiné stránky";
-$a->strings["Account settings"] = "Nastavení účtu";
-$a->strings["Manage/Edit Profiles"] = "Spravovat/Editovat Profily";
-$a->strings["Manage/edit friends and contacts"] = "Spravovat/upravit přátelé a kontakty";
-$a->strings["Site setup and configuration"] = "Nastavení webu a konfigurace";
-$a->strings["Navigation"] = "Navigace";
-$a->strings["Site map"] = "Mapa webu";
-$a->strings["User not found."] = "Uživatel nenalezen";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo denního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Bylo týdenního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Bylo dosaženo měsíčního limitu %d odeslaných příspěvků. Příspěvek byl odmítnut.";
-$a->strings["There is no status with this id."] = "Není tu žádný status s tímto id.";
-$a->strings["There is no conversation with this id."] = "Nemáme žádnou konverzaci s tímto id.";
-$a->strings["Invalid request."] = "Neplatný požadavek.";
-$a->strings["Invalid item."] = "Neplatná položka.";
-$a->strings["Invalid action. "] = "Neplatná akce";
-$a->strings["DB error"] = "DB chyba";
-$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
-$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
-$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
-$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
-$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
-$a->strings["Name too short."] = "Jméno je příliš krátké.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
-$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
-$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem.";
-$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo.";
-$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
-$a->strings["Friends"] = "Přátelé";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3\$s\n\t\t\tpřihlašovací jméno:\t%1\$s\n\t\t\theslo:\t%5\$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2\$s.";
-$a->strings["Sharing notification from Diaspora network"] = "Sdílení oznámení ze sítě Diaspora";
-$a->strings["Attachments:"] = "Přílohy:";
-$a->strings["Do you really want to delete this item?"] = "Opravdu chcete smazat tuto položku?";
-$a->strings["Archives"] = "Archív";
+$a->strings["activity"] = "aktivita";
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "",
+       2 => "komentář",
+);
+$a->strings["post"] = "příspěvek";
+$a->strings["Item filed"] = "Položka vyplněna";
+$a->strings["Logged out."] = "Odhlášen.";
+$a->strings["Login failed."] = "Přihlášení se nezdařilo.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Zaznamenali jsme problém s Vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. ";
+$a->strings["The error message was:"] = "Chybová zpráva byla:";
+$a->strings["Image/photo"] = "Obrázek/fotografie";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> napsal následující <a href=\"%s\" target=\"_blank\">příspěvek</a>";
+$a->strings["$1 wrote:"] = "$1 napsal:";
+$a->strings["Encrypted content"] = "Šifrovaný obsah";
+$a->strings["Welcome "] = "Vítejte ";
+$a->strings["Please upload a profile photo."] = "Prosím nahrejte profilovou fotografii";
+$a->strings["Welcome back "] = "Vítejte zpět ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Formulářový bezpečnostní token nebyl správný. To pravděpodobně nastalo kvůli tom, že formulář byl otevřen příliš dlouho (>3 hodiny) před jeho odesláním.";
+$a->strings["Embedded content"] = "vložený obsah";
+$a->strings["Embedding disabled"] = "Vkládání zakázáno";
 $a->strings["Male"] = "Muž";
 $a->strings["Female"] = "Žena";
 $a->strings["Currently Male"] = "V současné době muž";
@@ -1676,6 +646,7 @@ $a->strings["Infatuated"] = "Zabouchnutý";
 $a->strings["Dating"] = "Seznamující se";
 $a->strings["Unfaithful"] = "Nevěrný";
 $a->strings["Sex Addict"] = "Závislý na sexu";
+$a->strings["Friends"] = "Přátelé";
 $a->strings["Friends/Benefits"] = "Přátelé / výhody";
 $a->strings["Casual"] = "Ležérní";
 $a->strings["Engaged"] = "Zadaný";
@@ -1697,114 +668,1152 @@ $a->strings["Uncertain"] = "Nejistý";
 $a->strings["It's complicated"] = "Je to složité";
 $a->strings["Don't care"] = "Nezajímá";
 $a->strings["Ask me"] = "Zeptej se mě";
-$a->strings["Friendica Notification"] = "Friendica Notifikace";
-$a->strings["Thank You,"] = "Děkujeme, ";
-$a->strings["%s Administrator"] = "%s Administrátor";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Upozornění] Obdržena nová zpráva na %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s Vám poslal novou soukromou zprávu na %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s Vám poslal %2\$s.";
-$a->strings["a private message"] = "soukromá zpráva";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Prosím navštivte %s pro zobrazení Vašich soukromých zpráv a možnost na ně odpovědět.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]%3\$s's %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s okomentoval na [url=%2\$s]Váš %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Upozornění] Komentář ke konverzaci #%1\$d od %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "Uživatel %s okomentoval vámi sledovanou položku/konverzaci.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Prosím navštivte %s pro zobrazení konverzace a možnosti odpovědět.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Upozornění] %s umístěn na Vaši profilovou zeď";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s přidal příspěvek na Vaši profilovou zeď na %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s napřidáno na [url=%2\$s]na Vaši zeď[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Upozornění] %s Vás označil";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s Vás označil na %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]Vás označil[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notify] %s nasdílel nový příspěvek";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s nasdílel nový příspěvek na %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]nasdílel příspěvek[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Upozornění] %1\$s Vás šťouchnul";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s Vás šťouchnul na %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "Uživatel %1\$s [url=%2\$s]Vás šťouchnul[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Upozornění] %s označil Váš příspěvek";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s označil Váš příspěvek na %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s označil [url=%2\$s]Váš příspěvek[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Upozornění] Obdrženo přestavení";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Obdržel jste žádost o spojení od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]žádost o spojení[/url] od %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Můžete navštívit jejich profil na %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Prosím navštivte %s pro schválení či zamítnutí představení.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica:Upozornění] Nový člověk s vámi sdílí";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "uživatel %1\$s sdílí s vámi ma %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica:Upozornění] Máte nového následovníka";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Máte nového následovníka na %2\$s : %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Upozornění] Obdržen návrh na přátelství";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Obdržel jste návrh přátelství od '%1\$s' na %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Obdržel jste [url=%1\$s]návrh přátelství[/url] s %2\$s from %3\$s.";
-$a->strings["Name:"] = "Jméno:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Prosím navštivte %s pro schválení či zamítnutí doporučení.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica:Upozornění] Spojení akceptováno";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' akceptoval váš požadavek na spojení na %2\$s";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s akceptoval váš [url=%1\$s]požadavek na spojení[/url].";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Jste nyní vzájemnými přáteli a můžete si vyměňovat aktualizace statusu, fotografií a emailů\nbez omezení.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Prosím navštivte %s  pokud chcete změnit tento vztah.";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' vás přijal jako \"fanouška\", což omezuje některé formy komunikace - jako jsou soukromé zprávy a některé interakce na profilech. Pokud se jedná o celebritu, případně o komunitní stránky, pak bylo toto nastavení provedeno automaticky..";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "''%1\$s' se může rozhodnout rozšířit tento vztah na oboustraný nebo méně restriktivní";
-$a->strings["[Friendica System:Notify] registration request"] = "[Systém Friendica :Upozornění] registrační požadavek";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Obdržel jste požadavek na registraci od '%1\$s' na %2\$s";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Obdržel jste [url=%1\$s]požadavek na registraci[/url] od '%2\$s'.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Plné jméno:\t%1\$s\\nUmístění webu:\t%2\$s\\nPřihlašovací účet:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Prosím navštivte %s k odsouhlasení nebo k zamítnutí požadavku.";
-$a->strings["Embedded content"] = "vložený obsah";
-$a->strings["Embedding disabled"] = "Vkládání zakázáno";
-$a->strings["Error decoding account file"] = "Chyba dekódování uživatelského účtu";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Chyba! V datovém souboru není označení verze! Je to opravdu soubor s účtem Friendica?";
-$a->strings["Error! Cannot check nickname"] = "Chyba! Nelze ověřit přezdívku";
-$a->strings["User '%s' already exists on this server!"] = "Uživatel '%s' již na tomto serveru existuje!";
-$a->strings["User creation error"] = "Chyba vytváření uživatele";
-$a->strings["User profile creation error"] = "Chyba vytváření uživatelského účtu";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d kontakt nenaimporován",
-       1 => "%d kontaktů nenaimporováno",
-       2 => "%d kontakty nenaimporovány",
+$a->strings["An invitation is required."] = "Pozvánka je vyžadována.";
+$a->strings["Invitation could not be verified."] = "Pozvánka nemohla být ověřena.";
+$a->strings["Invalid OpenID url"] = "Neplatný odkaz OpenID";
+$a->strings["Please enter the required information."] = "Zadejte prosím požadované informace.";
+$a->strings["Please use a shorter name."] = "Použijte prosím kratší jméno.";
+$a->strings["Name too short."] = "Jméno je příliš krátké.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Váš e-mailová doména není na tomto serveru mezi povolenými.";
+$a->strings["Not a valid email address."] = "Neplatná e-mailová adresa.";
+$a->strings["Cannot use that email."] = "Tento e-mail nelze použít.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Vaše \"přezdívka\" může obsahovat pouze \"a-z\", \"0-9\", \"-\", a \"_\", a musí začínat písmenem.";
+$a->strings["Nickname is already registered. Please choose another."] = "Přezdívka je již registrována. Prosím vyberte jinou.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Tato přezdívka již zde byla použita a nemůže být využita znovu. Prosím vyberete si jinou.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "Závažná chyba: Generování bezpečnostních klíčů se nezdařilo.";
+$a->strings["An error occurred during registration. Please try again."] = "Došlo k chybě při registraci. Zkuste to prosím znovu.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Došlo k chybě při vytváření Vašeho výchozího profilu. Zkuste to prosím znovu.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tDrahý %1\$s,\n\t\t\tDěkujeme Vám za registraci na %2\$s. Váš účet byl vytvořen.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tVaše přihlašovací údaje jsou následující:\n\t\t\tAdresa webu:\t%3\$s\n\t\t\tpřihlašovací jméno:\t%1\$s\n\t\t\theslo:\t%5\$s\n\n\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou.\n\n\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné.\n\t\tPokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\n\t\tDíky a vítejte na %2\$s.";
+$a->strings["Registration details for %s"] = "Registrační údaje pro %s";
+$a->strings["Visible to everybody"] = "Viditelné pro všechny";
+$a->strings["This entry was edited"] = "Tento záznam byl editován";
+$a->strings["Private Message"] = "Soukromá zpráva";
+$a->strings["Edit"] = "Upravit";
+$a->strings["save to folder"] = "uložit do složky";
+$a->strings["add star"] = "přidat hvězdu";
+$a->strings["remove star"] = "odebrat hvězdu";
+$a->strings["toggle star status"] = "přepnout hvězdu";
+$a->strings["starred"] = "označeno hvězdou";
+$a->strings["ignore thread"] = "ignorovat vlákno";
+$a->strings["unignore thread"] = "přestat ignorovat vlákno";
+$a->strings["toggle ignore status"] = "přepnout stav Ignorování";
+$a->strings["ignored"] = "ignorován";
+$a->strings["add tag"] = "přidat štítek";
+$a->strings["I like this (toggle)"] = "Líbí se mi to (přepínač)";
+$a->strings["like"] = "má rád";
+$a->strings["I don't like this (toggle)"] = "Nelíbí se mi to (přepínač)";
+$a->strings["dislike"] = "nemá rád";
+$a->strings["Share this"] = "Sdílet toto";
+$a->strings["share"] = "sdílí";
+$a->strings["to"] = "pro";
+$a->strings["via"] = "přes";
+$a->strings["Wall-to-Wall"] = "Zeď-na-Zeď";
+$a->strings["via Wall-To-Wall:"] = "přes Zeď-na-Zeď ";
+$a->strings["%d comment"] = array(
+       0 => "%d komentář",
+       1 => "%d komentářů",
+       2 => "%d komentářů",
+);
+$a->strings["This is you"] = "Nastavte Vaši polohu";
+$a->strings["Bold"] = "Tučné";
+$a->strings["Italic"] = "Kurzíva";
+$a->strings["Underline"] = "Podrtžené";
+$a->strings["Quote"] = "Citovat";
+$a->strings["Code"] = "Kód";
+$a->strings["Image"] = "Obrázek";
+$a->strings["Link"] = "Odkaz";
+$a->strings["Video"] = "Video";
+$a->strings["Item not available."] = "Položka není k dispozici.";
+$a->strings["Item was not found."] = "Položka nebyla nalezena.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Došlo k překročení maximálního počtu zpráv na zeď během jednoho dne. Zpráva %s nedoručena.";
+$a->strings["No recipient selected."] = "Nevybrán příjemce.";
+$a->strings["Unable to check your home location."] = "Nebylo možné zjistit Vaši domácí lokaci.";
+$a->strings["Message could not be sent."] = "Zprávu se nepodařilo odeslat.";
+$a->strings["Message collection failure."] = "Sběr zpráv selhal.";
+$a->strings["Message sent."] = "Zpráva odeslána.";
+$a->strings["No recipient."] = "Žádný příjemce.";
+$a->strings["Send Private Message"] = "Odeslat soukromou zprávu";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Pokud si přejete, aby uživatel %s mohl odpovědět, ověřte si zda-li máte povoleno na svém serveru zasílání soukromých zpráv od neznámých odesilatelů.";
+$a->strings["To:"] = "Adresát:";
+$a->strings["Subject:"] = "Předmět:";
+$a->strings["Your message:"] = "Vaše zpráva:";
+$a->strings["Group created."] = "Skupina vytvořena.";
+$a->strings["Could not create group."] = "Nelze vytvořit skupinu.";
+$a->strings["Group not found."] = "Skupina nenalezena.";
+$a->strings["Group name changed."] = "Název skupiny byl změněn.";
+$a->strings["Save Group"] = "Uložit Skupinu";
+$a->strings["Create a group of contacts/friends."] = "Vytvořit skupinu kontaktů / přátel.";
+$a->strings["Group Name: "] = "Název skupiny: ";
+$a->strings["Group removed."] = "Skupina odstraněna. ";
+$a->strings["Unable to remove group."] = "Nelze odstranit skupinu.";
+$a->strings["Group Editor"] = "Editor skupin";
+$a->strings["Members"] = "Členové";
+$a->strings["All Contacts"] = "Všechny kontakty";
+$a->strings["Click on a contact to add or remove."] = "Klikněte na kontakt pro přidání nebo odebrání";
+$a->strings["No potential page delegates located."] = "Žádní potenciální delegáti stránky nenalezeni.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Delegáti jsou schopni řídit všechny aspekty tohoto účtu / stránky, kromě základních nastavení účtu. Prosím, nepředávejte svůj osobní účet nikomu, komu úplně nevěříte..";
+$a->strings["Existing Page Managers"] = "Stávající správci stránky";
+$a->strings["Existing Page Delegates"] = "Stávající delegáti stránky ";
+$a->strings["Potential Delegates"] = "Potenciální delegáti";
+$a->strings["Remove"] = "Odstranit";
+$a->strings["Add"] = "Přidat";
+$a->strings["No entries."] = "Žádné záznamy.";
+$a->strings["Invalid request identifier."] = "Neplatný identifikátor požadavku.";
+$a->strings["Discard"] = "Odstranit";
+$a->strings["Ignore"] = "Ignorovat";
+$a->strings["System"] = "Systém";
+$a->strings["Personal"] = "Osobní";
+$a->strings["Show Ignored Requests"] = "Zobrazit ignorované žádosti";
+$a->strings["Hide Ignored Requests"] = "Skrýt ignorované žádosti";
+$a->strings["Notification type: "] = "Typ oznámení: ";
+$a->strings["Friend Suggestion"] = "Návrh přátelství";
+$a->strings["suggested by %s"] = "navrhl %s";
+$a->strings["Hide this contact from others"] = "Skrýt tento kontakt před ostatními";
+$a->strings["Post a new friend activity"] = "Zveřejnit aktivitu nového přítele.";
+$a->strings["if applicable"] = "je-li použitelné";
+$a->strings["Approve"] = "Schválit";
+$a->strings["Claims to be known to you: "] = "Vaši údajní známí: ";
+$a->strings["yes"] = "ano";
+$a->strings["no"] = "ne";
+$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a přihlašování se k jejich příspěvkům. \"Fanoušek/Obdivovatel\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: ";
+$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Má být vaše propojení oboustanné nebo ne? \"Přítel\" implikuje, že dovolíte čtení a vy budete přihlášen k odebírání jejich příspěvků. \"Sdíleč\" znamená, že umožníte čtení, ale už nebudete číst jejich příspěvky: Odsouhlasit jako: ";
+$a->strings["Friend"] = "Přítel";
+$a->strings["Sharer"] = "Sdílené";
+$a->strings["Fan/Admirer"] = "Fanoušek / obdivovatel";
+$a->strings["Friend/Connect Request"] = "Přítel / žádost o připojení";
+$a->strings["New Follower"] = "Nový následovník";
+$a->strings["No introductions."] = "Žádné představení.";
+$a->strings["%s liked %s's post"] = "Uživateli %s se líbí příspěvek uživatele %s";
+$a->strings["%s disliked %s's post"] = "Uživateli %s se nelíbí příspěvek uživatele %s";
+$a->strings["%s is now friends with %s"] = "%s se nyní přátelí s %s";
+$a->strings["%s created a new post"] = "%s vytvořil nový příspěvek";
+$a->strings["%s commented on %s's post"] = "%s okomentoval příspěvek uživatele %s'";
+$a->strings["No more network notifications."] = "Žádné další síťové upozornění.";
+$a->strings["Network Notifications"] = "Upozornění Sítě";
+$a->strings["No more system notifications."] = "Žádné další systémová upozornění.";
+$a->strings["System Notifications"] = "Systémová upozornění";
+$a->strings["No more personal notifications."] = "Žádné další osobní upozornění.";
+$a->strings["Personal Notifications"] = "Osobní upozornění";
+$a->strings["No more home notifications."] = "Žádné další domácí upozornění.";
+$a->strings["Home Notifications"] = "Upozornění na vstupní straně";
+$a->strings["No profile"] = "Žádný profil";
+$a->strings["everybody"] = "Žádost o připojení selhala nebo byla zrušena.";
+$a->strings["Account"] = "Účet";
+$a->strings["Additional features"] = "Další funkčnosti";
+$a->strings["Display"] = "Zobrazení";
+$a->strings["Social Networks"] = "Sociální sítě";
+$a->strings["Plugins"] = "Pluginy";
+$a->strings["Connected apps"] = "Propojené aplikace";
+$a->strings["Export personal data"] = "Export osobních údajů";
+$a->strings["Remove account"] = "Odstranit účet";
+$a->strings["Missing some important data!"] = "Chybí některé důležité údaje!";
+$a->strings["Update"] = "Aktualizace";
+$a->strings["Failed to connect with email account using the settings provided."] = "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení.";
+$a->strings["Email settings updated."] = "Nastavení e-mailu aktualizována.";
+$a->strings["Features updated"] = "Aktualizované funkčnosti";
+$a->strings["Relocate message has been send to your contacts"] = "Správa o změně umístění byla odeslána vašim kontaktům";
+$a->strings["Passwords do not match. Password unchanged."] = "Hesla se neshodují. Heslo nebylo změněno.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Prázdné hesla nejsou povolena. Heslo nebylo změněno.";
+$a->strings["Wrong password."] = "Špatné heslo.";
+$a->strings["Password changed."] = "Heslo bylo změněno.";
+$a->strings["Password update failed. Please try again."] = "Aktualizace hesla se nezdařila. Zkuste to prosím znovu.";
+$a->strings[" Please use a shorter name."] = "Prosím použijte kratší jméno.";
+$a->strings[" Name too short."] = "Jméno je příliš krátké.";
+$a->strings["Wrong Password"] = "Špatné heslo";
+$a->strings[" Not valid email."] = "Neplatný e-mail.";
+$a->strings[" Cannot change to that email."] = "Nelze provést změnu na tento e-mail.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení. Používá se defaultní soukromá skupina.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Soukromé fórum nemá nastaveno zabezpečení a ani žádnou defaultní soukromou skupinu.";
+$a->strings["Settings updated."] = "Nastavení aktualizováno.";
+$a->strings["Add application"] = "Přidat aplikaci";
+$a->strings["Save Settings"] = "Uložit Nastavení";
+$a->strings["Name"] = "Jméno";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Přesměrování";
+$a->strings["Icon url"] = "URL ikony";
+$a->strings["You can't edit this application."] = "Nemůžete editovat tuto aplikaci.";
+$a->strings["Connected Apps"] = "Připojené aplikace";
+$a->strings["Client key starts with"] = "Klienský klíč začíná";
+$a->strings["No name"] = "Bez názvu";
+$a->strings["Remove authorization"] = "Odstranit oprávnění";
+$a->strings["No Plugin settings configured"] = "Žádný doplněk není nastaven";
+$a->strings["Plugin Settings"] = "Nastavení doplňku";
+$a->strings["Off"] = "Vypnuto";
+$a->strings["On"] = "Zapnuto";
+$a->strings["Additional Features"] = "Další Funkčnosti";
+$a->strings["Built-in support for %s connectivity is %s"] = "Vestavěná podpora pro připojení s %s je %s";
+$a->strings["enabled"] = "povoleno";
+$a->strings["disabled"] = "zakázáno";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "Přístup k elektronické poště je na tomto serveru zakázán.";
+$a->strings["Email/Mailbox Setup"] = "Nastavení e-mailu";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Pokud chcete komunikovat pomocí této služby s Vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce.";
+$a->strings["Last successful email check:"] = "Poslední úspěšná kontrola e-mailu:";
+$a->strings["IMAP server name:"] = "jméno IMAP serveru:";
+$a->strings["IMAP port:"] = "IMAP port:";
+$a->strings["Security:"] = "Zabezpečení:";
+$a->strings["None"] = "Žádný";
+$a->strings["Email login name:"] = "přihlašovací jméno k e-mailu:";
+$a->strings["Email password:"] = "heslo k Vašemu e-mailu:";
+$a->strings["Reply-to address:"] = "Odpovědět na adresu:";
+$a->strings["Send public posts to all email contacts:"] = "Poslat veřejné příspěvky na všechny e-mailové kontakty:";
+$a->strings["Action after import:"] = "Akce po importu:";
+$a->strings["Mark as seen"] = "Označit jako přečtené";
+$a->strings["Move to folder"] = "Přesunout do složky";
+$a->strings["Move to folder:"] = "Přesunout do složky:";
+$a->strings["No special theme for mobile devices"] = "žádné speciální téma pro mobilní zařízení";
+$a->strings["Display Settings"] = "Nastavení Zobrazení";
+$a->strings["Display Theme:"] = "Vybrat grafickou šablonu:";
+$a->strings["Mobile Theme:"] = "Téma pro mobilní zařízení:";
+$a->strings["Update browser every xx seconds"] = "Aktualizovat prohlížeč každých xx sekund";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 sekund, žádné maximum.";
+$a->strings["Number of items to display per page:"] = "Počet položek zobrazených na stránce:";
+$a->strings["Maximum of 100 items"] = "Maximum 100 položek";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:";
+$a->strings["Don't show emoticons"] = "Nezobrazovat emotikony";
+$a->strings["Don't show notices"] = "Nezobrazovat oznámění";
+$a->strings["Infinite scroll"] = "Nekonečné posouvání";
+$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť.";
+$a->strings["User Types"] = "Uživatelské typy";
+$a->strings["Community Types"] = "Komunitní typy";
+$a->strings["Normal Account Page"] = "Normální stránka účtu";
+$a->strings["This account is a normal personal profile"] = "Tento účet je běžný osobní profil";
+$a->strings["Soapbox Page"] = "Stránka \"Soapbox\"";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automaticky schválit všechna spojení / přátelství jako fanoušky s právem pouze ke čtení";
+$a->strings["Community Forum/Celebrity Account"] = "Komunitní fórum/ účet celebrity";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství, jako fanoušky s právem ke čtení.";
+$a->strings["Automatic Friend Page"] = "Automatická stránka přítele";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Automaticky schvalovat všechny žádosti o spojení / přátelství jako přátele";
+$a->strings["Private Forum [Experimental]"] = "Soukromé fórum [Experimentální]";
+$a->strings["Private forum - approved members only"] = "Soukromé fórum - pouze pro schválené členy";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Volitelné) Povolit OpenID pro přihlášení k tomuto účtu.";
+$a->strings["Publish your default profile in your local site directory?"] = "Publikovat Váš výchozí profil v místním adresáři webu?";
+$a->strings["No"] = "Ne";
+$a->strings["Publish your default profile in the global social directory?"] = "Publikovat Váš výchozí profil v globální sociálním adresáři?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Skrýt Vaše kontaktní údaje a seznam přátel před návštěvníky ve Vašem výchozím profilu?";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Pokud je povoleno, není možné zasílání veřejných příspěvků do Diaspory a dalších sítí.";
+$a->strings["Allow friends to post to your profile page?"] = "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?";
+$a->strings["Allow friends to tag your posts?"] = "Povolit přátelům označovat Vaše příspěvky?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Chcete nám povolit abychom vás navrhovali jako přátelé pro nové členy?";
+$a->strings["Permit unknown people to send you private mail?"] = "Povolit neznámým lidem Vám zasílat soukromé zprávy?";
+$a->strings["Profile is <strong>not published</strong>."] = "Profil <strong>není zveřejněn</strong>.";
+$a->strings["or"] = "nebo";
+$a->strings["Your Identity Address is"] = "Vaše adresa identity je";
+$a->strings["Automatically expire posts after this many days:"] = "Automaticky expirovat příspěvky po zadaném počtu dní:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány";
+$a->strings["Advanced expiration settings"] = "Pokročilé nastavení expirací";
+$a->strings["Advanced Expiration"] = "Nastavení expirací";
+$a->strings["Expire posts:"] = "Expirovat příspěvky:";
+$a->strings["Expire personal notes:"] = "Expirovat osobní poznámky:";
+$a->strings["Expire starred posts:"] = "Expirovat příspěvky s hvězdou:";
+$a->strings["Expire photos:"] = "Expirovat fotografie:";
+$a->strings["Only expire posts by others:"] = "Přízpěvky expirovat pouze ostatními:";
+$a->strings["Account Settings"] = "Nastavení účtu";
+$a->strings["Password Settings"] = "Nastavení hesla";
+$a->strings["New Password:"] = "Nové heslo:";
+$a->strings["Confirm:"] = "Potvrďte:";
+$a->strings["Leave password fields blank unless changing"] = "Pokud nechcete změnit heslo, položku hesla nevyplňujte";
+$a->strings["Current Password:"] = "Stávající heslo:";
+$a->strings["Your current password to confirm the changes"] = "Vaše stávající heslo k potvrzení změn";
+$a->strings["Password:"] = "Heslo: ";
+$a->strings["Basic Settings"] = "Základní nastavení";
+$a->strings["Email Address:"] = "E-mailová adresa:";
+$a->strings["Your Timezone:"] = "Vaše časové pásmo:";
+$a->strings["Default Post Location:"] = "Výchozí umístění příspěvků:";
+$a->strings["Use Browser Location:"] = "Používat umístění dle prohlížeče:";
+$a->strings["Security and Privacy Settings"] = "Nastavení zabezpečení a soukromí";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximální počet žádostí o přátelství za den:";
+$a->strings["(to prevent spam abuse)"] = "(Aby se zabránilo spamu)";
+$a->strings["Default Post Permissions"] = "Výchozí oprávnění pro příspěvek";
+$a->strings["(click to open/close)"] = "(Klikněte pro otevření/zavření)";
+$a->strings["Show to Groups"] = "Zobrazit ve Skupinách";
+$a->strings["Show to Contacts"] = "Zobrazit v Kontaktech";
+$a->strings["Default Private Post"] = "Výchozí Soukromý příspěvek";
+$a->strings["Default Public Post"] = "Výchozí Veřejný příspěvek";
+$a->strings["Default Permissions for New Posts"] = "Výchozí oprávnění pro nové příspěvky";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximum soukromých zpráv od neznámých lidí:";
+$a->strings["Notification Settings"] = "Nastavení notifikací";
+$a->strings["By default post a status message when:"] = "Defaultně posílat statusové zprávy když:";
+$a->strings["accepting a friend request"] = "akceptuji požadavek na přátelství";
+$a->strings["joining a forum/community"] = "připojující se k fóru/komunitě";
+$a->strings["making an <em>interesting</em> profile change"] = "provedení <em>zajímavé</em> profilové změny";
+$a->strings["Send a notification email when:"] = "Poslat notifikaci e-mailem, když";
+$a->strings["You receive an introduction"] = "obdržíte žádost o propojení";
+$a->strings["Your introductions are confirmed"] = "Vaše žádosti jsou potvrzeny";
+$a->strings["Someone writes on your profile wall"] = "někdo Vám napíše na Vaši profilovou stránku";
+$a->strings["Someone writes a followup comment"] = "někdo Vám napíše následný komentář";
+$a->strings["You receive a private message"] = "obdržíte soukromou zprávu";
+$a->strings["You receive a friend suggestion"] = "Obdržel jste návrh přátelství";
+$a->strings["You are tagged in a post"] = "Jste označen v příspěvku";
+$a->strings["You are poked/prodded/etc. in a post"] = "Byl Jste šťouchnout v příspěvku";
+$a->strings["Text-only notification emails"] = "Pouze textové notifikační e-maily";
+$a->strings["Send text only notification emails, without the html part"] = "Posílat pouze textové notifikační e-maily, bez html části.";
+$a->strings["Advanced Account/Page Type Settings"] = "Pokročilé nastavení účtu/stránky";
+$a->strings["Change the behaviour of this account for special situations"] = "Změnit chování tohoto účtu ve speciálních situacích";
+$a->strings["Relocate"] = "Změna umístění";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Pokud jste přemístil tento profil z jiného serveru a nějaký z vašich kontaktů nedostává Vaše aktualizace, zkuste stisknout toto tlačítko.";
+$a->strings["Resend relocate message to contacts"] = "Znovu odeslat správu o změně umístění Vašim kontaktům";
+$a->strings["Common Friends"] = "Společní přátelé";
+$a->strings["No contacts in common."] = "Žádné společné kontakty.";
+$a->strings["Remote privacy information not available."] = "Vzdálené soukromé informace nejsou k dispozici.";
+$a->strings["Visible to:"] = "Viditelné pro:";
+$a->strings["%d contact edited."] = array(
+       0 => "%d kontakt upraven.",
+       1 => "%d kontakty upraveny",
+       2 => "%d kontaktů upraveno",
+);
+$a->strings["Could not access contact record."] = "Nelze získat přístup k záznamu kontaktu.";
+$a->strings["Could not locate selected profile."] = "Nelze nalézt vybraný profil.";
+$a->strings["Contact updated."] = "Kontakt aktualizován.";
+$a->strings["Failed to update contact record."] = "Nepodařilo se aktualizovat kontakt.";
+$a->strings["Contact has been blocked"] = "Kontakt byl zablokován";
+$a->strings["Contact has been unblocked"] = "Kontakt byl odblokován";
+$a->strings["Contact has been ignored"] = "Kontakt bude ignorován";
+$a->strings["Contact has been unignored"] = "Kontakt přestal být ignorován";
+$a->strings["Contact has been archived"] = "Kontakt byl archivován";
+$a->strings["Contact has been unarchived"] = "Kontakt byl vrácen z archívu.";
+$a->strings["Do you really want to delete this contact?"] = "Opravdu chcete smazat tento kontakt?";
+$a->strings["Contact has been removed."] = "Kontakt byl odstraněn.";
+$a->strings["You are mutual friends with %s"] = "Jste vzájemní přátelé s uživatelem %s";
+$a->strings["You are sharing with %s"] = "Sdílíte s uživatelem %s";
+$a->strings["%s is sharing with you"] = "uživatel %s sdílí s vámi";
+$a->strings["Private communications are not available for this contact."] = "Soukromá komunikace není dostupná pro tento kontakt.";
+$a->strings["Never"] = "Nikdy";
+$a->strings["(Update was successful)"] = "(Aktualizace byla úspěšná)";
+$a->strings["(Update was not successful)"] = "(Aktualizace nebyla úspěšná)";
+$a->strings["Suggest friends"] = "Navrhněte přátelé";
+$a->strings["Network type: %s"] = "Typ sítě: %s";
+$a->strings["View all contacts"] = "Zobrazit všechny kontakty";
+$a->strings["Unblock"] = "Odblokovat";
+$a->strings["Block"] = "Blokovat";
+$a->strings["Toggle Blocked status"] = "Přepnout stav Blokováno";
+$a->strings["Unignore"] = "Přestat ignorovat";
+$a->strings["Toggle Ignored status"] = "Přepnout stav Ignorováno";
+$a->strings["Unarchive"] = "Vrátit z archívu";
+$a->strings["Archive"] = "Archivovat";
+$a->strings["Toggle Archive status"] = "Přepnout stav Archivováno";
+$a->strings["Repair"] = "Opravit";
+$a->strings["Advanced Contact Settings"] = "Pokročilé nastavení kontaktu";
+$a->strings["Communications lost with this contact!"] = "Komunikace s tímto kontaktem byla ztracena!";
+$a->strings["Fetch further information for feeds"] = "Načítat další informace pro kanál";
+$a->strings["Disabled"] = "Zakázáno";
+$a->strings["Fetch information"] = "Načítat informace";
+$a->strings["Fetch information and keywords"] = "Načítat informace a klíčová slova";
+$a->strings["Contact Editor"] = "Editor kontaktu";
+$a->strings["Profile Visibility"] = "Viditelnost profilu";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení vašeho profilu.";
+$a->strings["Contact Information / Notes"] = "Kontaktní informace / poznámky";
+$a->strings["Edit contact notes"] = "Editovat poznámky kontaktu";
+$a->strings["Visit %s's profile [%s]"] = "Navštivte profil uživatele %s [%s]";
+$a->strings["Block/Unblock contact"] = "Blokovat / Odblokovat kontakt";
+$a->strings["Ignore contact"] = "Ignorovat kontakt";
+$a->strings["Repair URL settings"] = "Opravit nastavení adresy URL ";
+$a->strings["View conversations"] = "Zobrazit konverzace";
+$a->strings["Delete contact"] = "Odstranit kontakt";
+$a->strings["Last update:"] = "Poslední aktualizace:";
+$a->strings["Update public posts"] = "Aktualizovat veřejné příspěvky";
+$a->strings["Update now"] = "Aktualizovat";
+$a->strings["Currently blocked"] = "V současnosti zablokováno";
+$a->strings["Currently ignored"] = "V současnosti ignorováno";
+$a->strings["Currently archived"] = "Aktuálně archivován";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpovědi/Libí se na Vaše veřejné příspěvky <strong>mohou být</strong> stále viditelné";
+$a->strings["Notification for new posts"] = "Upozornění na nové příspěvky";
+$a->strings["Send a notification of every new post of this contact"] = "Poslat upozornění při každém novém příspěvku tohoto kontaktu";
+$a->strings["Blacklisted keywords"] = "Zakázaná klíčová slova";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Čárkou oddělený seznam klíčových slov, které by neměly být převáděna na hashtagy, když je zvoleno \"Načítat informace a klíčová slova\"";
+$a->strings["Suggestions"] = "Doporučení";
+$a->strings["Suggest potential friends"] = "Navrhnout potenciální přátele";
+$a->strings["Show all contacts"] = "Zobrazit všechny kontakty";
+$a->strings["Unblocked"] = "Odblokován";
+$a->strings["Only show unblocked contacts"] = "Zobrazit pouze neblokované kontakty";
+$a->strings["Blocked"] = "Blokován";
+$a->strings["Only show blocked contacts"] = "Zobrazit pouze blokované kontakty";
+$a->strings["Ignored"] = "Ignorován";
+$a->strings["Only show ignored contacts"] = "Zobrazit pouze ignorované kontakty";
+$a->strings["Archived"] = "Archivován";
+$a->strings["Only show archived contacts"] = "Zobrazit pouze archivované kontakty";
+$a->strings["Hidden"] = "Skrytý";
+$a->strings["Only show hidden contacts"] = "Zobrazit pouze skryté kontakty";
+$a->strings["Mutual Friendship"] = "Vzájemné přátelství";
+$a->strings["is a fan of yours"] = "je Váš fanoušek";
+$a->strings["you are a fan of"] = "jste fanouškem";
+$a->strings["Edit contact"] = "Editovat kontakt";
+$a->strings["Search your contacts"] = "Prohledat Vaše kontakty";
+$a->strings["Finding: "] = "Zjištění: ";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Omlouváme se, možná je Váš soubor větší než je povolené maximum dle nastavení PHP";
+$a->strings["Or - did you try to upload an empty file?"] = "Nebo - nenahrával jste prázdný soubor?";
+$a->strings["File exceeds size limit of %d"] = "Velikost souboru přesáhla limit %d";
+$a->strings["File upload failed."] = "Nahrání souboru se nezdařilo.";
+$a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovte stránku pro zobrazení]";
+$a->strings["Export account"] = "Exportovat účet";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportujte svůj účet a své kontakty. Použijte tuto funkci pro vytvoření  zálohy svého účtu a/nebo k přesunu na jiný server.";
+$a->strings["Export all"] = "Exportovat vše";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportujte své informace k účtu, kontakty a vše své položky jako json. To může být velmi velký soubor a může to zabrat spoustu času. Tuto funkci použijte pro úplnou zálohu svého účtu(fotografie se neexportují)";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrace úspěšná. Zkontrolujte prosím svůj e-mail pro další instrukce.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Nepovedlo se odeslat emailovou zprávu. Zde jsou detaily Vašeho účtu:<br> login: %s<br> heslo: %s<br><br>Své heslo můžete změnit po přihlášení.";
+$a->strings["Your registration can not be processed."] = "Vaši registraci nelze zpracovat.";
+$a->strings["Your registration is pending approval by the site owner."] = "Vaše registrace čeká na schválení vlastníkem serveru.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Došlo k překročení maximálního povoleného počtu registrací za den na tomto serveru. Zkuste to  zítra znovu.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Tento formulář můžete (volitelně) vyplnit s pomocí OpenID tím, že vyplníte své OpenID a kliknutete na tlačítko 'Zaregistrovat'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Pokud nepoužíváte OpenID, nechte prosím toto pole prázdné a vyplňte zbylé položky.";
+$a->strings["Your OpenID (optional): "] = "Vaše OpenID (nepovinné): ";
+$a->strings["Include your profile in member directory?"] = "Toto je Váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
+$a->strings["Membership on this site is by invitation only."] = "Členství na tomto webu je pouze na pozvání.";
+$a->strings["Your invitation ID: "] = "Vaše pozvání ID:";
+$a->strings["Registration"] = "Registrace";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vaše celé jméno (např. Jan Novák):";
+$a->strings["Your Email Address: "] = "Vaše e-mailová adresa:";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Vyberte přezdívku k profilu. Ta musí začít s textovým znakem. Vaše profilová adresa na tomto webu pak bude \"<strong>přezdívka@\$sitename</strong>\".";
+$a->strings["Choose a nickname: "] = "Vyberte přezdívku:";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Import Vašeho profilu do této friendica instance";
+$a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
+$a->strings["System down for maintenance"] = "Systém vypnut z důvodů údržby";
+$a->strings["Access to this profile has been restricted."] = "Přístup na tento profil byl omezen.";
+$a->strings["Tips for New Members"] = "Tipy pro nové členy";
+$a->strings["Public access denied."] = "Veřejný přístup odepřen.";
+$a->strings["No videos selected"] = "Není vybráno žádné video";
+$a->strings["Access to this item is restricted."] = "Přístup k této položce je omezen.";
+$a->strings["View Album"] = "Zobrazit album";
+$a->strings["Recent Videos"] = "Aktuální Videa";
+$a->strings["Upload New Videos"] = "Nahrát nová videa";
+$a->strings["Manage Identities and/or Pages"] = "Správa identit a / nebo stránek";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Přepnutí mezi různými identitami nebo komunitními/skupinovými stránkami, které sdílí Vaše detaily účtu, nebo kterým jste přidělili oprávnění nastavovat přístupová práva.";
+$a->strings["Select an identity to manage: "] = "Vyberte identitu pro správu: ";
+$a->strings["Item not found"] = "Položka nenalezena";
+$a->strings["Edit post"] = "Upravit příspěvek";
+$a->strings["People Search"] = "Vyhledávání lidí";
+$a->strings["No matches"] = "Žádné shody";
+$a->strings["Account approved."] = "Účet schválen.";
+$a->strings["Registration revoked for %s"] = "Registrace zrušena pro %s";
+$a->strings["Please login."] = "Přihlaste se, prosím.";
+$a->strings["This introduction has already been accepted."] = "Toto pozvání již bylo přijato.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Adresa profilu není platná nebo neobsahuje profilové informace";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Varování: umístění profilu nemá žádné identifikovatelné jméno vlastníka";
+$a->strings["Warning: profile location has no profile photo."] = "Varování: umístění profilu nemá žádnou profilovou fotografii.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d požadovaný parametr nebyl nalezen na daném místě",
+       1 => "%d požadované parametry nebyly nalezeny na daném místě",
+       2 => "%d požadované parametry nebyly nalezeny na daném místě",
+);
+$a->strings["Introduction complete."] = "Představení dokončeno.";
+$a->strings["Unrecoverable protocol error."] = "Neopravitelná chyba protokolu";
+$a->strings["Profile unavailable."] = "Profil není k dispozici.";
+$a->strings["%s has received too many connection requests today."] = "%s dnes obdržel příliš mnoho požadavků na připojení.";
+$a->strings["Spam protection measures have been invoked."] = "Ochrana proti spamu byla aktivována";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Přátelům se doporučuje to zkusit znovu za 24 hodin.";
+$a->strings["Invalid locator"] = "Neplatný odkaz";
+$a->strings["Invalid email address."] = "Neplatná emailová adresa";
+$a->strings["This account has not been configured for email. Request failed."] = "Tento účet nebyl nastaven pro email. Požadavek nesplněn.";
+$a->strings["Unable to resolve your name at the provided location."] = "Nepodařilo se zjistit Vaše jméno na zadané adrese.";
+$a->strings["You have already introduced yourself here."] = "Již jste se zde zavedli.";
+$a->strings["Apparently you are already friends with %s."] = "Zřejmě jste již přátelé se %s.";
+$a->strings["Invalid profile URL."] = "Neplatné URL profilu.";
+$a->strings["Your introduction has been sent."] = "Vaše žádost o propojení byla odeslána.";
+$a->strings["Please login to confirm introduction."] = "Prosím přihlašte se k potvrzení žádosti o propojení.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Jste přihlášeni pod nesprávnou identitou  Prosím, přihlaste se do <strong>tohoto</strong> profilu.";
+$a->strings["Hide this contact"] = "Skrýt tento kontakt";
+$a->strings["Welcome home %s."] = "Vítejte doma %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Prosím potvrďte Vaši žádost o propojení %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Prosím zadejte Vaši adresu identity jedné z následujících podporovaných komunikačních sítí:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Pokud ještě nejste členem svobodné sociální sítě, <a href=\"http://dir.friendica.com/siteinfo\">následujte tento odkaz k nalezení veřejného Friendica serveru a přidejte se k nám ještě dnes</a>.";
+$a->strings["Friend/Connection Request"] = "Požadavek o přátelství / kontaktování";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Příklady: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Odpovězte, prosím, následující:";
+$a->strings["Does %s know you?"] = "Zná Vás uživatel %s ?";
+$a->strings["Add a personal note:"] = "Přidat osobní poznámku:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet / Federativní Sociální Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - prosím nepoužívejte tento formulář.  Místo toho zadejte %s do Vašeho Diaspora vyhledávacího pole.";
+$a->strings["Your Identity Address:"] = "Verze PHP pro příkazový řádek na Vašem systému nemá povolen \"register_argc_argv\".";
+$a->strings["Submit Request"] = "Odeslat žádost";
+$a->strings["Files"] = "Soubory";
+$a->strings["Authorize application connection"] = "Povolit připojení aplikacím";
+$a->strings["Return to your app and insert this Securty Code:"] = "Vraťte se do vaší aplikace a zadejte tento bezpečnostní kód:";
+$a->strings["Please login to continue."] = "Pro pokračování se prosím přihlaste.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Chcete umožnit této aplikaci přístup k vašim příspěvkům a kontaktům a/nebo k vytváření Vašich nových příspěvků?";
+$a->strings["Do you really want to delete this suggestion?"] = "Opravdu chcete smazat tento návrh?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nejsou dostupné žádné návrhy. Pokud je toto nový server, zkuste to znovu za 24 hodin.";
+$a->strings["Ignore/Hide"] = "Ignorovat / skrýt";
+$a->strings["Contacts who are not members of a group"] = "Kontakty, které nejsou členy skupiny";
+$a->strings["Contact not found."] = "Kontakt nenalezen.";
+$a->strings["Friend suggestion sent."] = "Návrhy přátelství odeslány ";
+$a->strings["Suggest Friends"] = "Navrhněte přátelé";
+$a->strings["Suggest a friend for %s"] = "Navrhněte přátelé pro uživatele %s";
+$a->strings["link"] = "odkaz";
+$a->strings["No contacts."] = "Žádné kontakty.";
+$a->strings["Theme settings updated."] = "Nastavení téma zobrazení bylo aktualizováno.";
+$a->strings["Site"] = "Web";
+$a->strings["Users"] = "Uživatelé";
+$a->strings["Themes"] = "Témata";
+$a->strings["DB updates"] = "Aktualizace databáze";
+$a->strings["Logs"] = "Logy";
+$a->strings["probe address"] = "vyzkoušet adresu";
+$a->strings["check webfinger"] = "vyzkoušet webfinger";
+$a->strings["Plugin Features"] = "Funkčnosti rozšíření";
+$a->strings["diagnostics"] = "diagnostika";
+$a->strings["User registrations waiting for confirmation"] = "Registrace uživatele čeká na potvrzení";
+$a->strings["Normal Account"] = "Normální účet";
+$a->strings["Soapbox Account"] = "Soapbox účet";
+$a->strings["Community/Celebrity Account"] = "Komunitní účet / Účet celebrity";
+$a->strings["Automatic Friend Account"] = "Účet s automatickým schvalováním přátel";
+$a->strings["Blog Account"] = "Účet Blogu";
+$a->strings["Private Forum"] = "Soukromé fórum";
+$a->strings["Message queues"] = "Fronty zpráv";
+$a->strings["Administration"] = "Administrace";
+$a->strings["Summary"] = "Shrnutí";
+$a->strings["Registered users"] = "Registrovaní uživatelé";
+$a->strings["Pending registrations"] = "Čekající registrace";
+$a->strings["Version"] = "Verze";
+$a->strings["Active plugins"] = "Aktivní pluginy";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Nelze zpracovat výchozí url adresu. Musí obsahovat alespoň <schéma>://<doméma>";
+$a->strings["Site settings updated."] = "Nastavení webu aktualizováno.";
+$a->strings["No community page"] = "Komunitní stránka neexistuje";
+$a->strings["Public postings from users of this site"] = "Počet veřejných příspěvků od uživatele na této stránce";
+$a->strings["Global community page"] = "Globální komunitní stránka";
+$a->strings["At post arrival"] = "Při obdržení příspěvku";
+$a->strings["Multi user instance"] = "Více uživatelská instance";
+$a->strings["Closed"] = "Uzavřeno";
+$a->strings["Requires approval"] = "Vyžaduje schválení";
+$a->strings["Open"] = "Otevřená";
+$a->strings["No SSL policy, links will track page SSL state"] = "Žádná SSL politika, odkazy budou následovat stránky SSL stav";
+$a->strings["Force all links to use SSL"] = "Vyžadovat u všech odkazů použití SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certifikát podepsaný sám sebou, použít SSL pouze pro lokální odkazy (nedoporučeno)";
+$a->strings["File upload"] = "Nahrání souborů";
+$a->strings["Policies"] = "Politiky";
+$a->strings["Advanced"] = "Pokročilé";
+$a->strings["Performance"] = "Výkonnost";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Změna umístění - Varování: pokročilá funkčnost. Tímto můžete znepřístupnit server.";
+$a->strings["Site name"] = "Název webu";
+$a->strings["Host name"] = "Jméno hostitele (host name)";
+$a->strings["Sender Email"] = "Email ddesílatele";
+$a->strings["Banner/Logo"] = "Banner/logo";
+$a->strings["Shortcut icon"] = "Ikona zkratky";
+$a->strings["Touch icon"] = "Dotyková ikona";
+$a->strings["Additional Info"] = "Dodatečné informace";
+$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pro veřejné servery: zde můžete doplnit dodatečné informace, které budou uvedeny v seznamu na dir.friendica.com/siteinfo.";
+$a->strings["System language"] = "Systémový jazyk";
+$a->strings["System theme"] = "Grafická šablona systému ";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Defaultní systémové téma - může být změněno v uživatelských profilech - <a href='#' id='cnftheme'> změnit  theme settings</a>";
+$a->strings["Mobile system theme"] = "Systémové téma zobrazení pro mobilní zařízení";
+$a->strings["Theme for mobile devices"] = "Téma zobrazení pro mobilní zařízení";
+$a->strings["SSL link policy"] = "Politika SSL odkazů";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Určuje, zda-li budou generované odkazy používat SSL";
+$a->strings["Force SSL"] = "Vynutit SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Vynutit SSL pro všechny ne-SSL žádosti - Upozornění: na některých systémech může dojít k nekonečnému zacyklení.";
+$a->strings["Old style 'Share'"] = "Sdílení \"postaru\"";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktivovat bbcode element \"share\" pro opakující se položky.";
+$a->strings["Hide help entry from navigation menu"] = "skrýt nápovědu z navigačního menu";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Skryje menu ze stránek Nápověda z navigačního menu. Nápovědu můžete stále zobrazit přímo zadáním /help.";
+$a->strings["Single user instance"] = "Jednouživatelská instance";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Nastavit tuto instanci víceuživatelskou nebo jednouživatelskou pro pojmenovaného uživatele";
+$a->strings["Maximum image size"] = "Maximální velikost obrázků";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximální velikost v bajtech nahraných obrázků. Defaultní je 0, což znamená neomezeno.";
+$a->strings["Maximum image length"] = "Maximální velikost obrázků";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximální délka v pixelech delší stránky nahrávaných obrázků. Defaultně je -1, což označuje bez limitu";
+$a->strings["JPEG image quality"] = "JPEG kvalita obrázku";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Nahrávaný JPEG bude uložen se zadanou kvalitou v rozmezí [0-100]. Defaultní je 100, což znamená plnou kvalitu.";
+$a->strings["Register policy"] = "Politika registrace";
+$a->strings["Maximum Daily Registrations"] = "Maximální počet denních registrací";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Pokud je registrace výše povolena, zde se nastaví maximální počet registrací nových uživatelů za den.\nPokud je registrace zakázána, toto nastavení nemá žádný efekt.";
+$a->strings["Register text"] = "Registrace textu";
+$a->strings["Will be displayed prominently on the registration page."] = "Bude zřetelně zobrazeno na registrační stránce.";
+$a->strings["Accounts abandoned after x days"] = "Účet je opuštěn po x dnech";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Neztrácejte systémové zdroje kontaktováním externích webů s opuštěnými účty. Zadejte 0 pro žádný časový limit.";
+$a->strings["Allowed friend domains"] = "Povolené domény přátel";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Čárkou oddělený seznam domén, kterým je povoleno navazovat přátelství s tímto webem. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu.";
+$a->strings["Allowed email domains"] = "Povolené e-mailové domény";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Čárkou oddělený seznam domén emalových adres, kterým je povoleno provádět registraci na tomto webu. Zástupné znaky (wildcards) jsou povoleny. Prázné znamená libovolnou doménu.";
+$a->strings["Block public"] = "Blokovat veřejnost";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Označemím přepínače zablokujete veřejný přístup ke všem jinak veřejně přístupným soukromým stránkám uživatelům, kteří nebudou přihlášeni.";
+$a->strings["Force publish"] = "Publikovat";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Označením přepínače budou včechny profily na tomto webu uvedeny v adresáři webu.";
+$a->strings["Global directory update URL"] = "aktualizace URL adresy Globálního adresáře ";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL adresa k aktualizaci globálního adresáře. Pokud není zadáno, funkce globálního adresáře není dostupná žádné aplikaci.";
+$a->strings["Allow threaded items"] = "Povolit vícevláknové zpracování obsahu";
+$a->strings["Allow infinite level threading for items on this site."] = "Povolit zpracování obsahu tohoto webu neomezeným počtem paralelních vláken.";
+$a->strings["Private posts by default for new users"] = "Nastavit pro nové uživatele příspěvky jako soukromé";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Nastavit defaultní práva pro příspěvky od všech nových členů na výchozí soukromou skupinu raději než jako veřejné.";
+$a->strings["Don't include post content in email notifications"] = "Nezahrnovat obsah příspěvků v emailových upozorněních";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = " V mailových upozorněních, které jsou odesílány z tohoto webu jako soukromé zprávy, nejsou z důvodů bezpečnosti obsaženy příspěvky/komentáře/soukromé zprávy apod. ";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Zakázat veřejný přístup k rozšířením uvedeným v menu aplikace.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Označení této volby omezí rozšíření uvedená v menu aplikace pouze pro členy.";
+$a->strings["Don't embed private images in posts"] = "Nepovolit přidávání soukromých správ v příspěvcích";
+$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Nereplikovat lokální soukromé fotografie v příspěvcích s přidáním kopie obrázku. To znamená, že kontakty, které obdrží příspěvek obsahující soukromé fotografie se budou muset přihlásit a načíst každý obrázek, což může zabrat nějaký čas.";
+$a->strings["Allow Users to set remote_self"] = "Umožnit uživatelům nastavit ";
+$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "S tímto označením má každý uživatel možnost označit jakékoliv ze svých kontakt jako \"remote_self\" v nastavení v dialogu opravit kontakt. Tímto označením se budou zrcadlit všechny správy tohoto kontaktu v uživatelově proudu.";
+$a->strings["Block multiple registrations"] = "Blokovat více registrací";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Znemožnit uživatelům registraci dodatečných účtů k použití jako stránky.";
+$a->strings["OpenID support"] = "podpora OpenID";
+$a->strings["OpenID support for registration and logins."] = "Podpora OpenID pro registraci a přihlašování.";
+$a->strings["Fullname check"] = "kontrola úplného jména";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Přimět uživatele k registraci s mezerou mezi jménu a příjmením v poli Celé jméno, jako antispamové opatření.";
+$a->strings["UTF-8 Regular expressions"] = "UTF-8 Regulární výrazy";
+$a->strings["Use PHP UTF8 regular expressions"] = "Použít PHP UTF8 regulární výrazy.";
+$a->strings["Community Page Style"] = "Styl komunitní stránky";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Typ komunitní stránky k zobrazení. 'Glogální komunita' zobrazuje každý veřejný příspěvek z otevřené distribuované sítě, která dorazí na tento server.";
+$a->strings["Posts per user on community page"] = "Počet příspěvků na komunitní stránce";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "Maximální počet příspěvků na uživatele na komunitní sptránce. (neplatí pro 'Globální komunitu')";
+$a->strings["Enable OStatus support"] = "Zapnout podporu OStatus";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Poskytnout zabudouvanou kompatibilitu s OStatus (StatusNet, GNU Social apod.). Veškerá komunikace s OStatus je veřejná, proto bude občas zobrazeno upozornění.";
+$a->strings["OStatus conversation completion interval"] = "Interval dokončení konverzace OStatus";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Jak často by mělo probíhat ověřování pro nové přísvěvky v konverzacích OStatus? Toto může být velmi výkonově náročný úkol.";
+$a->strings["Enable Diaspora support"] = "Povolit podporu Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Poskytnout zabudovanou kompatibilitu sitě Diaspora.";
+$a->strings["Only allow Friendica contacts"] = "Povolit pouze Friendica kontakty";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Všechny kontakty musí používat Friendica protokol. Všchny jiné zabudované komunikační protokoly budou zablokované.";
+$a->strings["Verify SSL"] = "Ověřit SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Pokud si přejete, můžete vynutit striktní ověřování certifikátů. To znamená že se nebudete moci připojit k žádnému serveru s vlastním SSL certifikátem.";
+$a->strings["Proxy user"] = "Proxy uživatel";
+$a->strings["Proxy URL"] = "Proxy URL adresa";
+$a->strings["Network timeout"] = "čas síťového spojení vypršelo (timeout)";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Hodnota ve vteřinách. Nastavte 0 pro neomezeno (není doporučeno).";
+$a->strings["Delivery interval"] = "Interval doručování";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Prodleva mezi doručovacími procesy běžícími na pozadí snižuje zátěž systému. Doporučené nastavení: 4-5 pro sdílené instalace, 2-3 pro virtuální soukromé servery, 0-1 pro velké dedikované servery.";
+$a->strings["Poll interval"] = "Dotazovací interval";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Tímto nastavením ovlivníte prodlení mezi aktualizačními procesy běžícími na pozadí, čímž můžete snížit systémovou zátěž. Pokud 0, použijte doručovací interval.";
+$a->strings["Maximum Load Average"] = "Maximální průměrné zatížení";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximální zatížení systému před pozastavením procesů zajišťujících doručování aktualizací - defaultně 50";
+$a->strings["Use MySQL full text engine"] = "Použít fulltextový vyhledávací stroj MySQL";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktivuje fulltextový vyhledávací stroj. Zrychluje vyhledávání ale pouze pro vyhledávání čtyř a více znaků";
+$a->strings["Suppress Language"] = "Potlačit Jazyk";
+$a->strings["Suppress language information in meta information about a posting."] = "Potlačit jazykové informace v meta informacích o příspěvcích";
+$a->strings["Suppress Tags"] = "Potlačit štítky";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Potlačit zobrazení listu hastagů na konci zprávy.";
+$a->strings["Path to item cache"] = "Cesta k položkám vyrovnávací paměti";
+$a->strings["Cache duration in seconds"] = "Doba platnosti vyrovnávací paměti v sekundách";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Jak dlouho by měla vyrovnávací paměť držet data? Výchozí hodnota je 86400 sekund (Jeden den). Pro vypnutí funkce vyrovnávací paměti nastavte hodnotu na -1.";
+$a->strings["Maximum numbers of comments per post"] = "Maximální počet komentářů k příspěvku";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Kolik komentářů by mělo být zobrazeno k každému příspěvku? Defaultní hodnota je 100.";
+$a->strings["Path for lock file"] = "Cesta k souboru zámku";
+$a->strings["Temp path"] = "Cesta k dočasným souborům";
+$a->strings["Base path to installation"] = "Základní cesta k instalaci";
+$a->strings["Disable picture proxy"] = "Vypnutí obrázkové proxy";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti.";
+$a->strings["Enable old style pager"] = "Aktivovat \"old style\" stránkování ";
+$a->strings["The old style pager has page numbers but slows down massively the page speed."] = " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky.";
+$a->strings["Only search in tags"] = "Hledat pouze ve štítkách";
+$a->strings["On large systems the text search can slow down the system extremely."] = "Textové vyhledávání může u rozsáhlých systémů znamenat velmi citelné zpomalení systému.";
+$a->strings["New base url"] = "Nová výchozí url adresa";
+$a->strings["Update has been marked successful"] = "Aktualizace byla označena jako úspěšná.";
+$a->strings["Database structure update %s was successfully applied."] = "Aktualizace struktury databáze %s byla úspěšně aplikována.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Provádění aktualizace databáze %s skončilo chybou: %s";
+$a->strings["Executing %s failed with error: %s"] = "Vykonávání %s selhalo s chybou: %s";
+$a->strings["Update %s was successfully applied."] = "Aktualizace %s byla úspěšně aplikována.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Aktualizace %s nevrátila žádný status. Není zřejmé, jestli byla úspěšná.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána.";
+$a->strings["No failed updates."] = "Žádné neúspěšné aktualizace.";
+$a->strings["Check database structure"] = "Ověření struktury databáze";
+$a->strings["Failed Updates"] = "Neúspěšné aktualizace";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status.";
+$a->strings["Mark success (if update was manually applied)"] = "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)";
+$a->strings["Attempt to execute this update step automatically"] = "Pokusit se provést tuto aktualizaci automaticky.";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tDrahý %1\$s,\n\t\t\t\tadministrátor webu %2\$s pro Vás vytvořil uživatelský účet.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\tAdresa webu: \t%1\$s\n\t\t\tpřihlašovací jméno:\t\t%2\$s\n\t\t\theslo:\t\t%3\$s\n\n\t\t\tHeslo si můžete změnit na stránce \"Nastavení\" vašeho účtu poté, co se přihlásíte.\n\n\t\t\tProsím věnujte pár chvil revizi dalšího nastavení vašeho účtu na dané stránce.\n\n\t\t\tTaké su můžete přidat nějaké základní informace do svého výchozího profilu (na stránce \"Profily\"), takže ostatní lidé vás snáze najdou. \n\n\t\t\tDoporučujeme Vám uvést celé jméno a i foto. Přidáním nějakých \"klíčových slov\" (velmi užitečné pro hledání nových přátel) a možná také zemi, ve které žijete, pokud nechcete být více konkrétní.\n\n\t\t\tPlně resepktujeme vaše právo na soukromí a nic z výše uvedeného není povinné. Pokud jste zde nový a neznáte zde nikoho, uvedením daných informací můžete získat nové přátele.\n\n\t\t\tDíky a vítejte na %4\$s.";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s uživatel blokován/odblokován",
+       1 => "%s uživatelů blokováno/odblokováno",
+       2 => "%s uživatelů blokováno/odblokováno",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s uživatel smazán",
+       1 => "%s uživatelů smazáno",
+       2 => "%s uživatelů smazáno",
+);
+$a->strings["User '%s' deleted"] = "Uživatel '%s' smazán";
+$a->strings["User '%s' unblocked"] = "Uživatel '%s' odblokován";
+$a->strings["User '%s' blocked"] = "Uživatel '%s' blokován";
+$a->strings["Add User"] = "Přidat Uživatele";
+$a->strings["select all"] = "Vybrat vše";
+$a->strings["User registrations waiting for confirm"] = "Registrace uživatele čeká na potvrzení";
+$a->strings["User waiting for permanent deletion"] = "Uživatel čeká na trvalé smazání";
+$a->strings["Request date"] = "Datum žádosti";
+$a->strings["No registrations."] = "Žádné registrace.";
+$a->strings["Deny"] = "Odmítnout";
+$a->strings["Site admin"] = "Site administrátor";
+$a->strings["Account expired"] = "Účtu vypršela platnost";
+$a->strings["New User"] = "Nový uživatel";
+$a->strings["Register date"] = "Datum registrace";
+$a->strings["Last login"] = "Datum posledního přihlášení";
+$a->strings["Last item"] = "Poslední položka";
+$a->strings["Deleted since"] = "Smazán od";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\n Opravdu pokračovat?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Uživatel {0} bude smazán!\\n\\n Vše, co tento uživatel na těchto stránkách vytvořil, bude trvale odstraněno!\\n\\n Opravdu pokračovat?";
+$a->strings["Name of the new user."] = "Jméno nového uživatele";
+$a->strings["Nickname"] = "Přezdívka";
+$a->strings["Nickname of the new user."] = "Přezdívka nového uživatele.";
+$a->strings["Email address of the new user."] = "Emailová adresa nového uživatele.";
+$a->strings["Plugin %s disabled."] = "Plugin %s zakázán.";
+$a->strings["Plugin %s enabled."] = "Plugin %s povolen.";
+$a->strings["Disable"] = "Zakázat";
+$a->strings["Enable"] = "Povolit";
+$a->strings["Toggle"] = "Přepnout";
+$a->strings["Author: "] = "Autor: ";
+$a->strings["Maintainer: "] = "Správce: ";
+$a->strings["No themes found."] = "Nenalezeny žádná témata.";
+$a->strings["Screenshot"] = "Snímek obrazovky";
+$a->strings["[Experimental]"] = "[Experimentální]";
+$a->strings["[Unsupported]"] = "[Nepodporováno]";
+$a->strings["Log settings updated."] = "Nastavení protokolu aktualizováno.";
+$a->strings["Clear"] = "Vyčistit";
+$a->strings["Enable Debugging"] = "Povolit ladění";
+$a->strings["Log file"] = "Soubor s logem";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Musí být editovatelné web serverem. Relativní cesta k vašemu kořenovému adresáři Friendica";
+$a->strings["Log level"] = "Úroveň auditu";
+$a->strings["Close"] = "Zavřít";
+$a->strings["FTP Host"] = "Hostitel FTP";
+$a->strings["FTP Path"] = "Cesta FTP";
+$a->strings["FTP User"] = "FTP uživatel";
+$a->strings["FTP Password"] = "FTP heslo";
+$a->strings["Image exceeds size limit of %d"] = "Obrázek překročil limit velikosti %d";
+$a->strings["Unable to process image."] = "Obrázek není možné zprocesovat";
+$a->strings["Image upload failed."] = "Nahrání obrázku selhalo.";
+$a->strings["Welcome to %s"] = "Vítá Vás %s";
+$a->strings["OpenID protocol error. No ID returned."] = "Chyba OpenID protokolu. Navrátilo se žádné ID.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nenalezen účet a OpenID registrace na tomto serveru není dovolena.";
+$a->strings["Search Results For:"] = "Výsledky hledání pro:";
+$a->strings["Remove term"] = "Odstranit termín";
+$a->strings["Commented Order"] = "Dle komentářů";
+$a->strings["Sort by Comment Date"] = "Řadit podle data komentáře";
+$a->strings["Posted Order"] = "Dle data";
+$a->strings["Sort by Post Date"] = "Řadit podle data příspěvku";
+$a->strings["Posts that mention or involve you"] = "Příspěvky, které Vás zmiňují nebo zahrnují";
+$a->strings["New"] = "Nové";
+$a->strings["Activity Stream - by date"] = "Proud aktivit - dle data";
+$a->strings["Shared Links"] = "Sdílené odkazy";
+$a->strings["Interesting Links"] = "Zajímavé odkazy";
+$a->strings["Starred"] = "S hvězdičkou";
+$a->strings["Favourite Posts"] = "Oblíbené přízpěvky";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Upozornění: Tato skupina obsahuje %s člena z nezabezpečené sítě.",
+       1 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
+       2 => "Upozornění: Tato skupina obsahuje %s členy z nezabezpečené sítě.",
 );
-$a->strings["Done. You can now login with your username and password"] = "Hotovo. Nyní  se můžete přihlásit se svými uživatelským účtem a heslem";
-$a->strings["toggle mobile"] = "přepnout mobil";
-$a->strings["Theme settings"] = "Nastavení téma";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Nastavit velikost fotek v přízpěvcích a komentářích (šířka a výška)";
-$a->strings["Set font-size for posts and comments"] = "Nastav velikost písma pro přízpěvky a komentáře.";
-$a->strings["Set theme width"] = "Nastavení šířku grafické šablony";
-$a->strings["Color scheme"] = "Barevné schéma";
-$a->strings["Set line-height for posts and comments"] = "Nastav výšku řádku  pro přízpěvky a komentáře.";
-$a->strings["Set colour scheme"] = "Nastavit barevné schéma";
-$a->strings["Alignment"] = "Zarovnání";
-$a->strings["Left"] = "Vlevo";
-$a->strings["Center"] = "Uprostřed";
-$a->strings["Posts font size"] = "Velikost písma u příspěvků";
-$a->strings["Textareas font size"] = "Velikost písma textů";
-$a->strings["Set resolution for middle column"] = "Nastav rozlišení pro prostřední sloupec";
-$a->strings["Set color scheme"] = "Nastavení barevného schematu";
-$a->strings["Set zoomfactor for Earth Layer"] = "Nastavit přiblížení pro Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Nastavit zeměpistnou délku (X) pro Earth Layers";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Nastavit zeměpistnou šířku (X) pro Earth Layers";
-$a->strings["Community Pages"] = "Komunitní stránky";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Komunitní profily";
-$a->strings["Help or @NewHere ?"] = "Pomoc nebo @ProNováčky ?";
-$a->strings["Connect Services"] = "Propojené služby";
-$a->strings["Find Friends"] = "Nalézt Přátele";
-$a->strings["Last users"] = "Poslední uživatelé";
-$a->strings["Last photos"] = "Poslední fotografie";
-$a->strings["Last likes"] = "Poslední líbí/nelíbí";
-$a->strings["Your contacts"] = "Vaše kontakty";
-$a->strings["Your personal photos"] = "Vaše osobní fotky";
-$a->strings["Local Directory"] = "Lokální Adresář";
-$a->strings["Set zoomfactor for Earth Layers"] = "Nastavit faktor přiblížení pro Earth Layers";
-$a->strings["Show/hide boxes at right-hand column:"] = "Zobrazit/skrýt boxy na pravém sloupci:";
-$a->strings["Set style"] = "Nastavit styl";
-$a->strings["greenzero"] = "zelená nula";
-$a->strings["purplezero"] = "fialová nula";
-$a->strings["easterbunny"] = "velikonoční zajíček";
-$a->strings["darkzero"] = "tmavá nula";
-$a->strings["comix"] = "komiksová";
-$a->strings["slackr"] = "flákač";
-$a->strings["Variations"] = "Variace";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Soukromé zprávy této skupině jsou vystaveny riziku prozrazení.";
+$a->strings["No such group"] = "Žádná taková skupina";
+$a->strings["Group is empty"] = "Skupina je prázdná";
+$a->strings["Group: "] = "Skupina: ";
+$a->strings["Contact: "] = "Kontakt: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Soukromé zprávy této osobě jsou vystaveny riziku prozrazení.";
+$a->strings["Invalid contact."] = "Neplatný kontakt.";
+$a->strings["- select -"] = "- vyber -";
+$a->strings["This is Friendica, version"] = "Toto je Friendica, verze";
+$a->strings["running at web location"] = "běžící na webu";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Pro získání dalších informací o projektu Friendica navštivte prosím <a href=\"http://friendica.com\">Friendica.com</a>.";
+$a->strings["Bug reports and issues: please visit"] = "Pro hlášení chyb a námětů na změny navštivte:";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Návrhy, chválu, dary, apod. - prosím piště na \"info\" na Friendica - tečka com";
+$a->strings["Installed plugins/addons/apps:"] = "Instalované pluginy/doplňky/aplikace:";
+$a->strings["No installed plugins/addons/apps"] = "Nejsou žádné nainstalované doplňky/aplikace";
+$a->strings["Applications"] = "Aplikace";
+$a->strings["No installed applications."] = "Žádné nainstalované aplikace.";
+$a->strings["Upload New Photos"] = "Nahrát nové fotografie";
+$a->strings["Contact information unavailable"] = "Kontakt byl zablokován";
+$a->strings["Album not found."] = "Album nenalezeno.";
+$a->strings["Delete Album"] = "Smazat album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Opravdu chcete smazat toto foto album a všechny jeho fotografie?";
+$a->strings["Delete Photo"] = "Smazat fotografii";
+$a->strings["Do you really want to delete this photo?"] = "Opravdu chcete smazat tuto fotografii?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s byl označen v %2\$s uživatelem %3\$s";
+$a->strings["a photo"] = "fotografie";
+$a->strings["Image exceeds size limit of "] = "Velikost obrázku překračuje limit velikosti";
+$a->strings["Image file is empty."] = "Soubor obrázku je prázdný.";
+$a->strings["No photos selected"] = "Není vybrána žádná fotografie";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Použil jste %1$.2f Mbajtů z %2$.2f Mbajtů úložiště fotografií.";
+$a->strings["Upload Photos"] = "Nahrání fotografií ";
+$a->strings["New album name: "] = "Název nového alba: ";
+$a->strings["or existing album name: "] = "nebo stávající název alba: ";
+$a->strings["Do not show a status post for this upload"] = "Nezobrazovat stav pro tento upload";
+$a->strings["Permissions"] = "Oprávnění:";
+$a->strings["Private Photo"] = "Soukromé Fotografie";
+$a->strings["Public Photo"] = "Veřejné Fotografie";
+$a->strings["Edit Album"] = "Edituj album";
+$a->strings["Show Newest First"] = "Zobrazit nejprve nejnovější:";
+$a->strings["Show Oldest First"] = "Zobrazit nejprve nejstarší:";
+$a->strings["View Photo"] = "Zobraz fotografii";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen.";
+$a->strings["Photo not available"] = "Fotografie není k dispozici";
+$a->strings["View photo"] = "Zobrazit obrázek";
+$a->strings["Edit photo"] = "Editovat fotografii";
+$a->strings["Use as profile photo"] = "Použít jako profilovou fotografii";
+$a->strings["View Full Size"] = "Zobrazit v plné velikosti";
+$a->strings["Tags: "] = "Štítky: ";
+$a->strings["[Remove any tag]"] = "[Odstranit všechny štítky]";
+$a->strings["Rotate CW (right)"] = "Rotovat po směru hodinových ručiček (doprava)";
+$a->strings["Rotate CCW (left)"] = "Rotovat proti směru hodinových ručiček (doleva)";
+$a->strings["New album name"] = "Nové jméno alba";
+$a->strings["Caption"] = "Titulek";
+$a->strings["Add a Tag"] = "Přidat štítek";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Příklad: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Soukromé fotografie";
+$a->strings["Public photo"] = "Veřejné fotografie";
+$a->strings["Recent Photos"] = "Aktuální fotografie";
+$a->strings["The post was created"] = "Příspěvek byl vytvořen";
+$a->strings["Contact added"] = "Kontakt přidán";
+$a->strings["Move account"] = "Přesunout účet";
+$a->strings["You can import an account from another Friendica server."] = "Můžete importovat účet z jiného Friendica serveru.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Musíte exportovat svůj účet na sterém serveru a nahrát ho zde. My následně vytvoříme Váš původní účet zde včetně všech kontaktů. Zároveň se pokusíme informovat všechny Vaše přátele, že jste se sem přestěhovali.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Tato funkčnost je experimentální. Nemůžeme importovat kontakty z OSStatus sítí (statusnet/identi.ca) nebo z Diaspory";
+$a->strings["Account file"] = "Soubor s účtem";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "K exportu Vašeho účtu, jděte do \"Nastavení->Export vašich osobních dat\" a zvolte \" Export účtu\"";
+$a->strings["Total invitation limit exceeded."] = "Celkový limit pozvánek byl překročen";
+$a->strings["%s : Not a valid email address."] = "%s : není platná e-mailová adresa.";
+$a->strings["Please join us on Friendica"] = "Prosím přidejte se k nám na Friendice";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit pozvánek byl překročen. Prosím kontaktujte vašeho administrátora webu.";
+$a->strings["%s : Message delivery failed."] = "%s : Doručení zprávy se nezdařilo.";
+$a->strings["%d message sent."] = array(
+       0 => "%d zpráva odeslána.",
+       1 => "%d zprávy odeslány.",
+       2 => "%d zprávy odeslány.",
+);
+$a->strings["You have no more invitations available"] = "Nemáte k dispozici žádné další pozvánky";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Navštivte %s pro seznam veřejných serverů, na kterých se můžete přidat. Členové Friendica se mohou navzájem propojovat, stejně tak jako se mohou přiopojit se členy mnoha dalších sociálních sítí.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "K akceptaci této pozvánky prosím navštivte a registrujte se na %s nebo na kterékoliv jiném veřejném Friendica serveru.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica servery jsou všechny propojené a vytváří tak rozsáhlou sociální síť s důrazem na soukromý a je pod kontrolou svých členů. Členové se mohou propojovat s mnoha dalšími tradičními sociálními sítěmi. Navštivte %s pro seznam alternativních Friendica serverů kde se můžete přidat.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy.";
+$a->strings["Send invitations"] = "Poslat pozvánky";
+$a->strings["Enter email addresses, one per line:"] = "Zadejte e-mailové adresy, jednu na řádek:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Jste srdečně pozván se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální síť.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Budete muset zadat kód této pozvánky: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Jakmile se zaregistrujete, prosím spojte se se mnou přes mou profilovu stránku na:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pro více informací o Friendica projektu a o tom, proč je tak důležitý, prosím navštivte http://friendica.com";
+$a->strings["Access denied."] = "Přístup odmítnut";
+$a->strings["No valid account found."] = "Nenalezen žádný platný účet.";
+$a->strings["Password reset request issued. Check your email."] = "Žádost o obnovení hesla vyřízena. Zkontrolujte Vaši e-mailovou schránku.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tDrahý %1\$s,\n\t\t\tNa \"%2\$s\" jsme obdrželi  požadavek na obnovu vašeho hesla \n\t\tpassword. Pro potvrzení žádosti prosím klikněte na zaslaný verifikační odkaz níže nebo si ho zkopírujte do adresní řádky prohlížeče.\n\n\t\tPokud jste tuto žádost nezasílaliI prosím na uvedený odkaz neklikejte a tento email smažte.\n\n\t\tVaše heslo nebude změněno dokud nebudeme moci oveřit, že jste autorem této žádosti.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tKlikněte na následující odkaz pro potvrzení Vaší identity:\n\n\t\t%1\$s\n\n\t\tNásledně obdržíte zprávu obsahující nové heslo.\n\t\tHeslo si můžete si změnit na stránce nastavení účtu poté, co se přihlásíte.\n\n\t\tVaše přihlašovací údaje jsou následující:\n\n\t\tUmístění webu:\t%2\$s\n\t\tPřihlašovací jméno:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Na %s bylo zažádáno o resetování hesla";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Žádost nemohla být ověřena. (Možná jste ji odeslali již dříve.) Obnovení hesla se nezdařilo.";
+$a->strings["Your password has been reset as requested."] = "Vaše heslo bylo na Vaše přání resetováno.";
+$a->strings["Your new password is"] = "Někdo Vám napsal na Vaši profilovou stránku";
+$a->strings["Save or copy your new password - and then"] = "Uložte si nebo zkopírujte nové heslo - a pak";
+$a->strings["click here to login"] = "klikněte zde pro přihlášení";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Nezdá se, že by to bylo Vaše celé jméno (křestní jméno a příjmení).";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tDrahý %1\$s,\n⇥⇥⇥⇥⇥Vaše heslo bylo na požádání změněno. Prosím uchovejte si tuto informaci (nebo si změntě heslo ihned na něco, co si budete pamatovat).\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVaše přihlašovací údaje jsou následující:\n\n\t\t\t\tUmístění webu:\t%1\$s\n\t\t\t\tPřihlašovací jméno:\t%2\$s\n\t\t\t\tHeslo:\t%3\$s\n\n\t\t\t\tHeslo si můžete si změnit na stránce  nastavení účtu poté, co se přihlásíte.\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "Vaše heslo bylo změněno na %s";
+$a->strings["Forgot your Password?"] = "Zapomněli jste heslo?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Zadejte svůj e-mailovou adresu a odešlete žádost o zaslání Vašeho nového hesla. Poté zkontrolujte svůj e-mail pro další instrukce.";
+$a->strings["Nickname or Email: "] = "Přezdívka nebo e-mail: ";
+$a->strings["Reset"] = "Reset";
+$a->strings["Source (bbcode) text:"] = "Zdrojový text (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Zdrojový (Diaspora) text k převedení do BB kódování:";
+$a->strings["Source input: "] = "Zdrojový vstup: ";
+$a->strings["bb2html (raw HTML): "] = "bb2html (raw HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Vstupní data (ve formátu Diaspora): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Tag removed"] = "Štítek odstraněn";
+$a->strings["Remove Item Tag"] = "Odebrat štítek položky";
+$a->strings["Select a tag to remove: "] = "Vyberte štítek k odebrání: ";
+$a->strings["Remove My Account"] = "Odstranit můj účet";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit.";
+$a->strings["Please enter your password for verification:"] = "Prosím, zadejte své heslo pro ověření:";
+$a->strings["Invalid profile identifier."] = "Neplatný identifikátor profilu.";
+$a->strings["Profile Visibility Editor"] = "Editor viditelnosti profilu ";
+$a->strings["Visible To"] = "Viditelný pro";
+$a->strings["All Contacts (with secure profile access)"] = "Všechny kontakty (se zabezpečeným přístupovým profilem )";
+$a->strings["Profile Match"] = "Shoda profilu";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Žádná klíčová slova k porovnání. Prosím, přidejte klíčová slova do Vašeho výchozího profilu.";
+$a->strings["is interested in:"] = "zajímá se o:";
+$a->strings["Event title and start time are required."] = "Název události a datum začátku jsou vyžadovány.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editovat událost";
+$a->strings["Create New Event"] = "Vytvořit novou událost";
+$a->strings["Previous"] = "Předchozí";
+$a->strings["Next"] = "Dále";
+$a->strings["hour:minute"] = "hodina:minuta";
+$a->strings["Event details"] = "Detaily události";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Formát je %s %s. Datum začátku a Název jsou vyžadovány.";
+$a->strings["Event Starts:"] = "Událost začíná:";
+$a->strings["Required"] = "Vyžadováno";
+$a->strings["Finish date/time is not known or not relevant"] = "Datum/čas konce není zadán nebo není relevantní";
+$a->strings["Event Finishes:"] = "Akce končí:";
+$a->strings["Adjust for viewer timezone"] = "Nastavit časové pásmo pro uživatele s právem pro čtení";
+$a->strings["Description:"] = "Popis:";
+$a->strings["Title:"] = "Název:";
+$a->strings["Share this event"] = "Sdílet tuto událost";
+$a->strings["{0} wants to be your friend"] = "{0} chce být Vaším přítelem";
+$a->strings["{0} sent you a message"] = "{0} vám poslal zprávu";
+$a->strings["{0} requested registration"] = "{0} požaduje registraci";
+$a->strings["{0} commented %s's post"] = "{0} komentoval příspěvek uživatele %s";
+$a->strings["{0} liked %s's post"] = "{0} má rád příspěvek uživatele %s";
+$a->strings["{0} disliked %s's post"] = "{0} nemá rád příspěvek uživatele %s";
+$a->strings["{0} is now friends with %s"] = "{0} se skamarádil s %s";
+$a->strings["{0} posted"] = "{0} zasláno";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} označen %s' příspěvek s #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vás zmínil v příspěvku";
+$a->strings["Mood"] = "Nálada";
+$a->strings["Set your current mood and tell your friends"] = "Nastavte svou aktuální náladu a řekněte to Vašim přátelům";
+$a->strings["No results."] = "Žádné výsledky.";
+$a->strings["Unable to locate contact information."] = "Nepodařilo se najít kontaktní informace.";
+$a->strings["Do you really want to delete this message?"] = "Opravdu chcete smazat tuto zprávu?";
+$a->strings["Message deleted."] = "Zpráva odstraněna.";
+$a->strings["Conversation removed."] = "Konverzace odstraněna.";
+$a->strings["No messages."] = "Žádné zprávy.";
+$a->strings["Unknown sender - %s"] = "Neznámý odesilatel - %s";
+$a->strings["You and %s"] = "Vy a %s";
+$a->strings["%s and You"] = "%s a Vy";
+$a->strings["Delete conversation"] = "Odstranit konverzaci";
+$a->strings["D, d M Y - g:i A"] = "D M R - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d zpráva",
+       1 => "%d zprávy",
+       2 => "%d zpráv",
+);
+$a->strings["Message not available."] = "Zpráva není k dispozici.";
+$a->strings["Delete message"] = "Smazat zprávu";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Není k dispozici zabezpečená komunikace. <strong>Možná</strong> budete schopni reagovat z odesilatelovy profilové stránky.";
+$a->strings["Send Reply"] = "Poslat odpověď";
+$a->strings["Not available."] = "Není k dispozici.";
+$a->strings["Profile not found."] = "Profil nenalezen";
+$a->strings["Profile deleted."] = "Profil smazán.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Nový profil vytvořen.";
+$a->strings["Profile unavailable to clone."] = "Profil není možné naklonovat.";
+$a->strings["Profile Name is required."] = "Jméno profilu je povinné.";
+$a->strings["Marital Status"] = "Rodinný Stav";
+$a->strings["Romantic Partner"] = "Romatický partner";
+$a->strings["Likes"] = "Libí se mi";
+$a->strings["Dislikes"] = "Nelibí se mi";
+$a->strings["Work/Employment"] = "Práce/Zaměstnání";
+$a->strings["Religion"] = "Náboženství";
+$a->strings["Political Views"] = "Politické přesvědčení";
+$a->strings["Gender"] = "Pohlaví";
+$a->strings["Sexual Preference"] = "Sexuální orientace";
+$a->strings["Homepage"] = "Domácí stránka";
+$a->strings["Interests"] = "Zájmy";
+$a->strings["Address"] = "Adresa";
+$a->strings["Location"] = "Lokace";
+$a->strings["Profile updated."] = "Profil aktualizován.";
+$a->strings[" and "] = " a ";
+$a->strings["public profile"] = "veřejný profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s změnil %2\$s na &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Navštivte %2\$s uživatele %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s aktualizoval %2\$s, změnou %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Skrýt kontakty a přátele:";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Skrýt u tohoto profilu Vaše kontakty / seznam přátel před před dalšími uživateli zobrazující si tento profil?";
+$a->strings["Edit Profile Details"] = "Upravit podrobnosti profilu ";
+$a->strings["Change Profile Photo"] = "Změna Profilové fotky";
+$a->strings["View this profile"] = "Zobrazit tento profil";
+$a->strings["Create a new profile using these settings"] = "Vytvořit nový profil pomocí tohoto nastavení";
+$a->strings["Clone this profile"] = "Klonovat tento profil";
+$a->strings["Delete this profile"] = "Smazat tento profil";
+$a->strings["Basic information"] = "Základní informace";
+$a->strings["Profile picture"] = "Profilový obrázek";
+$a->strings["Preferences"] = "Nastavení";
+$a->strings["Status information"] = "Statusové informace";
+$a->strings["Additional information"] = "Dodatečné informace";
+$a->strings["Upload Profile Photo"] = "Nahrát profilovou fotografii";
+$a->strings["Profile Name:"] = "Jméno profilu:";
+$a->strings["Your Full Name:"] = "Vaše celé jméno:";
+$a->strings["Title/Description:"] = "Název / Popis:";
+$a->strings["Your Gender:"] = "Vaše pohlaví:";
+$a->strings["Birthday (%s):"] = "Narozeniny uživatele (%s):";
+$a->strings["Street Address:"] = "Ulice:";
+$a->strings["Locality/City:"] = "Město:";
+$a->strings["Postal/Zip Code:"] = "PSČ:";
+$a->strings["Country:"] = "Země:";
+$a->strings["Region/State:"] = "Region / stát:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Rodinný stav:";
+$a->strings["Who: (if applicable)"] = "Kdo: (pokud je možné)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Příklady: jan123, Jan Novák, jan@seznam.cz";
+$a->strings["Since [date]:"] = "Od [data]:";
+$a->strings["Homepage URL:"] = "Odkaz na domovskou stránku:";
+$a->strings["Religious Views:"] = "Náboženské přesvědčení:";
+$a->strings["Public Keywords:"] = "Veřejná klíčová slova:";
+$a->strings["Private Keywords:"] = "Soukromá klíčová slova:";
+$a->strings["Example: fishing photography software"] = "Příklad: fishing photography software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Používá se pro doporučování potenciálních přátel, může být viděno ostatními)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)";
+$a->strings["Tell us about yourself..."] = "Řekněte nám něco o sobě ...";
+$a->strings["Hobbies/Interests"] = "Koníčky/zájmy";
+$a->strings["Contact information and Social Networks"] = "Kontaktní informace a sociální sítě";
+$a->strings["Musical interests"] = "Hudební vkus";
+$a->strings["Books, literature"] = "Knihy, literatura";
+$a->strings["Television"] = "Televize";
+$a->strings["Film/dance/culture/entertainment"] = "Film/tanec/kultura/zábava";
+$a->strings["Love/romance"] = "Láska/romantika";
+$a->strings["Work/employment"] = "Práce/zaměstnání";
+$a->strings["School/education"] = "Škola/vzdělání";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Toto je váš <strong>veřejný</strong> profil.<br />Ten <strong>může</strong> být viditelný kýmkoliv na internetu.";
+$a->strings["Age: "] = "Věk: ";
+$a->strings["Edit/Manage Profiles"] = "Upravit / Spravovat profily";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica Komunikační server - Nastavení";
+$a->strings["Could not connect to database."] = "Nelze se připojit k databázi.";
+$a->strings["Could not create table."] = "Nelze vytvořit tabulku.";
+$a->strings["Your Friendica site database has been installed."] = "Vaše databáze Friendica  byla nainstalována.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do Vašeho adresáře - i když Vy můžete.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Přečtěte si prosím informace v souboru \"INSTALL.txt\".";
+$a->strings["System check"] = "Testování systému";
+$a->strings["Check again"] = "Otestovat znovu";
+$a->strings["Database connection"] = "Databázové spojení";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pro instalaci Friendica potřeujeme znát připojení k Vaší databázi.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Pokud máte otázky k následujícím nastavením, obraťte se na svého poskytovatele hostingu nebo administrátora serveru, ";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Databáze, kterou uvedete níže, by již měla existovat. Pokud to tak není, prosíme, vytvořte ji před pokračováním.";
+$a->strings["Database Server Name"] = "Jméno databázového serveru";
+$a->strings["Database Login Name"] = "Přihlašovací jméno k databázi";
+$a->strings["Database Login Password"] = "Heslo k databázovému účtu ";
+$a->strings["Database Name"] = "Jméno databáze";
+$a->strings["Site administrator email address"] = "Emailová adresa administrátora webu";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Vaše emailová adresa účtu se musí s touto shodovat, aby bylo možné využívat administrační panel ve webovém rozhraní.";
+$a->strings["Please select a default timezone for your website"] = "Prosím, vyberte výchozí časové pásmo pro váš server";
+$a->strings["Site settings"] = "Nastavení webu";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nelze najít verzi PHP pro příkazový řádek v PATH webového serveru.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Pokud na serveru nemáte nainstalovánu verzi PHP spustitelnou z příkazového řádku, nebudete moci spouštět na pozadí synchronizaci zpráv prostřednictvím cronu. Přečtěte si <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>\n\n    podrobnosti\n    návrhy\n    historie\n\n\t\nThe following url is either missing from the translation or has been translated: 'http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Cesta k \"PHP executable\"";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Zadejte plnou cestu k spustitelnému souboru php. Tento údaj můžete ponechat nevyplněný a pokračovat v instalaci.";
+$a->strings["Command line PHP"] = "Příkazový řádek PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "PHP executable není php cli binary (může být verze cgi-fgci)";
+$a->strings["Found PHP version: "] = "Nalezena PHP verze:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Vyberte prosím profil, který chcete zobrazit %s při zabezpečeném prohlížení Vašeho profilu.";
+$a->strings["This is required for message delivery to work."] = "Toto je nutné pro fungování doručování zpráv.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Chyba: funkce \"openssl_pkey_new\" na tomto systému není schopna generovat šifrovací klíče";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Pokud systém běží na Windows, seznamte se s \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generovat kriptovací klíče";
+$a->strings["libCurl PHP module"] = "libCurl PHP modul";
+$a->strings["GD graphics PHP module"] = "GD graphics PHP modul";
+$a->strings["OpenSSL PHP module"] = "OpenSSL PHP modul";
+$a->strings["mysqli PHP module"] = "mysqli PHP modul";
+$a->strings["mb_string PHP module"] = "mb_string PHP modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Chyba: Požadovaný Apache webserver mod-rewrite modul není nainstalován.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Chyba: požadovaný libcurl PHP modul není nainstalován.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Chyba: požadovaný GD graphics PHP modul není nainstalován.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string  je vyžadován, ale není nainstalován.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php je editovatelné";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica používá šablonovací nástroj Smarty3 pro zobrazení svých weobvých stránek. Smarty3 kompiluje šablony do PHP pro zrychlení vykreslování.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pro uložení kompilovaných šablon, webový server potřebuje mít přístup k zápisu do adresáře view/smarty3/ pod hlavním adresářem instalace Friendica";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "prosím ujistěte se, že uživatel web serveru (jako například www-data) má právo zápisu do tohoto adresáře";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Poznámka: jako bezpečnostní opatření, přidělte právo zápisu pouze k adresáři /view/smarty3/ a nikoliv už k souborům s šablonami (.tpl), které obsahuje.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 je nastaven pro zápis";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Url rewrite v .htconfig nefunguje. Prověřte prosím Vaše nastavení serveru.";
+$a->strings["Url rewrite is working"] = "Url rewrite je funkční.";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Databázový konfigurační soubor \".htconfig.php\" nemohl být uložen. Prosím, použijte přiložený text k vytvoření konfiguračního souboru ve vašem kořenovém adresáři webového serveru.";
+$a->strings["<h1>What next</h1>"] = "<h1>Co dál<h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři Vašeho webového serveru ale nyní mu to není umožněno.";
+$a->strings["Help:"] = "Nápověda:";
+$a->strings["Contact settings applied."] = "Nastavení kontaktu změněno";
+$a->strings["Contact update failed."] = "Aktualizace kontaktu selhala.";
+$a->strings["Repair Contact Settings"] = "Opravit nastavení kontaktu";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>Varování: Toto je velmi pokročilé</strong> a pokud zadáte nesprávné informace, Vaše komunikace s tímto kontaktem může přestat fungovat.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Prosím použijte <strong>ihned</strong> v prohlížeči tlačítko \"zpět\" pokud si nejste jistí co dělat na této stránce.";
+$a->strings["Return to contact editor"] = "Návrat k editoru kontaktu";
+$a->strings["No mirroring"] = "Žádné zrcadlení";
+$a->strings["Mirror as forwarded posting"] = "Zrcadlit pro přeposlané příspěvky";
+$a->strings["Mirror as my own posting"] = "Zrcadlit jako mé vlastní příspěvky";
+$a->strings["Account Nickname"] = "Přezdívka účtu";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - upřednostněno před Jménem/Přezdívkou";
+$a->strings["Account URL"] = "URL adresa účtu";
+$a->strings["Friend Request URL"] = "Žádost o přátelství URL";
+$a->strings["Friend Confirm URL"] = "URL adresa potvrzení přátelství";
+$a->strings["Notification Endpoint URL"] = "Notifikační URL adresa";
+$a->strings["Poll/Feed URL"] = "Poll/Feed URL adresa";
+$a->strings["New photo from this URL"] = "Nové foto z této URL adresy";
+$a->strings["Remote Self"] = "Remote Self";
+$a->strings["Mirror postings from this contact"] = "Zrcadlení správ od tohoto kontaktu";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Označit tento kontakt jako \"remote_self\", s tímto nastavením freindica bude přeposílat všechny nové příspěvky od tohoto kontaktu.";
+$a->strings["Welcome to Friendica"] = "Vítejte na Friendica";
+$a->strings["New Member Checklist"] = "Seznam doporučení pro nového člena";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Rádi bychom vám nabídli několik tipů a odkazů pro začátek. Klikněte na jakoukoliv položku pro zobrazení relevantní stránky. Odkaz na tuto stránku bude viditelný z Vaší domovské stránky po dobu dvou týdnů od Vaší první registrace.";
+$a->strings["Getting Started"] = "Začínáme";
+$a->strings["Friendica Walk-Through"] = "Prohlídka Friendica ";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Na Vaší stránce <em>Rychlý Start</em> - naleznete stručné představení k Vašemu profilu a záložce Síť, k vytvoření spojení s novými kontakty a nalezení skupin, ke kterým se můžete připojit.";
+$a->strings["Go to Your Settings"] = "Navštivte své nastavení";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Na Vaší stránce <em>Nastavení</em> - si změňte Vaše první heslo.\nVěnujte také svou pozornost k adrese identity. Vypadá jako emailová adresa a bude Vám užitečná pro navazování přátelství na svobodné sociální síti.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Prohlédněte si další nastavení, a to zejména nastavení soukromí. Nezveřejnění svého účtu v adresáři je jako mít nezveřejněné telefonní číslo. Obecně platí, že je lepší mít svůj účet zveřejněný, leda by všichni vaši potenciální přátelé věděli, jak vás přesně najít.";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Nahrajte si svou profilovou fotku, pokud jste tak již neučinili. Studie ukázaly, že lidé se skutečnými fotografiemi mají desetkrát častěji přátele než lidé, kteří nemají.";
+$a->strings["Edit Your Profile"] = "Editujte Váš profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Upravit <strong>výchozí</strong> profil podle vašich představ. Prověřte nastavení pro skrytí Vašeho  seznamu přátel a skrytí profilu před neznámými návštěvníky.";
+$a->strings["Profile Keywords"] = "Profilová klíčová slova";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Nastavte si nějaká veřejné klíčová slova pro výchozí profil, která popisují Vaše zájmy. Friendika Vám může nalézt další lidi s podobnými zájmy a navrhnout přátelství.";
+$a->strings["Connecting"] = "Probíhá pokus o připojení";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Jestliže máte účet na Facebooku, povolte konektor na Facebook a bude možné (na přání) importovat všechny Vaš přátele na Facebooku a všechny Vaše konverzace.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Pokud</em> je toto Váš soukromý server, instalací Facebok doplňku můžete zjednodušit Váš přechod na svobodný sociální web.";
+$a->strings["Importing Emails"] = "Importování emaiů";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Pokud chcete importovat své přátele nebo mailové skupiny a komunikovat s nimi, zadejte na Vaší stránce Nastavení kontektoru své přístupové údaje do svého emailového účtu";
+$a->strings["Go to Your Contacts Page"] = "Navštivte Vaši stránku s kontakty";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Vaše stránka Kontakty je Vaše brána k nastavování přátelství a propojení s přáteli z dalších sítí. Typicky zadáte jejich emailovou adresu nebo URL adresu jejich serveru prostřednictvím dialogu <em>Přidat nový kontakt</em>.";
+$a->strings["Go to Your Site's Directory"] = "Navštivte lokální adresář Friendica";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Stránka Adresář Vám pomůže najít další lidi na tomto serveru nebo v jiných propojených serverech. Prostřednictvím odkazů <em>Připojení</em> nebo <em>Následovat</em> si prohlédněte jejich profilovou stránku. Uveďte svou vlastní adresu identity, je-li požadována.";
+$a->strings["Finding New People"] = "Nalezení nových lidí";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Na bočním panelu stránky s kontakty je několik nástrojů k nalezení nových přátel. Porovnáme lidi dle zájmů, najdeme lidi podle jména nebo zájmu a poskytneme Vám návrhy založené na přátelství v síti přátel. Na zcela novém serveru se návrhy přátelství nabínou obvykle během 24 hodin.";
+$a->strings["Group Your Contacts"] = "Seskupte si své kontakty";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Jakmile získáte nějaké přátele, uspořádejte si je do soukromých konverzačních skupin na postranním panelu Vaší stránky Kontakty a pak můžete komunikovat s každou touto skupinu soukromě prostřednictvím stránky Síť.";
+$a->strings["Why Aren't My Posts Public?"] = "Proč nejsou mé příspěvky veřejné?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektuje Vaše soukromí. Defaultně  jsou Vaše příspěvky viditelné pouze lidem, které označíte jako Vaše přátelé. Více informací naleznete v nápovědě na výše uvedeném odkazu";
+$a->strings["Getting Help"] = "Získání nápovědy";
+$a->strings["Go to the Help Section"] = "Navštivte sekci nápovědy";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Na stránkách <strong>Nápověda</strong> naleznete nejen další podrobnosti o všech funkcích Friendika ale také další zdroje informací.";
+$a->strings["Poke/Prod"] = "Šťouchanec";
+$a->strings["poke, prod or do other things to somebody"] = "někoho šťouchnout nebo mu provést  jinou věc";
+$a->strings["Recipient"] = "Příjemce";
+$a->strings["Choose what you wish to do to recipient"] = "Vyberte, co si přejete příjemci udělat";
+$a->strings["Make this post private"] = "Změnit tento příspěvek na soukromý";
+$a->strings["Item has been removed."] = "Položka byla odstraněna.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s následuje %3\$s uživatele %2\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s vítá %2\$s";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "To se může občas stát pokud kontakt byl zažádán oběma osobami a již byl schválen.";
+$a->strings["Response from remote site was not understood."] = "Odpověď ze vzdáleného serveru nebyla srozumitelná.";
+$a->strings["Unexpected response from remote site: "] = "Neočekávaná odpověď od vzdáleného serveru:";
+$a->strings["Confirmation completed successfully."] = "Potvrzení úspěšně dokončena.";
+$a->strings["Remote site reported: "] = "Vzdálený server oznámil:";
+$a->strings["Temporary failure. Please wait and try again."] = "Dočasné selhání. Prosím, vyčkejte a zkuste to znovu.";
+$a->strings["Introduction failed or was revoked."] = "Žádost o propojení selhala nebo byla zrušena.";
+$a->strings["Unable to set contact photo."] = "Nelze nastavit fotografii kontaktu.";
+$a->strings["No user record found for '%s' "] = "Pro '%s' nenalezen žádný uživatelský záznam ";
+$a->strings["Our site encryption key is apparently messed up."] = "Náš šifrovací klíč zřejmě přestal správně fungovat.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Byla poskytnuta prázdná URL adresa nebo se nepodařilo URL adresu dešifrovat.";
+$a->strings["Contact record was not found for you on our site."] = "Kontakt záznam nebyl nalezen pro vás na našich stránkách.";
+$a->strings["Site public key not available in contact record for URL %s."] = "V adresáři není k dispozici veřejný klíč pro URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Váš systém poskytl duplicitní ID vůči našemu systému. Pokuste se akci zopakovat.";
+$a->strings["Unable to set your contact credentials on our system."] = "Nelze nastavit Vaše přihlašovací údaje v našem systému.";
+$a->strings["Unable to update your contact profile details on our system"] = "Nelze aktualizovat Váš profil v našem systému";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s se připojil k %2\$s";
+$a->strings["Unable to locate original post."] = "Nelze nalézt původní příspěvek.";
+$a->strings["Empty post discarded."] = "Prázdný příspěvek odstraněn.";
+$a->strings["System error. Post not saved."] = "Chyba systému. Příspěvek nebyl uložen.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Tato zpráva vám byla zaslána od %s, člena sociální sítě Friendica.";
+$a->strings["You may visit them online at %s"] = "Můžete je navštívit online na adrese %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesilatele odpovědí na tento záznam.";
+$a->strings["%s posted an update."] = "%s poslal aktualizaci.";
+$a->strings["Image uploaded but image cropping failed."] = "Obrázek byl odeslán, ale jeho oříznutí se nesdařilo.";
+$a->strings["Image size reduction [%s] failed."] = "Nepodařilo se snížit velikost obrázku [%s].";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nové fotografie nezobrazí okamžitě.";
+$a->strings["Unable to process image"] = "Obrázek nelze zpracovat ";
+$a->strings["Upload File:"] = "Nahrát soubor:";
+$a->strings["Select a profile:"] = "Vybrat profil:";
+$a->strings["Upload"] = "Nahrát";
+$a->strings["skip this step"] = "přeskočit tento krok ";
+$a->strings["select a photo from your photo albums"] = "Vybrat fotografii z Vašich fotoalb";
+$a->strings["Crop Image"] = "Oříznout obrázek";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Prosím, ořízněte tento obrázek pro optimální zobrazení.";
+$a->strings["Done Editing"] = "Editace dokončena";
+$a->strings["Image uploaded successfully."] = "Obrázek byl úspěšně nahrán.";
+$a->strings["Friends of %s"] = "Přátelé uživatele %s";
+$a->strings["No friends to display."] = "Žádní přátelé k zobrazení";
+$a->strings["Find on this site"] = "Nalézt na tomto webu";
+$a->strings["Site Directory"] = "Adresář serveru";
+$a->strings["Gender: "] = "Pohlaví: ";
+$a->strings["No entries (some entries may be hidden)."] = "Žádné záznamy (některé položky mohou být skryty).";
+$a->strings["Time Conversion"] = "Časová konverze";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica poskytuje tuto službu pro sdílení událostí s ostatními sítěmi a přáteli v neznámých časových zónách";
+$a->strings["UTC time: %s"] = "UTC čas: %s";
+$a->strings["Current timezone: %s"] = "Aktuální časové pásmo: %s";
+$a->strings["Converted localtime: %s"] = "Převedený lokální čas : %s";
+$a->strings["Please select your timezone:"] = "Prosím, vyberte své časové pásmo:";
index 93914899f103801466806cc5026a79134e8af14a..648f00a12ef3aaa9670c92b75a1b9cd76f1189ba 100644 (file)
@@ -30,9 +30,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-09 08:57+0100\n"
-"PO-Revision-Date: 2015-04-02 18:48+0000\n"
-"Last-Translator: Frank Dieckmann <frank@lumina-verte.org>\n"
+"POT-Creation-Date: 2015-04-04 17:54+0200\n"
+"PO-Revision-Date: 2015-04-08 10:03+0000\n"
+"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -40,4602 +40,4502 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../mod/contacts.php:108
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d Kontakt bearbeitet."
-msgstr[1] "%d Kontakte bearbeitet"
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:56
+#: ../../view/theme/duepuntozero/config.php:59
+#: ../../view/theme/diabook/config.php:148
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
+#: ../../object/Item.php:678 ../../mod/contacts.php:492
+#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107
+#: ../../mod/photos.php:1084 ../../mod/photos.php:1203
+#: ../../mod/photos.php:1514 ../../mod/photos.php:1565
+#: ../../mod/photos.php:1609 ../../mod/photos.php:1697
+#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../mod/profiles.php:686 ../../mod/install.php:248
+#: ../../mod/install.php:286 ../../mod/crepair.php:186
+#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
+msgid "Submit"
+msgstr "Senden"
 
-#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:58
+#: ../../view/theme/duepuntozero/config.php:61
+#: ../../view/theme/diabook/config.php:150
+#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: ../../mod/contacts.php:153
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
 
-#: ../../mod/contacts.php:186
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
 
-#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Theme Breite festlegen"
 
-#: ../../mod/contacts.php:254 ../../mod/manage.php:96
-#: ../../mod/display.php:499 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
-msgid "Permission denied."
-msgstr "Zugriff verweigert."
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: ../../view/theme/vier/config.php:59
+msgid "Set style"
+msgstr "Stil auswählen"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
+#: ../../include/user.php:247
+msgid "default"
+msgstr "Standard"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr "greenzero"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr "purplezero"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr "easterbunny"
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr "darkzero"
 
-#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr "comix"
 
-#: ../../mod/contacts.php:337 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
-#: ../../include/items.php:4557
-msgid "Yes"
-msgstr "Ja"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr "slackr"
 
-#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4560
-msgid "Cancel"
-msgstr "Abbrechen"
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variationen"
 
-#: ../../mod/contacts.php:352
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: ../../mod/contacts.php:390
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "zeigen"
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Liniengröße für Beiträge und Kommantare festlegen"
 
-#: ../../mod/contacts.php:399
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Auflösung für die Mittelspalte setzen"
 
-#: ../../mod/contacts.php:416
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Wähle Farbschema"
 
-#: ../../mod/contacts.php:419 ../../mod/admin.php:569
-msgid "Never"
-msgstr "Niemals"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Longitude (X) der Earth Layer"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Latitude (Y) der Earth Layer"
 
-#: ../../mod/contacts.php:425
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: ../../view/theme/diabook/config.php:158
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+msgid "Community Pages"
+msgstr "Foren"
 
-#: ../../mod/contacts.php:429
-#, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Community-Profile"
 
-#: ../../mod/contacts.php:437
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
-msgid "Unblock"
-msgstr "Entsperren"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "Sperren"
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Freunde finden"
 
-#: ../../mod/contacts.php:445
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Letzte Nutzer"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Letzte Fotos"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Zuletzt gemocht"
 
-#: ../../mod/contacts.php:451
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
+#: ../../include/nav.php:148 ../../mod/notifications.php:93
+msgid "Home"
+msgstr "Pinnwand"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:148
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:458
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: ../../mod/contacts.php:461
-msgid "Repair"
-msgstr "Reparieren"
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
+#: ../../mod/contacts.php:718
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: ../../mod/contacts.php:464
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Deine Kontakte"
 
-#: ../../mod/contacts.php:470
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Bilder"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Editor"
-msgstr "Kontakt Editor"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: ../../mod/contacts.php:475 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:686 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
-#: ../../view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Senden"
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157
+#: ../../include/nav.php:80 ../../mod/events.php:370
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: ../../mod/contacts.php:476
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: ../../mod/contacts.php:477
-#, 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."
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/contacts.php:478
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
-
-#: ../../mod/contacts.php:479
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Deine privaten Fotos"
 
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
-#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
+#: ../../include/nav.php:131 ../../mod/community.php:32
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: ../../mod/contacts.php:485
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:245 ../../include/text.php:1983
+msgid "event"
+msgstr "Veranstaltung"
 
-#: ../../mod/contacts.php:486
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:248 ../../include/conversation.php:257
+#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62
+msgid "status"
+msgstr "Status"
 
-#: ../../mod/contacts.php:487
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011
+#: ../../include/conversation.php:126 ../../include/conversation.php:253
+#: ../../include/text.php:1985 ../../mod/like.php:149
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62
+msgid "photo"
+msgstr "Foto"
 
-#: ../../mod/contacts.php:488
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027
+#: ../../include/conversation.php:137 ../../mod/like.php:166
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: ../../mod/contacts.php:490
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: ../../mod/contacts.php:494
-msgid "Last update:"
-msgstr "Letzte Aktualisierung: "
+#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: ../../mod/contacts.php:496
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
 
-#: ../../mod/contacts.php:498 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: ../../mod/contacts.php:505
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: ../../mod/contacts.php:506
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
+#: ../../mod/suggest.php:68
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../mod/contacts.php:507
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Verbirg diesen Kontakt von anderen"
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172
+#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325
+#: ../../mod/newmember.php:22
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: ../../mod/contacts.php:508
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/contacts.php:509
-msgid "Notification for new posts"
-msgstr "Benachrichtigung bei neuen Beiträgen"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
 
-#: ../../mod/contacts.php:509
-msgid "Send a notification of every new post of this contact"
-msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch further information for feeds"
-msgstr "Weitere Informationen zu Feeds holen"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/contacts.php:511
-msgid "Disabled"
-msgstr "Deaktiviert"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Mitte"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information"
-msgstr "Beziehe Information"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information and keywords"
-msgstr "Beziehe Information und Schlüsselworte"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: ../../mod/contacts.php:513
-msgid "Blacklisted keywords"
-msgstr "Blacklistete Schlüsselworte "
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Farbschema wählen"
 
-#: ../../mod/contacts.php:513
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde"
+#: ../../index.php:211 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
 
-#: ../../mod/contacts.php:564
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../index.php:255 ../../mod/help.php:42
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: ../../mod/contacts.php:567
-msgid "Suggest potential friends"
-msgstr "Freunde vorschlagen"
+#: ../../index.php:258 ../../mod/help.php:45
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: ../../mod/contacts.php:570 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: ../../mod/contacts.php:573
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/group.php:19 ../../mod/delegate.php:12
+#: ../../mod/notifications.php:66 ../../mod/settings.php:20
+#: ../../mod/settings.php:107 ../../mod/settings.php:606
+#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55
+#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10
+#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78
+#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66
+#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140
+#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/profiles.php:165 ../../mod/profiles.php:618
+#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135
+#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55
+#: ../../mod/item.php:169 ../../mod/item.php:185
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/allfriends.php:9
+msgid "Permission denied."
+msgstr "Zugriff verweigert."
 
-#: ../../mod/contacts.php:576
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: ../../index.php:427
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
 
-#: ../../mod/contacts.php:579
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:30
+#, php-format
+msgid "Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"
+msgstr "Möchtest du deine Identität (<tt>%s</tt> mit <tt>%s</tt> bestätigen"
 
-#: ../../mod/contacts.php:583
-msgid "Blocked"
-msgstr "Geblockt"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:43
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: ../../mod/contacts.php:586
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:44
+msgid "Do not confirm"
+msgstr "Nicht bestätigen"
 
-#: ../../mod/contacts.php:590
-msgid "Ignored"
-msgstr "Ignoriert"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:48
+msgid "Trust This Site"
+msgstr "Dieser Seite vertrauen"
 
-#: ../../mod/contacts.php:593
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:53
+msgid "No Identifier Sent"
+msgstr "Keine Identifikation gesendet"
 
-#: ../../mod/contacts.php:597
-msgid "Archived"
-msgstr "Archiviert"
+#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5
+msgid "Requested identity don't match logged in user."
+msgstr "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein."
 
-#: ../../mod/contacts.php:600
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: ../../addon-wrk/openidserver/lib/render.php:27
+#, php-format
+msgid "Please wait; you are being redirected to <%s>"
+msgstr "Bitte warten, Du wirst nach <%s> umgeleitet."
 
-#: ../../mod/contacts.php:604
-msgid "Hidden"
-msgstr "Verborgen"
+#: ../../boot.php:749
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
 
-#: ../../mod/contacts.php:607
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677
+#: ../../mod/photos.php:1564 ../../mod/photos.php:1608
+#: ../../mod/photos.php:1696 ../../mod/content.php:709
+msgid "Comment"
+msgstr "Kommentar"
 
-#: ../../mod/contacts.php:655
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: ../../boot.php:751 ../../include/contact_widgets.php:205
+#: ../../object/Item.php:390 ../../mod/content.php:606
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: ../../mod/contacts.php:659
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: ../../boot.php:752
+msgid "show fewer"
+msgstr "weniger anzeigen"
 
-#: ../../mod/contacts.php:663
-msgid "you are a fan of"
-msgstr "Du bist Fan von"
+#: ../../boot.php:1122
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: ../../boot.php:1229
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
 
-#: ../../mod/contacts.php:702 ../../include/nav.php:177
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Kontakte"
+#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269
+msgid "Register"
+msgstr "Registrieren"
 
-#: ../../mod/contacts.php:706
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: ../../boot.php:1254 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Abmelden"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Funde: "
+#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12
+msgid "Login"
+msgstr "Anmeldung"
 
-#: ../../mod/contacts.php:708 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Finde"
+#: ../../boot.php:1257
+msgid "Nickname or Email address: "
+msgstr "Spitzname oder E-Mail-Adresse: "
 
-#: ../../mod/contacts.php:713 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Aktualisierungen"
+#: ../../boot.php:1258
+msgid "Password: "
+msgstr "Passwort: "
 
-#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Löschen"
+#: ../../boot.php:1259
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: ../../boot.php:1262
+msgid "Or login using OpenID: "
+msgstr "Oder melde Dich mit Deiner OpenID an: "
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: ../../boot.php:1268
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
+#: ../../boot.php:1269 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten aus: "
+#: ../../boot.php:1271
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: ../../boot.php:1272
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: ../../boot.php:1274
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner."
+#: ../../boot.php:1275
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
-
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profil"
+#: ../../boot.php:1408
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: ../../boot.php:1447 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../boot.php:1490 ../../boot.php:1624
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: ../../boot.php:1557 ../../include/contact_widgets.php:10
+#: ../../mod/suggest.php:90 ../../mod/match.php:58
+msgid "Connect"
+msgstr "Verbinden"
 
-#: ../../mod/display.php:82 ../../mod/display.php:284
-#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15
-#: ../../include/items.php:4516
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: ../../boot.php:1589
+msgid "Message"
+msgstr "Nachricht"
 
-#: ../../mod/display.php:212 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: ../../boot.php:1595 ../../include/nav.php:175
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../mod/display.php:332 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: ../../boot.php:1595
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: ../../boot.php:1601 ../../mod/profiles.php:805
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: ../../boot.php:1611 ../../mod/profiles.php:816
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
+#: ../../boot.php:1614 ../../mod/profiles.php:818
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+#: ../../boot.php:1615 ../../mod/profiles.php:819
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: ../../boot.php:1637 ../../include/event.php:40
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471
+#: ../../mod/directory.php:136
+msgid "Location:"
+msgstr "Ort:"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
+#: ../../boot.php:1639 ../../include/profile_advanced.php:17
+#: ../../mod/directory.php:138
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1104
-#: ../../mod/admin.php:1325 ../../mod/settings.php:85
-#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Einstellungen"
+#: ../../boot.php:1642 ../../include/profile_advanced.php:37
+#: ../../mod/directory.php:140
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: ../../boot.php:1644 ../../include/profile_advanced.php:48
+#: ../../mod/directory.php:142
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
+#: ../../boot.php:1646 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:144
+msgid "About:"
+msgstr "Über:"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."
+#: ../../boot.php:1711
+msgid "Network:"
+msgstr "Netzwerk"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: ../../boot.php:1743 ../../boot.php:1829
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
+#: ../../boot.php:1744 ../../boot.php:1830
+msgid "F d"
+msgstr "d. F"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: ../../boot.php:1789 ../../boot.php:1877
+msgid "[today]"
+msgstr "[heute]"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."
+#: ../../boot.php:1801
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: ../../boot.php:1802
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
+#: ../../boot.php:1864
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: ../../boot.php:1888
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../boot.php:1889
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."
+#: ../../boot.php:2126 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Wenn</em> dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."
+#: ../../boot.php:2129
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: ../../boot.php:2136
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."
+#: ../../boot.php:2143 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Videos"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
+#: ../../boot.php:2160
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
+#: ../../boot.php:2164 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
+#: ../../boot.php:2167
+msgid "Only You Can See This"
+msgstr "Nur Du kannst das sehen"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Gruppen"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Web-Editor"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Den Web-Editor für neue Beiträge aktivieren"
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
-
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
-
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr "Foren automatisch erwähnen"
 
-#: ../../mod/openid.php:53
+#: ../../include/features.php:33
 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/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81
-#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204
-#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Profilbilder"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Bildgröße überschreitet das Limit von %d"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: ../../include/features.php:42 ../../mod/network.php:194
+#: ../../mod/search.php:30
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Profil auswählen:"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Hochladen"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "oder"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto aus deinen Fotoalben"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich hochgeladen."
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1968 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "Foto"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "Status"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Tagging"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Entfernen"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "In diesem Ordner speichern:"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:104
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:956
-msgid "Save"
-msgstr "Speichern"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr "Benachrichtigungen für Beiträge Stumm schalten"
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
 
-#: ../../mod/item.php:964
+#: ../../include/items.php:2307 ../../include/datetime.php:477
 #, 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."
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: ../../mod/item.php:966
+#: ../../include/items.php:2308 ../../include/datetime.php:478
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: ../../mod/item.php:967
-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."
+#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
+#: ../../mod/dfrn_confirm.php:752
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: ../../mod/item.php:971
-#, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+#: ../../include/items.php:4619 ../../mod/admin.php:169
+#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284
+#: ../../mod/display.php:503
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: ../../include/items.php:4658
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest Du wirklich dieses Item löschen?"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: ../../include/items.php:4660 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1021 ../../mod/settings.php:1029
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1038
+#: ../../mod/settings.php:1044 ../../mod/settings.php:1050
+#: ../../mod/settings.php:1056 ../../mod/settings.php:1086
+#: ../../mod/settings.php:1087 ../../mod/settings.php:1088
+#: ../../mod/settings.php:1089 ../../mod/settings.php:1090
+#: ../../mod/contacts.php:341 ../../mod/register.php:233
+#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+#: ../../mod/profiles.php:661 ../../mod/profiles.php:664
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: ../../include/items.php:4663 ../../include/conversation.php:1128
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/contacts.php:344 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32
+#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/message.php:212
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: ../../include/items.php:4881
+msgid "Archives"
+msgstr "Archiv"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Gruppe speichern"
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "bearbeiten"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Gruppen"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Sie müssen angemeldet sein um Addons benutzen zu können."
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Anwendungen"
+#: ../../include/group.php:275 ../../mod/network.php:195
+msgid "add"
+msgstr "hinzufügen"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926
+#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955
+#: ../../include/Photo.php:933 ../../include/Photo.php:948
+#: ../../include/Photo.php:955 ../../include/Photo.php:977
+#: ../../include/message.php:144 ../../mod/wall_upload.php:169
+#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
+#: ../../mod/item.php:485
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
-#: ../../mod/profiles.php:630
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Leute finden"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Konnte das Bild des Kontakts nicht speichern."
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
+#: ../../mod/directory.php:63
+msgid "Find"
+msgstr "Finde"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: ../../mod/dfrn_confirm.php:571
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Alles"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../mod/dfrn_confirm.php:627
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: ../../mod/dfrn_confirm.php:647
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:4008
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: ../../include/enotify.php:33 ../../include/delivery.php:467
+#: ../../include/notifier.php:796
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/dfrn_confirm.php:797
+#: ../../include/enotify.php:64
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/profile.php:21 ../../boot.php:1458
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Keine Videos  ausgewählt"
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte Dir %2$s."
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: ../../mod/videos.php:301 ../../include/text.php:1405
-msgid "View Video"
-msgstr "Video ansehen"
+#: ../../include/enotify.php:72
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Album betrachten"
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Neueste Videos"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Neues Video hochladen"
+#: ../../include/enotify.php:139
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../include/enotify.php:149
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt"
-
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
-
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: ../../mod/fsuggest.php:99
+#: ../../include/enotify.php:150
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: ../../include/enotify.php:153 ../../include/enotify.php:168
+#: ../../include/enotify.php:181 ../../include/enotify.php:194
+#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
 
-#: ../../mod/lostpass.php:42
+#: ../../include/enotify.php:162
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
 
-#: ../../mod/lostpass.php:53
+#: ../../include/enotify.php:164
 #, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
 
-#: ../../mod/lostpass.php:72
+#: ../../include/enotify.php:175
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte Dich auf %2$s"
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1280
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "hier klicken, um Dich anzumelden"
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat Dich auf %2$s angestupst"
 
-#: ../../mod/lostpass.php:125
+#: ../../include/enotify.php:204
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
 
-#: ../../mod/lostpass.php:131
+#: ../../include/enotify.php:219
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
 
-#: ../../mod/lostpass.php:147
+#: ../../include/enotify.php:220
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde Dein Passwort geändert"
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Hast Du Dein Passwort vergessen?"
+#: ../../include/enotify.php:221
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: ../../include/enotify.php:233
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst Du das Profil betrachten: %s"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../include/enotify.php:239
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit Dir in Kontakt treten"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} schickte Dir eine Nachricht"
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr "%1$s teilt mit Dir auf %2$s"
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
 
-#: ../../mod/ping.php:256
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} kommentierte einen Beitrag von %s"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} mag %ss Beitrag"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: ../../mod/ping.php:266
+#: ../../include/enotify.php:271
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} mag %ss Beitrag nicht"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: ../../mod/ping.php:271
+#: ../../include/enotify.php:272
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} ist jetzt mit %s befreundet"
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} hat etwas veröffentlicht"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Name:"
 
-#: ../../mod/ping.php:281
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Foto:"
+
+#: ../../include/enotify.php:281
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} hat Dich in einem Beitrag erwähnt"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
 
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
 
-#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerfen"
+#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "System"
+#: ../../include/enotify.php:307
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:145
-msgid "Network"
-msgstr "Netzwerk"
+#: ../../include/enotify.php:309
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Pinnwand"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:154
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: ../../include/enotify.php:327
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Kompletter Name:\t%1$s\\nURL der Seite:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1063
+#: ../../include/api.php:1065
+msgid "User not found."
+msgstr "Nutzer nicht gefunden."
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: ../../include/api.php:770
+#, 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."
 
-#: ../../mod/notifications.php:152
+#: ../../include/api.php:789
 #, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+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."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: ../../include/api.php:808
+#, 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."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Es gibt keinen Status mit dieser ID."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "Genehmigen"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr "Es existiert keine Unterhaltung mit dieser ID."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Behauptet Dich zu kennen: "
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr "Ungültige Anfrage"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ja"
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr "Ungültiges Objekt"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "nein"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr "Ungültige Aktion"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Genehmigen als: "
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr "DB Error"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Freund"
+#: ../../include/network.php:890
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Teilenden"
+#: ../../include/Scrape.php:608
+msgid " on Last.fm"
+msgstr " bei Last.fm"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:155
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Alter:"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tags"
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721
+msgid "Likes:"
+msgstr "Likes:"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Keine weiteren persönlichen Benachrichtigungen"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
-
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
-
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
-
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
-
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
-
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
-
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
-
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Originaltext (Diaspora Format): "
-
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
 msgid "Nothing new here"
 msgstr "Keine Neuigkeiten"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
 msgid "Clear notifications"
 msgstr "Bereinige Benachrichtigungen"
 
-#: ../../mod/message.php:9 ../../include/nav.php:164
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "Deine Videos"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Deine persönlichen Notizen"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Homepage"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: ../../mod/message.php:182 ../../include/nav.php:161
-msgid "Messages"
-msgstr "Nachrichten"
+#: ../../include/nav.php:114 ../../mod/help.php:36
+msgid "Help"
+msgstr "Hilfe"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest Du wirklich diese Nachricht löschen?"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Apps"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: ../../include/nav.php:119 ../../include/text.php:968
+#: ../../include/text.php:969 ../../mod/search.php:99
+msgid "Search"
+msgstr "Suche"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "An:"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Betreff:"
+#: ../../include/nav.php:131
+msgid "Conversations on the network"
+msgstr "Unterhaltungen im Netzwerk"
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: ../../include/nav.php:133
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: ../../include/nav.php:133
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: ../../include/nav.php:135
+msgid "Information"
+msgstr "Information"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Bitte warten"
+#: ../../include/nav.php:135
+msgid "Information about this friendica instance"
+msgstr "Informationen zu dieser Friendica Instanz"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: ../../include/nav.php:145 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Netzwerk"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: ../../include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen Deiner Kontakte"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: ../../include/nav.php:146
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s und Du"
+#: ../../include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: ../../include/nav.php:154 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: ../../include/nav.php:154
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: ../../include/nav.php:155 ../../mod/notifications.php:224
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: ../../include/nav.php:156
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: ../../include/nav.php:157
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
+#: ../../include/nav.php:161 ../../mod/message.php:182
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: ../../include/nav.php:161
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: ../../include/nav.php:162
+msgid "Inbox"
+msgstr "Eingang"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Einstellungen zum Kontakt angewandt."
+#: ../../include/nav.php:163
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
+#: ../../include/nav.php:164 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Kontakteinstellungen reparieren"
+#: ../../include/nav.php:167
+msgid "Manage"
+msgstr "Verwalten"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
+#: ../../include/nav.php:167
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
+#: ../../include/nav.php:170 ../../mod/settings.php:67
+msgid "Delegations"
+msgstr "Delegationen"
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Zurück zum Kontakteditor"
+#: ../../include/nav.php:170 ../../mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr "Kein Spiegeln"
+#: ../../include/nav.php:172
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr "Spiegeln als weitergeleitete Beiträge"
-
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr "Spiegeln als meine eigenen Beiträge"
-
-#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015
-#: ../../mod/admin.php:1016 ../../mod/admin.php:1029
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
-msgid "Name"
-msgstr "Name"
+#: ../../include/nav.php:175
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Konto-Spitzname"
+#: ../../include/nav.php:177
+msgid "Manage/edit friends and contacts"
+msgstr "Freunde und Kontakte verwalten/editieren"
 
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname - überschreibt Name/Spitzname"
+#: ../../include/nav.php:184 ../../mod/admin.php:130
+msgid "Admin"
+msgstr "Administration"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "Konto-URL"
+#: ../../include/nav.php:184
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "URL für Freundschaftsanfragen"
+#: ../../include/nav.php:188
+msgid "Navigation"
+msgstr "Navigation"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "URL für Bestätigungen von Freundschaftsanfragen"
+#: ../../include/nav.php:188
+msgid "Site map"
+msgstr "Sitemap"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "URL-Endpunkt für Benachrichtigungen"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Pull/Feed-URL"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Neues Foto von dieser URL"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr "Entfernte Konten"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr "Spiegle Beiträge dieses Kontakts"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: ../../mod/crepair.php:176
+#: ../../include/follow.php:59
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
+"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."
 
-#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92
-msgid "Login"
-msgstr "Anmeldung"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr "Der Beitrag wurde angelegt"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personensuche"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Bilder"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Dateien"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "Seite"
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "folgen"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "Nutzer"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "Themen"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "DB Updates"
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "Protokolle"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr "Adresse untersuchen"
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr "Webfinger überprüfen"
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d Kontakt nicht importiert"
+msgstr[1] "%d Kontakte nicht importiert"
 
-#: ../../mod/admin.php:130 ../../include/nav.php:184
-msgid "Admin"
-msgstr "Administration"
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:133
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr "Diagnose"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: ../../include/Contact.php:119
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: ../../include/Contact.php:232 ../../include/conversation.php:881
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: ../../include/Contact.php:233 ../../include/conversation.php:875
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: ../../include/Contact.php:234 ../../include/conversation.php:876
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "Blog-Konto"
+#: ../../include/Contact.php:235 ../../include/conversation.php:877
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: ../../include/Contact.php:236 ../../include/Contact.php:259
+#: ../../include/conversation.php:878
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: ../../include/Contact.php:237 ../../include/Contact.php:259
+#: ../../include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
-#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
-#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
-msgid "Administration"
-msgstr "Administration"
+#: ../../include/Contact.php:238
+msgid "Drop Contact"
+msgstr "Kontakt löschen"
 
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../include/Contact.php:239 ../../include/Contact.php:259
+#: ../../include/conversation.php:880
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: ../../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."
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "Version"
+#: ../../include/dbstructure.php:150
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: ../../include/dbstructure.php:208
+msgid "Errors encountered performing database changes."
+msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
 
-#: ../../mod/admin.php:255
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "Jahr"
 
-#: ../../mod/admin.php:545 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "Monat"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr "Keine Gemeinschaftsseite"
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "Tag"
 
-#: ../../mod/admin.php:563
-msgid "Public postings from users of this site"
-msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nie"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
-msgstr "Globale Gemeinschaftsseite"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr "Beim Empfang von Nachrichten"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "Jahre"
 
-#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "immer wieder"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "Monate"
 
-#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Stündlich"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "Woche"
 
-#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "Wochen"
 
-#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Täglich"
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "Tage"
 
-#: ../../mod/admin.php:579
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "Stunde"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "Geschlossen"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "Stunden"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "Minute"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "Offen"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "Minuten"
 
-#: ../../mod/admin.php:608
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "Sekunde"
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "Sekunden"
 
-#: ../../mod/admin.php:610
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358
-#: ../../mod/admin.php:1445 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "Einstellungen speichern"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: ../../mod/admin.php:621 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Registrierung"
+#: ../../include/delivery.php:456 ../../include/notifier.php:786
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "Datei hochladen"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "Regeln"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "Erweitert"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "Performance"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: ../../mod/admin.php:629
-msgid "Site name"
-msgstr "Seitenname"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr "Host Name"
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
-msgstr "Absender für Emails"
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
-msgstr "Shortcut Icon"
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
+msgid "Daily"
+msgstr "Täglich"
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr "Touch Icon"
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr "Zusätzliche Informationen"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: ../../mod/admin.php:635
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf Dir.friendica.com/siteinfo angezeigt werden."
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:636
-msgid "System language"
-msgstr "Systemsprache"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "Systemweites Theme"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/admin.php:637
-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>"
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031
+msgid "Email"
+msgstr "E-Mail"
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Theme"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
+#: ../../mod/dfrn_request.php:838
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/admin.php:639
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: ../../mod/admin.php:639
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/admin.php:640
-msgid "Force SSL"
-msgstr "Erzwinge SSL"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: ../../mod/admin.php:640
-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."
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/admin.php:641
-msgid "Old style 'Share'"
-msgstr "Altes \"Teilen\" Element"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:641
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/admin.php:642
-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."
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:643
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "StatusNet"
 
-#: ../../mod/admin.php:643
-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."
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "Maximale Bildgröße"
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:486
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: ../../mod/admin.php:644
-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."
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: ../../mod/admin.php:645
-msgid "Maximum image length"
-msgstr "Maximale Bildlänge"
+#: ../../include/diaspora.php:2444
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: ../../mod/admin.php:645
-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."
+#: ../../include/conversation.php:140 ../../mod/like.php:168
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: ../../include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../mod/admin.php:646
-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."
+#: ../../include/conversation.php:226 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: ../../include/conversation.php:265 ../../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"
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Registrierungen"
+#: ../../include/conversation.php:290
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: ../../mod/admin.php:649
-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."
+#: ../../include/conversation.php:291
+#, 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"
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "Registrierungstext"
+#: ../../include/conversation.php:612 ../../object/Item.php:129
+#: ../../mod/photos.php:1653 ../../mod/content.php:437
+#: ../../mod/content.php:740
+msgid "Select"
+msgstr "Auswählen"
 
-#: ../../mod/admin.php:650
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: ../../include/conversation.php:613 ../../object/Item.php:130
+#: ../../mod/group.php:171 ../../mod/settings.php:682
+#: ../../mod/contacts.php:733 ../../mod/admin.php:1007
+#: ../../mod/photos.php:1654 ../../mod/content.php:438
+#: ../../mod/content.php:741
+msgid "Delete"
+msgstr "Löschen"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: ../../include/conversation.php:653 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../mod/content.php:471
+#: ../../mod/content.php:852 ../../mod/content.php:853
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: ../../mod/admin.php:651
-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."
+#: ../../include/conversation.php:665 ../../object/Item.php:316
+msgid "Categories:"
+msgstr "Kategorien:"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: ../../include/conversation.php:666 ../../object/Item.php:317
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: ../../mod/admin.php:652
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../include/conversation.php:673 ../../object/Item.php:340
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: ../../include/conversation.php:689 ../../mod/content.php:497
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: ../../mod/admin.php:653
-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."
+#: ../../include/conversation.php:691 ../../include/conversation.php:1108
+#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../mod/editpost.php:124 ../../mod/photos.php:1545
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/content.php:499 ../../mod/content.php:883
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: ../../mod/admin.php:654
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: ../../include/conversation.php:771
+msgid "remove"
+msgstr "löschen"
 
-#: ../../mod/admin.php:654
-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."
+#: ../../include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: ../../include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: ../../mod/admin.php:655
-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."
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: ../../mod/admin.php:656
-msgid "Global directory update URL"
-msgstr "URL für Updates beim weltweiten Verzeichnis"
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: ../../mod/admin.php:656
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: ../../include/conversation.php:951
+#, 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"
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: ../../include/conversation.php:965
+msgid "and"
+msgstr "und"
 
-#: ../../mod/admin.php:658
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: ../../include/conversation.php:971
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: ../../mod/admin.php:658
-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."
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: ../../mod/admin.php:659
-msgid "Don't include post content in email notifications"
-msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen das nicht."
 
-#: ../../mod/admin.php:659
-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."
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: ../../mod/admin.php:660
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: ../../mod/admin.php:660
-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."
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: ../../mod/admin.php:661
-msgid "Don't embed private images in posts"
-msgstr "Private Bilder nicht in Beiträgen einbetten."
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: ../../mod/admin.php:661
-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."
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: ../../mod/admin.php:662
-msgid "Allow Users to set remote_self"
-msgstr "Nutzern erlauben das remote_self Flag zu setzen"
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "In diesem Ordner speichern:"
 
-#: ../../mod/admin.php:662
-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."
+#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Wo hältst Du Dich jetzt gerade auf?"
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: ../../include/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: ../../mod/admin.php:663
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: ../../include/conversation.php:1050
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: ../../include/conversation.php:1055
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1033
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1544
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../mod/admin.php:665
-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."
+#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154
+#: ../../mod/editpost.php:110 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
-msgstr "Art der Gemeinschaftsseite"
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: ../../mod/admin.php:667
-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."
+#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155
+#: ../../mod/editpost.php:114 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "Weblink"
 
-#: ../../mod/admin.php:668
-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."
+#: ../../include/conversation.php:1096 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../mod/admin.php:669
-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."
+#: ../../include/conversation.php:1098 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../mod/admin.php:670
-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."
+#: ../../include/conversation.php:1100 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "Diaspora-Support aktivieren"
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "Ort setzen"
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: ../../include/conversation.php:1102 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: ../../mod/admin.php:672
-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."
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: ../../include/conversation.php:1107 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: ../../mod/admin.php:673
-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."
+#: ../../include/conversation.php:1109 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: ../../mod/admin.php:674
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: ../../include/conversation.php:1110
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../include/conversation.php:1118 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: ../../mod/admin.php:676
-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)."
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: ../../include/conversation.php:1125 ../../object/Item.php:687
+#: ../../mod/editpost.php:145 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../mod/content.php:719
+msgid "Preview"
+msgstr "Vorschau"
 
-#: ../../mod/admin.php:677
-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."
+#: ../../include/conversation.php:1134
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: ../../include/conversation.php:1135
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: ../../mod/admin.php:678
-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."
+#: ../../include/conversation.php:1136
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: ../../include/text.php:297
+msgid "newer"
+msgstr "neuer"
 
-#: ../../mod/admin.php:679
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
+#: ../../include/text.php:299
+msgid "older"
+msgstr "älter"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: ../../include/text.php:304
+msgid "prev"
+msgstr "vorige"
 
-#: ../../mod/admin.php:681
-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."
+#: ../../include/text.php:306
+msgid "first"
+msgstr "erste"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr "Sprachinformation unterdrücken"
+#: ../../include/text.php:338
+msgid "last"
+msgstr "letzte"
 
-#: ../../mod/admin.php:682
-msgid "Suppress language information in meta information about a posting."
-msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
+#: ../../include/text.php:341
+msgid "next"
+msgstr "nächste"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr "Tags Unterdrücken"
+#: ../../include/text.php:396
+msgid "Loading more entries..."
+msgstr "lade weitere Einträge..."
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
-msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
+#: ../../include/text.php:397
+msgid "The end"
+msgstr "Das Ende"
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: ../../include/text.php:870
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: ../../include/text.php:879
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: ../../mod/admin.php:685
-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."
+#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
+#: ../../include/text.php:971 ../../mod/editpost.php:109
+#: ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Speichern"
 
-#: ../../mod/admin.php:686
-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."
+#: ../../include/text.php:1020
+msgid "poke"
+msgstr "anstupsen"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: ../../include/text.php:1020
+msgid "poked"
+msgstr "stupste"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: ../../include/text.php:1021
+msgid "ping"
+msgstr "anpingen"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: ../../include/text.php:1021
+msgid "pinged"
+msgstr "pingte"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr "Bilder Proxy deaktivieren"
+#: ../../include/text.php:1022
+msgid "prod"
+msgstr "knuffen"
 
-#: ../../mod/admin.php:690
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
+#: ../../include/text.php:1022
+msgid "prodded"
+msgstr "knuffte"
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr "Den Old-Style Pager aktiviren"
+#: ../../include/text.php:1023
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: ../../mod/admin.php:691
-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."
+#: ../../include/text.php:1023
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: ../../mod/admin.php:692
-msgid "Only search in tags"
-msgstr "Nur in Tags suchen"
+#: ../../include/text.php:1024
+msgid "finger"
+msgstr "befummeln"
 
-#: ../../mod/admin.php:692
-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."
+#: ../../include/text.php:1024
+msgid "fingered"
+msgstr "befummelte"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr "Neue Basis-URL"
+#: ../../include/text.php:1025
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../include/text.php:1025
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: ../../mod/admin.php:719
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
+#: ../../include/text.php:1039
+msgid "happy"
+msgstr "glücklich"
 
-#: ../../mod/admin.php:722
-#, 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"
+#: ../../include/text.php:1040
+msgid "sad"
+msgstr "traurig"
 
-#: ../../mod/admin.php:734
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
+#: ../../include/text.php:1041
+msgid "mellow"
+msgstr "sanft"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: ../../include/text.php:1042
+msgid "tired"
+msgstr "müde"
 
-#: ../../mod/admin.php:741
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
+#: ../../include/text.php:1043
+msgid "perky"
+msgstr "frech"
 
-#: ../../mod/admin.php:743
-#, 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."
+#: ../../include/text.php:1044
+msgid "angry"
+msgstr "sauer"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: ../../include/text.php:1045
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr "Datenbank Struktur überprüfen"
+#: ../../include/text.php:1046
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: ../../include/text.php:1047
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../mod/admin.php:769
-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."
+#: ../../include/text.php:1048
+msgid "bitter"
+msgstr "verbittert"
 
-#: ../../mod/admin.php:770
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: ../../include/text.php:1049
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: ../../include/text.php:1050
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../mod/admin.php:803
-#, 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."
+#: ../../include/text.php:1051
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../mod/admin.php:806
-#, 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."
+#: ../../include/text.php:1052
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../mod/admin.php:838 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+#: ../../include/text.php:1053
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../mod/admin.php:850
-#, 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"
+#: ../../include/text.php:1054
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: ../../include/text.php:1055
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: ../../include/text.php:1056
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: ../../include/text.php:1057
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: ../../include/text.php:1058
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "Nutzer hinzufügen"
+#: ../../include/text.php:1228
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../include/text.php:1228
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../mod/admin.php:1001
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
-
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr "Nutzer wartet auf permanente Löschung"
-
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "Anfragedatum"
-
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
-#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-Mail"
+#: ../../include/text.php:1228
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: ../../include/text.php:1228
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "Verwehren"
+#: ../../include/text.php:1228
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../mod/admin.php:1010
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: ../../include/text.php:1228
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "Account ist abgelaufen"
+#: ../../include/text.php:1228
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../mod/admin.php:1014
-msgid "New User"
-msgstr "Neuer Nutzer"
+#: ../../include/text.php:1232
+msgid "January"
+msgstr "Januar"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: ../../include/text.php:1232
+msgid "February"
+msgstr "Februar"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../include/text.php:1232
+msgid "March"
+msgstr "März"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: ../../include/text.php:1232
+msgid "April"
+msgstr "April"
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "Gelöscht seit"
+#: ../../include/text.php:1232
+msgid "May"
+msgstr "Mai"
 
-#: ../../mod/admin.php:1016 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Nutzerkonto"
+#: ../../include/text.php:1232
+msgid "June"
+msgstr "Juni"
 
-#: ../../mod/admin.php:1018
-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?"
+#: ../../include/text.php:1232
+msgid "July"
+msgstr "Juli"
 
-#: ../../mod/admin.php:1019
-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?"
+#: ../../include/text.php:1232
+msgid "August"
+msgstr "August"
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "Name des neuen Nutzers"
+#: ../../include/text.php:1232
+msgid "September"
+msgstr "September"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname"
-msgstr "Spitzname"
+#: ../../include/text.php:1232
+msgid "October"
+msgstr "Oktober"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "Spitznamen für den neuen Nutzer"
+#: ../../include/text.php:1232
+msgid "November"
+msgstr "November"
 
-#: ../../mod/admin.php:1031
-msgid "Email address of the new user."
-msgstr "Email Adresse des neuen Nutzers"
+#: ../../include/text.php:1232
+msgid "December"
+msgstr "Dezember"
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: ../../include/text.php:1422 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Video ansehen"
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: ../../include/text.php:1454
+msgid "bytes"
+msgstr "Byte"
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "Ausschalten"
+#: ../../include/text.php:1478 ../../include/text.php:1490
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "Einschalten"
+#: ../../include/text.php:1664 ../../include/text.php:1674
+#: ../../mod/events.php:335
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../include/text.php:1731
+msgid "Select an alternate language"
+msgstr "Alternative Sprache auswählen"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "Autor:"
+#: ../../include/text.php:1987
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../include/text.php:1989 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../mod/content.php:605
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "Kommentar"
+msgstr[1] "Kommentare"
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: ../../include/text.php:1990
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: ../../include/text.php:2158
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
 
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "löschen"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: ../../mod/admin.php:1452
-msgid "Enable Debugging"
-msgstr "Protokoll führen"
+#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
+#: ../../include/bbcode.php:1067
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../include/bbcode.php:531
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
 
-#: ../../mod/admin.php:1453
+#: ../../include/bbcode.php:565
+#, php-format
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
 
-#: ../../mod/admin.php:1454
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "Schließen"
+#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "FTP Host"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: ../../mod/admin.php:1511
-msgid "FTP Path"
-msgstr "FTP Pfad"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "FTP Nutzername"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "FTP Passwort"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../include/oembed.php:213
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: ../../include/oembed.php:222
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "hinzufügen"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um Dich geht"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Neue"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Markierte"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: ../../mod/network.php:463
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Gruppe: "
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Freunde von %s"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Keine Freunde zum Anzeigen."
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../mod/events.php:335 ../../include/text.php:1647
-#: ../../include/text.php:1657
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Veranstaltungen"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorherige"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Nächste"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "Stunde:Minute"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Benötigt"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:289
+#: ../../include/user.php:293
+msgid "Friends"
+msgstr "Freunde"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschreibung"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Ort:"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Auswählen"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
+
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
+
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
+
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
+
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
+
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
+
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
+
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
+
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
+
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
+
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+
+#: ../../include/user.php:377
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
+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."
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1972
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "Kommentar"
-msgstr[1] "Kommentare"
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
 
-#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "mehr anzeigen"
+#: ../../include/user.php:413 ../../mod/admin.php:838
+#, php-format
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
+
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
+
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Dieser Beitrag wurde bearbeitet."
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
+#: ../../object/Item.php:116 ../../mod/photos.php:1359
+#: ../../mod/content.php:620
 msgid "Private Message"
 msgstr "Private Nachricht"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
+#: ../../object/Item.php:120 ../../mod/settings.php:681
+#: ../../mod/content.php:728
+msgid "Edit"
+msgstr "Bearbeiten"
+
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "In Ordner speichern"
+
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
+msgstr "markieren"
+
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
+msgstr "Markierung entfernen"
+
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "Markierung umschalten"
+
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
+msgstr "markiert"
+
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "Thread ignorieren"
+
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "Thread nicht mehr ignorieren"
+
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "Ignoriert-Status ein-/ausschalten"
+
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "Ignoriert"
+
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
+msgstr "Tag hinzufügen"
+
+#: ../../object/Item.php:231 ../../mod/photos.php:1542
+#: ../../mod/content.php:684
 msgid "I like this (toggle)"
 msgstr "Ich mag das (toggle)"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
+#: ../../object/Item.php:231 ../../mod/content.php:684
 msgid "like"
 msgstr "mag ich"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/photos.php:1543
+#: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
 msgstr "Ich mag das nicht (toggle)"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/content.php:685
 msgid "dislike"
 msgstr "mag ich nicht"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "Share this"
 msgstr "Weitersagen"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "share"
 msgstr "Teilen"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
+msgstr "zu"
+
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
+
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
+
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
+
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
+
+#: ../../object/Item.php:675 ../../mod/photos.php:1562
 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
+#: ../../mod/content.php:707
 msgid "This is you"
 msgstr "Das bist Du"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Kommentar"
-
-#: ../../mod/content.php:711 ../../object/Item.php:679
+#: ../../object/Item.php:679 ../../mod/content.php:711
 msgid "Bold"
 msgstr "Fett"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
+#: ../../object/Item.php:680 ../../mod/content.php:712
 msgid "Italic"
 msgstr "Kursiv"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
+#: ../../object/Item.php:681 ../../mod/content.php:713
 msgid "Underline"
 msgstr "Unterstrichen"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
+#: ../../object/Item.php:682 ../../mod/content.php:714
 msgid "Quote"
 msgstr "Zitat"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
+#: ../../object/Item.php:683 ../../mod/content.php:715
 msgid "Code"
 msgstr "Code"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
+#: ../../object/Item.php:684 ../../mod/content.php:716
 msgid "Image"
 msgstr "Bild"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
+#: ../../object/Item.php:685 ../../mod/content.php:717
 msgid "Link"
 msgstr "Link"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
+#: ../../object/Item.php:686 ../../mod/content.php:718
 msgid "Video"
 msgstr "Video"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Vorschau"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Bearbeiten"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "markieren"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "Markierung umschalten"
-
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "markiert"
-
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Konnte Deinen Heimatort nicht bestimmen."
 
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "zu"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: ../../mod/removeme.php:47
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
-
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "An:"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert."
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Tabelle konnte nicht angelegt werden."
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systemtest"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Gruppe speichern"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: ../../mod/group.php:194 ../../mod/contacts.php:586
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/delegate.php:132
 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."
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seitenmanager"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Entfernen"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Keine Einträge."
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:215
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Gefundene PHP Version:"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:214 ../../mod/contacts.php:455
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:731
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP CLI Binary"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:208
+#: ../../mod/contacts.php:525
+msgid "Hide this contact from others"
+msgstr "Verbirg diesen Kontakt von anderen"
 
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:212
+#: ../../mod/admin.php:1005
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Behauptet Dich zu kennen: "
 
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "nein"
 
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: ../../mod/notifications.php:182
+msgid ""
+"Shall your connection be bidirectional or not? \"Friend\" implies that you "
+"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
+"you allow to read but you do not want to read theirs. Approve as: "
+msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
 
-#: ../../mod/install.php:409
+#: ../../mod/notifications.php:185
 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."
+"Shall your connection be bidirectional or not? \"Friend\" implies that you "
+"allow to read and you subscribe to their posts. \"Sharer\" means that you "
+"allow to read but you do not want to read theirs. Approve as: "
+msgstr "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:"
 
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: ../../mod/notifications.php:193
+msgid "Friend"
+msgstr "Freund"
 
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: ../../mod/notifications.php:194
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: ../../mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fan/Verehrer"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
+#: ../../mod/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
+#: ../../mod/notifications.php:200
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
+#: ../../mod/notifications.php:221
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
+#: ../../mod/notifications.php:262 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:482
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: ../../mod/notifications.php:272 ../../mod/notifications.php:401
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:416
+#: ../../mod/notifications.php:507
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
+#: ../../mod/notifications.php:294 ../../mod/notifications.php:423
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: ../../mod/install.php:456
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
+#: ../../mod/notifications.php:295 ../../mod/notifications.php:424
+#: ../../mod/notifications.php:517
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: ../../mod/install.php:457
-msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
+#: ../../mod/notifications.php:310
+msgid "No more network notifications."
+msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: ../../mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
+#: ../../mod/notifications.php:340 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: ../../mod/notifications.php:344 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
+#: ../../mod/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Keine weiteren persönlichen Benachrichtigungen"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: ../../mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten."
+#: ../../mod/notifications.php:524
+msgid "No more home notifications."
+msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."
+#: ../../mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte Deinen Heimatort nicht bestimmen."
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Kein Profil"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: ../../mod/settings.php:34 ../../mod/photos.php:80
+msgid "everybody"
+msgstr "jeder"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+#: ../../mod/settings.php:41 ../../mod/admin.php:1016
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Hilfe:"
+#: ../../mod/settings.php:46
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Hilfe"
+#: ../../mod/settings.php:51
+msgid "Display"
+msgstr "Anzeige"
 
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: ../../mod/settings.php:57 ../../mod/settings.php:785
+msgid "Social Networks"
+msgstr "Soziale Netzwerke"
 
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
+#: ../../mod/admin.php:1155
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
+#: ../../mod/settings.php:72
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: ../../mod/home.php:35
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
+#: ../../mod/settings.php:77 ../../mod/uexport.php:85
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+#: ../../mod/settings.php:82
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+#: ../../mod/settings.php:134
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: ../../mod/wall_attach.php:81
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Die Datei ist größer als das erlaubte Limit von %d"
+#: ../../mod/settings.php:137 ../../mod/settings.php:645
+#: ../../mod/contacts.php:729
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: ../../mod/settings.php:243
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
-
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
-
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "ist interessiert an:"
-
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Verbinden"
-
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "Link"
-
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Nicht verfügbar."
-
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Gemeinschaft"
-
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:168 ../../mod/search.php:192
-msgid "No results."
-msgstr "Keine Ergebnisse."
-
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
-msgid "everybody"
-msgstr "jeder"
-
-#: ../../mod/settings.php:41
-msgid "Additional features"
-msgstr "Zusätzliche Features"
-
-#: ../../mod/settings.php:46
-msgid "Display"
-msgstr "Anzeige"
-
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
-msgid "Social Networks"
-msgstr "Soziale Netzwerke"
-
-#: ../../mod/settings.php:62 ../../include/nav.php:170
-msgid "Delegations"
-msgstr "Delegationen"
-
-#: ../../mod/settings.php:67
-msgid "Connected apps"
-msgstr "Verbundene Programme"
-
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
-
-#: ../../mod/settings.php:77
-msgid "Remove account"
-msgstr "Konto löschen"
-
-#: ../../mod/settings.php:129
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
-
-#: ../../mod/settings.php:238
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."
-
-#: ../../mod/settings.php:243
+#: ../../mod/settings.php:248
 msgid "Email settings updated."
 msgstr "E-Mail Einstellungen bearbeitet."
 
-#: ../../mod/settings.php:258
+#: ../../mod/settings.php:263
 msgid "Features updated"
 msgstr "Features aktualisiert"
 
-#: ../../mod/settings.php:321
+#: ../../mod/settings.php:326
 msgid "Relocate message has been send to your contacts"
 msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet."
 
-#: ../../mod/settings.php:335
+#: ../../mod/settings.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: ../../mod/settings.php:340
+#: ../../mod/settings.php:345
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: ../../mod/settings.php:348
+#: ../../mod/settings.php:353
 msgid "Wrong password."
 msgstr "Falsches Passwort."
 
-#: ../../mod/settings.php:359
+#: ../../mod/settings.php:364
 msgid "Password changed."
 msgstr "Passwort geändert."
 
-#: ../../mod/settings.php:361
+#: ../../mod/settings.php:366
 msgid "Password update failed. Please try again."
 msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:433
 msgid " Please use a shorter name."
 msgstr " Bitte verwende einen kürzeren Namen."
 
-#: ../../mod/settings.php:430
+#: ../../mod/settings.php:435
 msgid " Name too short."
 msgstr " Name ist zu kurz."
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:444
 msgid "Wrong Password"
 msgstr "Falsches Passwort"
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:449
 msgid " Not valid email."
 msgstr " Keine gültige E-Mail."
 
-#: ../../mod/settings.php:450
+#: ../../mod/settings.php:455
 msgid " Cannot change to that email."
 msgstr "Ändern der E-Mail nicht möglich. "
 
-#: ../../mod/settings.php:506
+#: ../../mod/settings.php:511
 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:510
+#: ../../mod/settings.php:515
 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:540
+#: ../../mod/settings.php:545
 msgid "Settings updated."
 msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:680
 msgid "Add application"
 msgstr "Programm hinzufügen"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:619 ../../mod/settings.php:729
+#: ../../mod/settings.php:803 ../../mod/settings.php:885
+#: ../../mod/settings.php:1118 ../../mod/admin.php:620
+#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
+
+#: ../../mod/settings.php:621 ../../mod/settings.php:647
+#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1029 ../../mod/crepair.php:165
+msgid "Name"
+msgstr "Name"
+
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
 msgid "Consumer Key"
 msgstr "Consumer Key"
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
 msgid "Consumer Secret"
 msgstr "Consumer Secret"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Redirect"
 msgstr "Umleiten"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Icon url"
 msgstr "Icon URL"
 
-#: ../../mod/settings.php:631
+#: ../../mod/settings.php:636
 msgid "You can't edit this application."
 msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:679
 msgid "Connected Apps"
 msgstr "Verbundene Programme"
 
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:683
 msgid "Client key starts with"
 msgstr "Anwenderschlüssel beginnt mit"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:684
 msgid "No name"
 msgstr "Kein Name"
 
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:685
 msgid "Remove authorization"
 msgstr "Autorisierung entziehen"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:697
 msgid "No Plugin settings configured"
 msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: ../../mod/settings.php:700
+#: ../../mod/settings.php:705
 msgid "Plugin Settings"
 msgstr "Plugin-Einstellungen"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "Off"
 msgstr "Aus"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "On"
 msgstr "An"
 
-#: ../../mod/settings.php:722
+#: ../../mod/settings.php:727
 msgid "Additional Features"
 msgstr "Zusätzliche Features"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 #, 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:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "enabled"
 msgstr "eingeschaltet"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "disabled"
 msgstr "ausgeschaltet"
 
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:742
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:778
 msgid "Email access is disabled on this site."
 msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:790
 msgid "Email/Mailbox Setup"
 msgstr "E-Mail/Postfach-Einstellungen"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:791
 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:787
+#: ../../mod/settings.php:792
 msgid "Last successful email check:"
 msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:794
 msgid "IMAP server name:"
 msgstr "IMAP-Server-Name:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:795
 msgid "IMAP port:"
 msgstr "IMAP-Port:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:796
 msgid "Security:"
 msgstr "Sicherheit:"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
+#: ../../mod/settings.php:796 ../../mod/settings.php:801
 msgid "None"
 msgstr "Keine"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:797
 msgid "Email login name:"
 msgstr "E-Mail-Login-Name:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:798
 msgid "Email password:"
 msgstr "E-Mail-Passwort:"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:799
 msgid "Reply-to address:"
 msgstr "Reply-to Adresse:"
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:800
 msgid "Send public posts to all email contacts:"
 msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Action after import:"
 msgstr "Aktion nach Import:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Mark as seen"
 msgstr "Als gelesen markieren"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Move to folder"
 msgstr "In einen Ordner verschieben"
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:802
 msgid "Move to folder:"
 msgstr "In diesen Ordner verschieben:"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:833 ../../mod/admin.php:545
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+
+#: ../../mod/settings.php:883
 msgid "Display Settings"
 msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:899
+#: ../../mod/settings.php:889 ../../mod/settings.php:904
 msgid "Display Theme:"
 msgstr "Theme:"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:890
 msgid "Mobile Theme:"
 msgstr "Mobiles Theme"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Update browser every xx seconds"
 msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Minimal 10 Sekunden, kein Maximum"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:892
 msgid "Number of items to display per page:"
 msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
+#: ../../mod/settings.php:892 ../../mod/settings.php:893
 msgid "Maximum of 100 items"
 msgstr "Maximal 100 Beiträge"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:893
 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:889
+#: ../../mod/settings.php:894
 msgid "Don't show emoticons"
 msgstr "Keine Smilies anzeigen"
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:895
 msgid "Don't show notices"
 msgstr "Info-Popups nicht anzeigen"
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:896
 msgid "Infinite scroll"
 msgstr "Endloses Scrollen"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:897
 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:969
+#: ../../mod/settings.php:974
 msgid "User Types"
 msgstr "Nutzer Art"
 
-#: ../../mod/settings.php:970
+#: ../../mod/settings.php:975
 msgid "Community Types"
 msgstr "Gemeinschafts Art"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:976
 msgid "Normal Account Page"
 msgstr "Normales Konto"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:977
 msgid "This account is a normal personal profile"
 msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:980
 msgid "Soapbox Page"
 msgstr "Marktschreier-Konto"
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:981
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: ../../mod/settings.php:979
+#: ../../mod/settings.php:984
 msgid "Community Forum/Celebrity Account"
 msgstr "Forum/Promi-Konto"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:985
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:988
 msgid "Automatic Friend Page"
 msgstr "Automatische Freunde Seite"
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:989
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:992
 msgid "Private Forum [Experimental]"
 msgstr "Privates Forum [Versuchsstadium]"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:993
 msgid "Private forum - approved members only"
 msgstr "Privates Forum, nur für Mitglieder"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 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:1010
+#: ../../mod/settings.php:1015
 msgid "Publish your default profile in your local site directory?"
 msgstr "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:661
-#: ../../mod/profiles.php:665 ../../mod/api.php:106
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1021
+#: ../../mod/settings.php:1029 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1038 ../../mod/settings.php:1044
+#: ../../mod/settings.php:1050 ../../mod/settings.php:1056
+#: ../../mod/settings.php:1086 ../../mod/settings.php:1087
+#: ../../mod/settings.php:1088 ../../mod/settings.php:1089
+#: ../../mod/settings.php:1090 ../../mod/register.php:234
+#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106
+#: ../../mod/profiles.php:661 ../../mod/profiles.php:665
 msgid "No"
 msgstr "Nein"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1021
 msgid "Publish your default profile in the global social directory?"
 msgstr "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1029
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
-
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033
 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:1033
+#: ../../mod/settings.php:1038
 msgid "Allow friends to post to your profile page?"
 msgstr "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?"
 
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1044
 msgid "Allow friends to tag your posts?"
 msgstr "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?"
 
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1050
 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:1051
+#: ../../mod/settings.php:1056
 msgid "Permit unknown people to send you private mail?"
 msgstr "Dürfen Dir Unbekannte private Nachrichten schicken?"
 
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1064
 msgid "Profile is <strong>not published</strong>."
 msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "oder"
+
+#: ../../mod/settings.php:1072
 msgid "Your Identity Address is"
 msgstr "Die Adresse Deines Profils lautet:"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 msgid "Automatically expire posts after this many days:"
 msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 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:1079
+#: ../../mod/settings.php:1084
 msgid "Advanced expiration settings"
 msgstr "Erweiterte Verfallseinstellungen"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1085
 msgid "Advanced Expiration"
 msgstr "Erweitertes Verfallen"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1086
 msgid "Expire posts:"
 msgstr "Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1087
 msgid "Expire personal notes:"
 msgstr "Persönliche Notizen verfallen lassen:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1088
 msgid "Expire starred posts:"
 msgstr "Markierte Beiträge verfallen lassen:"
 
-#: ../../mod/settings.php:1084
+#: ../../mod/settings.php:1089
 msgid "Expire photos:"
 msgstr "Fotos verfallen lassen:"
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1090
 msgid "Only expire posts by others:"
 msgstr "Nur Beiträge anderer verfallen:"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1116
 msgid "Account Settings"
 msgstr "Kontoeinstellungen"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1124
 msgid "Password Settings"
 msgstr "Passwort-Einstellungen"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1125
 msgid "New Password:"
 msgstr "Neues Passwort:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Confirm:"
 msgstr "Bestätigen:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Leave password fields blank unless changing"
 msgstr "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1127
 msgid "Current Password:"
 msgstr "Aktuelles Passwort:"
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
 msgid "Your current password to confirm the changes"
 msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1128
 msgid "Password:"
 msgstr "Passwort:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1132
 msgid "Basic Settings"
 msgstr "Grundeinstellungen"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Kompletter Name:"
-
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1134
 msgid "Email Address:"
 msgstr "E-Mail-Adresse:"
 
-#: ../../mod/settings.php:1130
+#: ../../mod/settings.php:1135
 msgid "Your Timezone:"
 msgstr "Deine Zeitzone:"
 
-#: ../../mod/settings.php:1131
+#: ../../mod/settings.php:1136
 msgid "Default Post Location:"
 msgstr "Standardstandort:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1137
 msgid "Use Browser Location:"
 msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1140
 msgid "Security and Privacy Settings"
 msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1142
 msgid "Maximum Friend Requests/Day:"
 msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
 msgid "(to prevent spam abuse)"
 msgstr "(um SPAM zu vermeiden)"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1143
 msgid "Default Post Permissions"
 msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1144
 msgid "(click to open/close)"
 msgstr "(klicke zum öffnen/schließen)"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Zeige den Gruppen"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Zeige den Kontakten"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1155
 msgid "Default Private Post"
 msgstr "Privater Standardbeitrag"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1156
 msgid "Default Public Post"
 msgstr "Öffentlicher Standardbeitrag"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1160
 msgid "Default Permissions for New Posts"
 msgstr "Standardberechtigungen für neue Beiträge"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1172
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1175
 msgid "Notification Settings"
 msgstr "Benachrichtigungseinstellungen"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1176
 msgid "By default post a status message when:"
 msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1177
 msgid "accepting a friend request"
 msgstr "– Du eine Kontaktanfrage akzeptierst"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1178
 msgid "joining a forum/community"
 msgstr "– Du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1179
 msgid "making an <em>interesting</em> profile change"
 msgstr "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1180
 msgid "Send a notification email when:"
 msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1181
 msgid "You receive an introduction"
 msgstr "– Du eine Kontaktanfrage erhältst"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1182
 msgid "Your introductions are confirmed"
 msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1183
 msgid "Someone writes on your profile wall"
 msgstr "– jemand etwas auf Deine Pinnwand schreibt"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1184
 msgid "Someone writes a followup comment"
 msgstr "– jemand auch einen Kommentar verfasst"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1185
 msgid "You receive a private message"
 msgstr "– Du eine private Nachricht erhältst"
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1186
 msgid "You receive a friend suggestion"
 msgstr "– Du eine Empfehlung erhältst"
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1187
 msgid "You are tagged in a post"
 msgstr "– Du in einem Beitrag erwähnt wirst"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1188
 msgid "You are poked/prodded/etc. in a post"
 msgstr "– Du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: ../../mod/settings.php:1185
+#: ../../mod/settings.php:1190
 msgid "Text-only notification emails"
 msgstr "Benachrichtigungs E-Mail als Rein-Text."
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1192
 msgid "Send text only notification emails, without the html part"
 msgstr "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil"
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1194
 msgid "Advanced Account/Page Type Settings"
 msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1195
 msgid "Change the behaviour of this account for special situations"
 msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: ../../mod/settings.php:1193
+#: ../../mod/settings.php:1198
 msgid "Relocate"
 msgstr "Umziehen"
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1199
 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:1195
+#: ../../mod/settings.php:1200
 msgid "Resend relocate message to contacts"
 msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gemeinsame Freunde"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#: ../../mod/contacts.php:112
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
-msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d Kontakt bearbeitet."
+msgstr[1] "%d Kontakte bearbeitet"
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: ../../mod/contacts.php:143 ../../mod/contacts.php:276
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: ../../mod/contacts.php:157
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: ../../mod/contacts.php:190
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
+#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: ../../mod/contacts.php:291
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: ../../mod/contacts.php:291
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: ../../mod/contacts.php:302
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail-Adresse."
+#: ../../mod/contacts.php:302
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: ../../mod/contacts.php:314
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden."
+#: ../../mod/contacts.php:314
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Du hast Dich hier bereits vorgestellt."
+#: ../../mod/contacts.php:339 ../../mod/contacts.php:727
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest Du wirklich diesen Kontakt löschen?"
 
-#: ../../mod/dfrn_request.php:480
+#: ../../mod/contacts.php:356
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
+
+#: ../../mod/contacts.php:394
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist."
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: ../../mod/contacts.php:403
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: ../../mod/contacts.php:423
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
+#: ../../mod/contacts.php:426 ../../mod/admin.php:569
+msgid "Never"
+msgstr "Niemals"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
+#: ../../mod/contacts.php:430
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: ../../mod/contacts.php:430
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: ../../mod/contacts.php:432
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/contacts.php:436
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Bestätigen"
+#: ../../mod/contacts.php:444
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1009
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://Dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
+msgid "Block"
+msgstr "Sperren"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Freundschafts-/Kontaktanfrage"
+#: ../../mod/contacts.php:452
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:519
+#: ../../mod/contacts.php:731
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Bitte beantworte folgendes:"
+#: ../../mod/contacts.php:458
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s Dich?"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/contacts.php:465
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/contacts.php:468
+msgid "Repair"
+msgstr "Reparieren"
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
+#: ../../mod/contacts.php:471
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Adresse Deines Profils:"
+#: ../../mod/contacts.php:477
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: ../../mod/contacts.php:480
+msgid "Fetch further information for feeds"
+msgstr "Weitere Informationen zu Feeds holen"
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
+#: ../../mod/contacts.php:481
+msgid "Disabled"
+msgstr "Deaktiviert"
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
+#: ../../mod/contacts.php:481
+msgid "Fetch information"
+msgstr "Beziehe Information"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: ../../mod/contacts.php:481
+msgid "Fetch information and keywords"
+msgstr "Beziehe Information und Schlüsselworte"
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: ../../mod/contacts.php:490
+msgid "Contact Editor"
+msgstr "Kontakt Editor"
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
+#: ../../mod/contacts.php:493
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: ../../mod/register.php:214
+#: ../../mod/contacts.php:494
+#, php-format
 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."
+"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/register.php:215
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
+#: ../../mod/contacts.php:495
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: ../../mod/contacts.php:496
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:695
+#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: ../../mod/contacts.php:502
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "ID Deiner Einladung: "
+#: ../../mod/contacts.php:503
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vollständiger Name (z.B. Max Mustermann): "
+#: ../../mod/contacts.php:504
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: ../../mod/contacts.php:505
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
+#: ../../mod/contacts.php:507
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: ../../mod/contacts.php:511
+msgid "Last update:"
+msgstr "Letzte Aktualisierung: "
 
-#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109
-msgid "Register"
-msgstr "Registrieren"
+#: ../../mod/contacts.php:513
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../mod/contacts.php:515 ../../mod/admin.php:1503
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Importiere Dein Profil auf diese Friendica Instanz"
+#: ../../mod/contacts.php:522
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: ../../mod/contacts.php:523
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../mod/search.php:99 ../../include/text.php:953
-#: ../../include/text.php:954 ../../include/nav.php:119
-msgid "Search"
-msgstr "Suche"
+#: ../../mod/contacts.php:524
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: ../../mod/contacts.php:525
+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/directory.php:59
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: ../../mod/contacts.php:526
+msgid "Notification for new posts"
+msgstr "Benachrichtigung bei neuen Beiträgen"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: ../../mod/contacts.php:526
+msgid "Send a notification of every new post of this contact"
+msgstr "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt."
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:750
-msgid "Age: "
-msgstr "Alter: "
+#: ../../mod/contacts.php:529
+msgid "Blacklisted keywords"
+msgstr "Blacklistete Schlüsselworte "
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/contacts.php:529
+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/directory.php:138 ../../boot.php:1650
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../mod/contacts.php:580
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../mod/directory.php:140 ../../boot.php:1653
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/contacts.php:583
+msgid "Suggest potential friends"
+msgstr "Freunde vorschlagen"
 
-#: ../../mod/directory.php:142 ../../boot.php:1655
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/contacts.php:589
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../mod/directory.php:144 ../../boot.php:1657
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "Über:"
+#: ../../mod/contacts.php:592
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: ../../mod/contacts.php:595
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
+#: ../../mod/contacts.php:599
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:170
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: ../../mod/contacts.php:602
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!"
+#: ../../mod/contacts.php:606
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seitenmanager"
+#: ../../mod/contacts.php:609
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
+#: ../../mod/contacts.php:613
+msgid "Archived"
+msgstr "Archiviert"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
+#: ../../mod/contacts.php:616
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Hinzufügen"
+#: ../../mod/contacts.php:620
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Keine Einträge."
+#: ../../mod/contacts.php:623
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Gemeinsame Freunde"
+#: ../../mod/contacts.php:671
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: ../../mod/contacts.php:675
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
+
+#: ../../mod/contacts.php:679
+msgid "you are a fan of"
+msgstr "Du bist Fan von"
+
+#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
+
+#: ../../mod/contacts.php:722
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
+
+#: ../../mod/contacts.php:723 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Funde: "
+
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt."
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Oder - hast Du versucht, eine leere Datei hochzuladen?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Die Datei ist größer als das erlaubte Limit von %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
+
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:25
+#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
 #: ../../mod/uexport.php:77
 msgid "Export account"
@@ -4658,3236 +4558,3388 @@ msgid ""
 "of your account (photos are not exported)"
 msgstr "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert)."
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: ../../mod/register.php:96
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern."
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal."
 
-#: ../../mod/suggest.php:74
+#: ../../mod/register.php:214
 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."
+"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/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus."
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "ID Deiner Einladung: "
 
-#: ../../mod/profiles.php:189
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: ../../mod/register.php:255 ../../mod/admin.php:621
+msgid "Registration"
+msgstr "Registrierung"
 
-#: ../../mod/profiles.php:340
-msgid "Marital Status"
-msgstr "Familienstand"
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vollständiger Name (z.B. Max Mustermann): "
 
-#: ../../mod/profiles.php:344
-msgid "Romantic Partner"
-msgstr "Romanze"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "Likes"
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@$sitename</strong>' sein."
 
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "Dislikes"
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: ../../mod/profiles.php:356
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../mod/profiles.php:359
-msgid "Religion"
-msgstr "Religion"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importiere Dein Profil auf diese Friendica Instanz"
 
-#: ../../mod/profiles.php:363
-msgid "Political Views"
-msgstr "Politische Ansichten"
-
-#: ../../mod/profiles.php:367
-msgid "Gender"
-msgstr "Geschlecht"
-
-#: ../../mod/profiles.php:371
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: ../../mod/profiles.php:375
-msgid "Homepage"
-msgstr "Webseite"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
-msgid "Interests"
-msgstr "Interessen"
+#: ../../mod/profile.php:155 ../../mod/display.php:332
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: ../../mod/profiles.php:383
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
-msgid "Location"
-msgstr "Wohnort"
+#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/search.php:89 ../../mod/community.php:18
+#: ../../mod/display.php:212 ../../mod/directory.php:33
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: ../../mod/profiles.php:473
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Keine Videos  ausgewählt"
 
-#: ../../mod/profiles.php:568
-msgid " and "
-msgstr " und "
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: ../../mod/profiles.php:576
-msgid "public profile"
-msgstr "öffentliches Profil"
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: ../../mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Neueste Videos"
 
-#: ../../mod/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Neues Video hochladen"
 
-#: ../../mod/profiles.php:583
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: ../../mod/profiles.php:658
-msgid "Hide contacts and friends:"
-msgstr "Kontakte und Freunde verbergen"
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast."
 
-#: ../../mod/profiles.php:663
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten aus: "
 
-#: ../../mod/profiles.php:685
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: ../../mod/profiles.php:687
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: ../../mod/profiles.php:688
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personensuche"
 
-#: ../../mod/profiles.php:689
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: ../../mod/profiles.php:690
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: ../../mod/profiles.php:691
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: ../../mod/profiles.php:692
-msgid "Basic information"
-msgstr "Grundinformationen"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Bitte melde Dich an."
 
-#: ../../mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Profilbild"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: ../../mod/profiles.php:695
-msgid "Preferences"
-msgstr "Vorlieben"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung."
 
-#: ../../mod/profiles.php:696
-msgid "Status information"
-msgstr "Status Informationen"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: ../../mod/profiles.php:697
-msgid "Additional information"
-msgstr "Zusätzliche Informationen"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse."
 
-#: ../../mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Profilname:"
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden"
+msgstr[1] "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden"
 
-#: ../../mod/profiles.php:701
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: ../../mod/profiles.php:704
+#: ../../mod/dfrn_request.php:267
 #, php-format
-msgid "Birthday (%s):"
-msgstr "Geburtstag (%s):"
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
 
-#: ../../mod/profiles.php:705
-msgid "Street Address:"
-msgstr "Adresse:"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: ../../mod/profiles.php:706
-msgid "Locality/City:"
-msgstr "Wohnort:"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: ../../mod/profiles.php:707
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: ../../mod/profiles.php:708
-msgid "Country:"
-msgstr "Land:"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail-Adresse."
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Konnte Deinen Namen an der angegebenen Stelle nicht finden."
 
-#: ../../mod/profiles.php:711
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Du hast Dich hier bereits vorgestellt."
 
-#: ../../mod/profiles.php:712
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob Du bereits mit %s befreundet bist."
 
-#: ../../mod/profiles.php:713
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen."
 
-#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Heimatort:"
-
-#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an."
 
-#: ../../mod/profiles.php:718
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: ../../mod/profiles.php:719
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige Deine Kontaktanfrage bei %s."
 
-#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Likes:"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:"
 
-#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://Dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Freundschafts-/Kontaktanfrage"
 
-#: ../../mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Bitte beantworte folgendes:"
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von Dir …"
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Kennt %s Dich?"
 
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/profiles.php:729
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste."
 
-#: ../../mod/profiles.php:730
-msgid "Books, literature"
-msgstr "Bücher, Literatur"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Adresse Deines Profils:"
 
-#: ../../mod/profiles.php:731
-msgid "Television"
-msgstr "Fernsehen"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: ../../mod/profiles.php:732
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Dateien"
 
-#: ../../mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Liebe/Romantik"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: ../../mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Arbeit/Anstellung"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: ../../mod/profiles.php:735
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde Dich an um fortzufahren."
 
-#: ../../mod/profiles.php:740
+#: ../../mod/api.php:104
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
 
-#: ../../mod/profiles.php:803
-msgid "Edit/Manage Profiles"
-msgstr "Bearbeite/Verwalte Profile"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest Du wirklich diese Empfehlung löschen?"
 
-#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
 
-#: ../../mod/profiles.php:805 ../../boot.php:1612
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: ../../mod/profiles.php:816 ../../boot.php:1622
-msgid "Profile Image"
-msgstr "Profilbild"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: ../../mod/profiles.php:818 ../../boot.php:1625
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
 
-#: ../../mod/profiles.php:819 ../../boot.php:1626
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "Link"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "Datei anhängen"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "Weblink"
+#: ../../mod/admin.php:104 ../../mod/admin.php:619
+msgid "Site"
+msgstr "Seite"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
+msgid "Users"
+msgstr "Nutzer"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "Video-Link"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
+msgid "Themes"
+msgstr "Themen"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "Audio-Link"
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr "Adresse untersuchen"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "Ort setzen"
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr "Webfinger überprüfen"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: ../../mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "Ort löschen"
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr "Diagnose"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: ../../mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: ../../mod/admin.php:193 ../../mod/admin.php:952
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: ../../mod/admin.php:194 ../../mod/admin.php:953
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Titel setzen"
+#: ../../mod/admin.php:195 ../../mod/admin.php:954
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: ../../mod/admin.php:196 ../../mod/admin.php:955
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: ../../mod/admin.php:197
+msgid "Blog Account"
+msgstr "Blog-Konto"
 
-#: ../../mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: ../../mod/admin.php:198
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: ../../mod/friendica.php:60
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: ../../mod/admin.php:217
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: ../../mod/friendica.php:62
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
+#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
+#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
+#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: ../../mod/admin.php:223
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
+#: ../../mod/admin.php:225
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: ../../mod/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps"
+#: ../../mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: ../../mod/admin.php:228
+msgid "Version"
+msgstr "Version"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: ../../mod/admin.php:232
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: ../../mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde Dich an um fortzufahren."
+#: ../../mod/admin.php:516
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?"
+#: ../../mod/admin.php:562
+msgid "No community page"
+msgstr "Keine Gemeinschaftsseite"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: ../../mod/admin.php:563
+msgid "Public postings from users of this site"
+msgstr "Öffentliche Beiträge von Nutzer_innen dieser Seite"
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../mod/admin.php:564
+msgid "Global community page"
+msgstr "Globale Gemeinschaftsseite"
 
-#: ../../mod/notes.php:44 ../../boot.php:2150
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/admin.php:570
+msgid "At post arrival"
+msgstr "Beim Empfang von Nachrichten"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: ../../mod/admin.php:579
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: ../../mod/admin.php:602
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
+#: ../../mod/admin.php:603
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: ../../mod/admin.php:604
+msgid "Open"
+msgstr "Offen"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+#: ../../mod/admin.php:608
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+#: ../../mod/admin.php:609
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle Deine Zeitzone:"
+#: ../../mod/admin.php:610
+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/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen"
+#: ../../mod/admin.php:622
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
+#: ../../mod/admin.php:623
+msgid "Policies"
+msgstr "Regeln"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
+#: ../../mod/admin.php:624
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst Du mit dem Empfänger machen:"
+#: ../../mod/admin.php:625
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
+#: ../../mod/admin.php:626
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen."
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: ../../mod/admin.php:629
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+#: ../../mod/admin.php:630
+msgid "Host name"
+msgstr "Host Name"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
+#: ../../mod/admin.php:631
+msgid "Sender Email"
+msgstr "Absender für Emails"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: ../../mod/admin.php:632
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: ../../mod/admin.php:633
+msgid "Shortcut icon"
+msgstr "Shortcut Icon"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: ../../mod/admin.php:634
+msgid "Touch icon"
+msgstr "Touch Icon"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: ../../mod/admin.php:635
+msgid "Additional Info"
+msgstr "Zusätzliche Informationen"
 
-#: ../../mod/invite.php:120
-#, php-format
+#: ../../mod/admin.php:635
 msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf Dir.friendica.com/siteinfo angezeigt werden."
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
+#: ../../mod/admin.php:636
+msgid "System language"
+msgstr "Systemsprache"
 
-#: ../../mod/invite.php:123
-#, php-format
+#: ../../mod/admin.php:637
+msgid "System theme"
+msgstr "Systemweites Theme"
+
+#: ../../mod/admin.php:637
 msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
+"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/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
+#: ../../mod/admin.php:638
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Theme"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: ../../mod/admin.php:638
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: ../../mod/admin.php:639
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: ../../mod/admin.php:639
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: ../../mod/admin.php:640
+msgid "Force SSL"
+msgstr "Erzwinge SSL"
 
-#: ../../mod/invite.php:137
+#: ../../mod/admin.php:640
 msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
+"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/invite.php:139
-msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
+#: ../../mod/admin.php:641
+msgid "Old style 'Share'"
+msgstr "Altes \"Teilen\" Element"
 
-#: ../../mod/photos.php:52 ../../boot.php:2129
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../mod/admin.php:641
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen."
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
+#: ../../mod/admin.php:642
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: ../../mod/admin.php:642
+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/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: ../../mod/admin.php:643
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: ../../mod/admin.php:643
+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/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Album löschen"
+#: ../../mod/admin.php:644
+msgid "Maximum image size"
+msgstr "Maximale Bildgröße"
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
+#: ../../mod/admin.php:644
+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/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: ../../mod/admin.php:645
+msgid "Maximum image length"
+msgstr "Maximale Bildlänge"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest Du wirklich dieses Foto löschen?"
+#: ../../mod/admin.php:645
+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/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: ../../mod/admin.php:646
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "einem Foto"
+#: ../../mod/admin.php:646
+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/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "Die Bildgröße übersteigt das Limit von "
+#: ../../mod/admin.php:648
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../mod/admin.php:649
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Registrierungen"
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: ../../mod/admin.php:649
+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/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
+#: ../../mod/admin.php:650
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: ../../mod/admin.php:650
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: ../../mod/admin.php:651
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: ../../mod/admin.php:651
+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/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: ../../mod/admin.php:652
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../mod/admin.php:652
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: ../../mod/admin.php:653
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: ../../mod/admin.php:653
+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/photos.php:1212
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: ../../mod/admin.php:654
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: ../../mod/admin.php:654
+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/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: ../../mod/admin.php:655
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: ../../mod/admin.php:655
+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/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: ../../mod/admin.php:656
+msgid "Global directory update URL"
+msgstr "URL für Updates beim weltweiten Verzeichnis"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: ../../mod/admin.php:656
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: ../../mod/admin.php:657
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: ../../mod/admin.php:657
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: ../../mod/admin.php:658
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: ../../mod/admin.php:658
+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/photos.php:1457
-msgid "Tags: "
-msgstr "Tags: "
+#: ../../mod/admin.php:659
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: ../../mod/admin.php:659
+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/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: ../../mod/admin.php:660
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten."
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: ../../mod/admin.php:660
+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/photos.php:1503
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: ../../mod/admin.php:661
+msgid "Don't embed private images in posts"
+msgstr "Private Bilder nicht in Beiträgen einbetten."
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: ../../mod/admin.php:661
+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/photos.php:1508
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: ../../mod/admin.php:662
+msgid "Allow Users to set remote_self"
+msgstr "Nutzern erlauben das remote_self Flag zu setzen"
 
-#: ../../mod/photos.php:1512
+#: ../../mod/admin.php:662
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"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/photos.php:1521
-msgid "Private photo"
-msgstr "Privates Foto"
+#: ../../mod/admin.php:663
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: ../../mod/admin.php:663
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Teilen"
+#: ../../mod/admin.php:664
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: ../../mod/admin.php:664
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: ../../mod/admin.php:665
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: ../../mod/admin.php:665
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden."
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Bitte melde Dich an."
+#: ../../mod/admin.php:666
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Account umziehen"
+#: ../../mod/admin.php:666
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: ../../mod/admin.php:667
+msgid "Community Page Style"
+msgstr "Art der Gemeinschaftsseite"
 
-#: ../../mod/uimport.php:68
+#: ../../mod/admin.php:667
 msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."
+"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/uimport.php:69
+#: ../../mod/admin.php:668
+msgid "Posts per user on community page"
+msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite"
+
+#: ../../mod/admin.php:668
 msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
+"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/uimport.php:70
-msgid "Account file"
-msgstr "Account Datei"
+#: ../../mod/admin.php:669
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: ../../mod/uimport.php:70
+#: ../../mod/admin.php:669
 msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
+"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/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: ../../mod/admin.php:670
+msgid "OStatus conversation completion interval"
+msgstr "Intervall zum Vervollständigen von OStatus Unterhaltungen"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: ../../mod/admin.php:670
+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."
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
+#: ../../mod/admin.php:671
+msgid "Enable Diaspora support"
+msgstr "Diaspora-Support aktivieren"
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "weniger anzeigen"
+#: ../../mod/admin.php:671
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: ../../boot.php:1122
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+#: ../../mod/admin.php:672
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: ../../boot.php:1240
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
+#: ../../mod/admin.php:672
+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."
 
-#: ../../boot.php:1265 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Abmelden"
+#: ../../mod/admin.php:673
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: ../../boot.php:1268
-msgid "Nickname or Email address: "
-msgstr "Spitzname oder E-Mail-Adresse: "
+#: ../../mod/admin.php:673
+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."
 
-#: ../../boot.php:1269
-msgid "Password: "
-msgstr "Passwort: "
+#: ../../mod/admin.php:674
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: ../../boot.php:1270
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
+#: ../../mod/admin.php:675
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../boot.php:1273
-msgid "Or login using OpenID: "
-msgstr "Oder melde Dich mit Deiner OpenID an: "
+#: ../../mod/admin.php:676
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: ../../boot.php:1279
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
+#: ../../mod/admin.php:676
+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)."
 
-#: ../../boot.php:1282
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
+#: ../../mod/admin.php:677
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
 
-#: ../../boot.php:1283
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
+#: ../../mod/admin.php:677
+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."
 
-#: ../../boot.php:1285
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
+#: ../../mod/admin.php:678
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../boot.php:1286
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
+#: ../../mod/admin.php:678
+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."
 
-#: ../../boot.php:1419
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../mod/admin.php:679
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: ../../boot.php:1501 ../../boot.php:1635
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: ../../mod/admin.php:679
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../boot.php:1600
-msgid "Message"
-msgstr "Nachricht"
+#: ../../mod/admin.php:681
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
 
-#: ../../boot.php:1606 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "Profile"
+#: ../../mod/admin.php:681
+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."
 
-#: ../../boot.php:1606
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: ../../mod/admin.php:682
+msgid "Suppress Language"
+msgstr "Sprachinformation unterdrücken"
 
-#: ../../boot.php:1706
-msgid "Network:"
-msgstr "Netzwerk"
+#: ../../mod/admin.php:682
+msgid "Suppress language information in meta information about a posting."
+msgstr "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags."
 
-#: ../../boot.php:1736 ../../boot.php:1822
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: ../../mod/admin.php:683
+msgid "Suppress Tags"
+msgstr "Tags Unterdrücken"
 
-#: ../../boot.php:1737 ../../boot.php:1823
-msgid "F d"
-msgstr "d. F"
+#: ../../mod/admin.php:683
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags."
 
-#: ../../boot.php:1782 ../../boot.php:1863
-msgid "[today]"
-msgstr "[heute]"
+#: ../../mod/admin.php:684
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: ../../boot.php:1794
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: ../../mod/admin.php:685
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: ../../boot.php:1795
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: ../../mod/admin.php:685
+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."
 
-#: ../../boot.php:1856
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: ../../mod/admin.php:686
+msgid "Maximum numbers of comments per post"
+msgstr "Maximale Anzahl von Kommentaren pro Beitrag"
 
-#: ../../boot.php:1874
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: ../../mod/admin.php:686
+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."
 
-#: ../../boot.php:1875
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: ../../mod/admin.php:687
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
 
-#: ../../boot.php:2112 ../../include/nav.php:76
-msgid "Status"
-msgstr "Status"
+#: ../../mod/admin.php:688
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: ../../boot.php:2115
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../mod/admin.php:689
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: ../../boot.php:2122
-msgid "Profile Details"
-msgstr "Profildetails"
+#: ../../mod/admin.php:690
+msgid "Disable picture proxy"
+msgstr "Bilder Proxy deaktivieren"
 
-#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Videos"
+#: ../../mod/admin.php:690
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen."
 
-#: ../../boot.php:2146
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: ../../mod/admin.php:691
+msgid "Enable old style pager"
+msgstr "Den Old-Style Pager aktiviren"
 
-#: ../../boot.php:2153
-msgid "Only You Can See This"
-msgstr "Nur Du kannst das sehen"
+#: ../../mod/admin.php:691
+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."
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Dieser Beitrag wurde bearbeitet."
+#: ../../mod/admin.php:692
+msgid "Only search in tags"
+msgstr "Nur in Tags suchen"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "Thread ignorieren"
+#: ../../mod/admin.php:692
+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."
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "Thread nicht mehr ignorieren"
+#: ../../mod/admin.php:694
+msgid "New base url"
+msgstr "Neue Basis-URL"
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: ../../mod/admin.php:711
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "Ignoriert"
+#: ../../mod/admin.php:719
+#, php-format
+msgid "Database structure update %s was successfully applied."
+msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt."
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Kategorien:"
+#: ../../mod/admin.php:722
+#, 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"
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: ../../mod/admin.php:734
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s"
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/admin.php:737
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: ../../include/dbstructure.php:26
+#: ../../mod/admin.php:741
 #, 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."
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/admin.php:743
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Die Fehlermeldung lautet\n[pre]%s[/pre]"
+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."
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: ../../mod/admin.php:762
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten."
+#: ../../mod/admin.php:763
+msgid "Check database structure"
+msgstr "Datenbank Struktur überprüfen"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: ../../mod/admin.php:768
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: ../../include/auth.php:128 ../../include/user.php:67
+#: ../../mod/admin.php:769
 msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast."
-
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
-
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+"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."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: ../../mod/admin.php:770
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: ../../mod/admin.php:771
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: ../../include/contact_widgets.php:24
+#: ../../mod/admin.php:803
 #, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
-
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Leute finden"
-
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+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."
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: ../../mod/admin.php:806
+#, 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."
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: ../../mod/admin.php:850
+#, 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"
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: ../../mod/admin.php:857
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: ../../mod/admin.php:896
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Netzwerke"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: ../../mod/admin.php:999
+msgid "Add User"
+msgstr "Nutzer hinzufügen"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
+#: ../../mod/admin.php:1000
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Alles"
+#: ../../mod/admin.php:1001
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf Deine Bestätigung warten"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Kategorien"
+#: ../../mod/admin.php:1002
+msgid "User waiting for permanent deletion"
+msgstr "Nutzer wartet auf permanente Löschung"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Features"
+#: ../../mod/admin.php:1003
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
+#: ../../mod/admin.php:1004
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
+#: ../../mod/admin.php:1006
+msgid "Deny"
+msgstr "Verwehren"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
+#: ../../mod/admin.php:1010
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Web-Editor"
+#: ../../mod/admin.php:1011
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
+#: ../../mod/admin.php:1014
+msgid "New User"
+msgstr "Neuer Nutzer"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr "Foren automatisch erwähnen"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: ../../include/features.php:33
+#: ../../mod/admin.php:1015
+msgid "Deleted since"
+msgstr "Gelöscht seit"
+
+#: ../../mod/admin.php:1018
 msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde."
+"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?"
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
+#: ../../mod/admin.php:1019
+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?"
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Archiv"
+#: ../../mod/admin.php:1029
+msgid "Name of the new user."
+msgstr "Name des neuen Nutzers"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+#: ../../mod/admin.php:1030
+msgid "Nickname"
+msgstr "Spitzname"
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Gruppen Filter"
+#: ../../mod/admin.php:1030
+msgid "Nickname of the new user."
+msgstr "Spitznamen für den neuen Nutzer"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
+#: ../../mod/admin.php:1031
+msgid "Email address of the new user."
+msgstr "Email Adresse des neuen Nutzers"
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
+#: ../../mod/admin.php:1064
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren."
+#: ../../mod/admin.php:1068
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
+#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
+msgid "Enable"
+msgstr "Einschalten"
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
+#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast"
+#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
+msgid "Author: "
+msgstr "Autor:"
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
+#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
+#: ../../mod/admin.php:1254
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
+#: ../../mod/admin.php:1316
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
+#: ../../mod/admin.php:1362
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
+#: ../../mod/admin.php:1363
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
+#: ../../mod/admin.php:1390
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+#: ../../mod/admin.php:1446
+msgid "Clear"
+msgstr "löschen"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
+#: ../../mod/admin.php:1452
+msgid "Enable Debugging"
+msgstr "Protokoll führen"
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
+#: ../../mod/admin.php:1453
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Tagging"
+#: ../../mod/admin.php:1453
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+#: ../../mod/admin.php:1454
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Beitragskategorien"
+#: ../../mod/admin.php:1504
+msgid "Close"
+msgstr "Schließen"
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
+#: ../../mod/admin.php:1510
+msgid "FTP Host"
+msgstr "FTP Host"
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
+#: ../../mod/admin.php:1511
+msgid "FTP Path"
+msgstr "FTP Pfad"
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
+#: ../../mod/admin.php:1512
+msgid "FTP User"
+msgstr "FTP Nutzername"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+#: ../../mod/admin.php:1513
+msgid "FTP Password"
+msgstr "FTP Passwort"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "Bildgröße überschreitet das Limit von %d"
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
+#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr "Benachrichtigungen für Beiträge Stumm schalten"
+#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können"
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: ../../include/follow.php:59
+#: ../../mod/openid.php:53
 msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann."
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet."
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen."
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen."
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde."
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können."
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um Dich geht"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Neue"
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "folgen"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Markierte"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "bearbeiten"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "Jahr"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Gruppe: "
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "Monat"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "Tag"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nie"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "Jahre"
+#: ../../mod/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "Monate"
-
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "Woche"
+#: ../../mod/friendica.php:60
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "Wochen"
+#: ../../mod/friendica.php:62
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren."
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "Tage"
+#: ../../mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "Stunde"
+#: ../../mod/friendica.php:65
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "Stunden"
+#: ../../mod/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps"
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "Minute"
+#: ../../mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "Minuten"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "Sekunde"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "Sekunden"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: ../../include/datetime.php:477 ../../include/items.php:2211
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: ../../include/datetime.php:478 ../../include/items.php:2212
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?"
 
-#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "zeigen"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "nicht zeigen"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest Du wirklich dieses Foto löschen?"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "einem Foto"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "Die Bildgröße übersteigt das Limit von "
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers."
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Kontakt löschen"
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "Veranstaltung"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1005
-msgid "poked"
-msgstr "stupste"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s hat %2$s\\s %3$s als Favorit markiert"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "löschen"
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Tags: "
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: ../../include/conversation.php:952
-#, 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"
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "und"
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen das nicht."
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Tag:"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Wo hältst Du Dich jetzt gerade auf?"
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
+msgstr "Der Beitrag wurde angelegt"
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
-msgstr "Konnektoren sind nicht verfügbar, da \"%s\" aktiv ist."
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist."
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Account Datei"
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "neuer"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "älter"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein"
 
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "vorige"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: ../../include/text.php:306
-msgid "first"
-msgstr "erste"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "letzte"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "nächste"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: ../../include/text.php:855
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke."
 
-#: ../../include/text.php:864
+#: ../../mod/invite.php:122
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website."
 
-#: ../../include/text.php:1005
-msgid "poke"
-msgstr "anstupsen"
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst."
 
-#: ../../include/text.php:1006
-msgid "ping"
-msgstr "anpingen"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen."
 
-#: ../../include/text.php:1006
-msgid "pinged"
-msgstr "pingte"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: ../../include/text.php:1007
-msgid "prod"
-msgstr "knuffen"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: ../../include/text.php:1007
-msgid "prodded"
-msgstr "knuffte"
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: ../../include/text.php:1008
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: ../../include/text.php:1008
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:"
 
-#: ../../include/text.php:1009
-msgid "finger"
-msgstr "befummeln"
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
 
-#: ../../include/text.php:1009
-msgid "fingered"
-msgstr "befummelte"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: ../../include/text.php:1010
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: ../../include/text.php:1010
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail."
 
-#: ../../include/text.php:1024
-msgid "happy"
-msgstr "glücklich"
+#: ../../mod/lostpass.php:42
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast."
 
-#: ../../include/text.php:1025
-msgid "sad"
-msgstr "traurig"
+#: ../../mod/lostpass.php:53
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s"
 
-#: ../../include/text.php:1026
-msgid "mellow"
-msgstr "sanft"
+#: ../../mod/lostpass.php:72
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: ../../include/text.php:1027
-msgid "tired"
-msgstr "müde"
+#: ../../mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert."
 
-#: ../../include/text.php:1028
-msgid "perky"
-msgstr "frech"
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: ../../include/text.php:1029
-msgid "angry"
-msgstr "sauer"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: ../../include/text.php:1030
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere Dein neues Passwort - und dann"
 
-#: ../../include/text.php:1031
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "hier klicken, um Dich anzumelden"
 
-#: ../../include/text.php:1032
-msgid "interested"
-msgstr "interessiert"
+#: ../../mod/lostpass.php:114
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast."
 
-#: ../../include/text.php:1033
-msgid "bitter"
-msgstr "verbittert"
+#: ../../mod/lostpass.php:125
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst)."
 
-#: ../../include/text.php:1034
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../mod/lostpass.php:131
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."
 
-#: ../../include/text.php:1035
-msgid "alive"
-msgstr "lebendig"
+#: ../../mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde Dein Passwort geändert"
 
-#: ../../include/text.php:1036
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Hast Du Dein Passwort vergessen?"
 
-#: ../../include/text.php:1037
-msgid "anxious"
-msgstr "unruhig"
+#: ../../mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet."
 
-#: ../../include/text.php:1038
-msgid "cranky"
-msgstr "schrullig"
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: ../../include/text.php:1039
-msgid "disturbed"
-msgstr "verstört"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: ../../include/text.php:1040
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: ../../include/text.php:1041
-msgid "motivated"
-msgstr "motiviert"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) nach BBCode zu konvertierender Text:"
 
-#: ../../include/text.php:1042
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: ../../include/text.php:1043
-msgid "surprised"
-msgstr "überrascht"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: ../../include/text.php:1213
-msgid "Monday"
-msgstr "Montag"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../include/text.php:1213
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../include/text.php:1213
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../include/text.php:1213
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../include/text.php:1213
-msgid "Friday"
-msgstr "Freitag"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/text.php:1213
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../include/text.php:1213
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Originaltext (Diaspora Format): "
 
-#: ../../include/text.php:1217
-msgid "January"
-msgstr "Januar"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../include/text.php:1217
-msgid "February"
-msgstr "Februar"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: ../../include/text.php:1217
-msgid "March"
-msgstr "März"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: ../../include/text.php:1217
-msgid "April"
-msgstr "April"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: ../../include/text.php:1217
-msgid "May"
-msgstr "Mai"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: ../../include/text.php:1217
-msgid "June"
-msgstr "Juni"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen."
 
-#: ../../include/text.php:1217
-msgid "July"
-msgstr "Juli"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib Dein Passwort zur Verifikation ein:"
 
-#: ../../include/text.php:1217
-msgid "August"
-msgstr "August"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner."
 
-#: ../../include/text.php:1217
-msgid "September"
-msgstr "September"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: ../../include/text.php:1217
-msgid "October"
-msgstr "Oktober"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: ../../include/text.php:1217
-msgid "November"
-msgstr "November"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: ../../include/text.php:1217
-msgid "December"
-msgstr "Dezember"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: ../../include/text.php:1437
-msgid "bytes"
-msgstr "Byte"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu."
 
-#: ../../include/text.php:1461 ../../include/text.php:1473
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: ../../include/text.php:1702 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "Standard"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: ../../include/text.php:1714
-msgid "Select an alternate language"
-msgstr "Alternative Sprache auswählen"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../include/text.php:1970
-msgid "activity"
-msgstr "Aktivität"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: ../../include/text.php:1973
-msgid "post"
-msgstr "Beitrag"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: ../../include/text.php:2141
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorherige"
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
-#: ../../include/bbcode.php:1048
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Nächste"
 
-#: ../../include/bbcode.php:528
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "Stunde:Minute"
 
-#: ../../include/bbcode.php:562
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
 
-#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Benötigt"
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:33
-msgid "noreply"
-msgstr "noreply"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit Dir in Kontakt treten"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} schickte Dir eine Nachricht"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} kommentierte einen Beitrag von %s"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} mag %ss Beitrag"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} mag %ss Beitrag nicht"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} ist jetzt mit %s befreundet"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} hat etwas veröffentlicht"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} hat Dich in einem Beitrag erwähnt"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stimmung"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/search.php:174 ../../mod/community.php:62
+#: ../../mod/community.php:71
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Diaspora"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "StatusNet"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest Du wirklich diese Nachricht löschen?"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: ../../include/Scrape.php:614
-msgid " on Last.fm"
-msgstr " bei Last.fm"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Beginnt:"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Endet:"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s und Du"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alter:"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/message.php:411
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
-
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tags"
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten."
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Fernsehen:"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:179 ../../mod/profiles.php:630
+#: ../../mod/dfrn_confirm.php:64
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze Deines Abonnements."
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in Deinem Abonnement nicht verfügbar."
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Likes"
 
-#: ../../include/nav.php:76 ../../include/nav.php:148
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Deine Videos"
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Deine persönlichen Notizen"
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Webseite"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Anmelden"
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
+msgid "Interests"
+msgstr "Interessen"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Homepage"
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
+msgid "Location"
+msgstr "Wohnort"
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Apps"
+#: ../../mod/profiles.php:568
+msgid " and "
+msgstr " und "
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
+#: ../../mod/profiles.php:576
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: ../../mod/profiles.php:579
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s hat %2$s geändert auf &ldquo;%3$s&rdquo;"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: ../../mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
-msgstr "Unterhaltungen im Netzwerk"
+#: ../../mod/profiles.php:583
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s hat folgendes aktualisiert %2$s, verändert wurde %3$s."
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "Verzeichnis"
+#: ../../mod/profiles.php:658
+msgid "Hide contacts and friends:"
+msgstr "Kontakte und Freunde verbergen"
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: ../../mod/profiles.php:663
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "Information"
+#: ../../mod/profiles.php:685
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "Informationen zu dieser Friendica Instanz"
+#: ../../mod/profiles.php:687
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen Deiner Kontakte"
+#: ../../mod/profiles.php:688
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: ../../mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: ../../mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: ../../mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: ../../mod/profiles.php:692
+msgid "Basic information"
+msgstr "Grundinformationen"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: ../../mod/profiles.php:693
+msgid "Profile picture"
+msgstr "Profilbild"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: ../../mod/profiles.php:695
+msgid "Preferences"
+msgstr "Vorlieben"
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "Eingang"
+#: ../../mod/profiles.php:696
+msgid "Status information"
+msgstr "Status Informationen"
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "Ausgang"
+#: ../../mod/profiles.php:697
+msgid "Additional information"
+msgstr "Zusätzliche Informationen"
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "Verwalten"
+#: ../../mod/profiles.php:699 ../../mod/newmember.php:36
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: ../../mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: ../../mod/profiles.php:701
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: ../../mod/profiles.php:702
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "Freunde und Kontakte verwalten/editieren"
+#: ../../mod/profiles.php:703
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: ../../mod/profiles.php:704
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geburtstag (%s):"
 
-#: ../../include/nav.php:188
-msgid "Navigation"
-msgstr "Navigation"
+#: ../../mod/profiles.php:705
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "Sitemap"
+#: ../../mod/profiles.php:706
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1063
-#: ../../include/api.php:1065
-msgid "User not found."
-msgstr "Nutzer nicht gefunden."
+#: ../../mod/profiles.php:707
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: ../../include/api.php:771
-#, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: ../../mod/profiles.php:708
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: ../../mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen."
+#: ../../mod/profiles.php:710
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: ../../include/api.php:1272
-msgid "There is no status with this id."
-msgstr "Es gibt keinen Status mit dieser ID."
+#: ../../mod/profiles.php:711
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: ../../include/api.php:1342
-msgid "There is no conversation with this id."
-msgstr "Es existiert keine Unterhaltung mit dieser ID."
+#: ../../mod/profiles.php:712
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../include/api.php:1614
-msgid "Invalid request."
-msgstr "Ungültige Anfrage"
+#: ../../mod/profiles.php:713
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: ../../include/api.php:1625
-msgid "Invalid item."
-msgstr "Ungültiges Objekt"
+#: ../../mod/profiles.php:715
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: ../../include/api.php:1635
-msgid "Invalid action. "
-msgstr "Ungültige Aktion"
+#: ../../mod/profiles.php:718
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: ../../include/api.php:1643
-msgid "DB error"
-msgstr "DB Error"
+#: ../../mod/profiles.php:719
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: ../../mod/profiles.php:720
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
+#: ../../mod/profiles.php:723
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: ../../mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
+#: ../../mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
+#: ../../mod/profiles.php:726
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von Dir …"
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: ../../mod/profiles.php:727
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein."
+#: ../../mod/profiles.php:728
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt."
+#: ../../mod/profiles.php:729
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: ../../mod/profiles.php:730
+msgid "Books, literature"
+msgstr "Bücher, Literatur"
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: ../../mod/profiles.php:731
+msgid "Television"
+msgstr "Fernsehen"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
+#: ../../mod/profiles.php:732
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: ../../mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Liebe/Romantik"
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: ../../mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Arbeit/Anstellung"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: ../../mod/profiles.php:735
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: ../../mod/profiles.php:740
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein."
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: ../../mod/profiles.php:750 ../../mod/directory.php:113
+msgid "Age: "
+msgstr "Alter: "
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Freunde"
+#: ../../mod/profiles.php:803
+msgid "Edit/Manage Profiles"
+msgstr "Bearbeite/Verwalte Profile"
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\nHallo %1$s,\n\ndanke für Deine Registrierung auf %2$s. Dein Account wurde eingerichtet."
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: ../../include/user.php:381
-#, php-format
-msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3$s\n\tBenutzernamename:\t%1$s\n\tPasswort:\t%5$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2$s."
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert."
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Tabelle konnte nicht angelegt werden."
 
-#: ../../include/diaspora.php:2520
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank Deiner Friendicaseite wurde installiert."
 
-#: ../../include/items.php:4555
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest Du wirklich dieses Item löschen?"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren."
 
-#: ../../include/items.php:4778
-msgid "Archives"
-msgstr "Archiv"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systemtest"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone Deiner Webseite"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden."
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Gefundene PHP Version:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP CLI Binary"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert."
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an."
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun."
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast."
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst."
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen."
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica."
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat."
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen."
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: ../../mod/install.php:524
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: ../../mod/help.php:31
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Einstellungen zum Kontakt angewandt."
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Danke,"
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Kontakteinstellungen reparieren"
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."
 
-#: ../../include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst."
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Zurück zum Kontakteditor"
 
-#: ../../include/enotify.php:70
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s hat Dir eine neue private Nachricht auf %2$s geschickt."
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr "Kein Spiegeln"
 
-#: ../../include/enotify.php:71
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte Dir %2$s."
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr "Spiegeln als weitergeleitete Beiträge"
 
-#: ../../include/enotify.php:71
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr "Spiegeln als meine eigenen Beiträge"
 
-#: ../../include/enotify.php:72
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten."
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Konto-Spitzname"
 
-#: ../../include/enotify.php:124
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]a %3$s[/url]"
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname - überschreibt Name/Spitzname"
 
-#: ../../include/enotify.php:131
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]%3$ss %4$s[/url]"
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "Konto-URL"
 
-#: ../../include/enotify.php:139
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s kommentierte [url=%2$s]Deinen %3$s[/url]"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "URL für Freundschaftsanfragen"
 
-#: ../../include/enotify.php:149
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "URL für Bestätigungen von Freundschaftsanfragen"
 
-#: ../../include/enotify.php:150
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem Du folgst."
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "URL-Endpunkt für Benachrichtigungen"
 
-#: ../../include/enotify.php:153 ../../include/enotify.php:168
-#: ../../include/enotify.php:181 ../../include/enotify.php:194
-#: ../../include/enotify.php:212 ../../include/enotify.php:225
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren."
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Pull/Feed-URL"
 
-#: ../../include/enotify.php:160
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Neues Foto von dieser URL"
 
-#: ../../include/enotify.php:162
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf Deine Pinnwand"
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr "Entfernte Konten"
 
-#: ../../include/enotify.php:164
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s hat etwas auf [url=%2$s]Deiner Pinnwand[/url] gepostet"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr "Spiegle Beiträge dieses Kontakts"
 
-#: ../../include/enotify.php:175
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat Dich erwähnt"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden."
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte Dich auf %2$s"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte Dich[/url]."
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden."
 
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s hat einen neuen Beitrag auf %2$s geteilt"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: ../../include/enotify.php:190
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]hat einen Beitrag geteilt[/url]."
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat Dich angestupst"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst."
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat Dich auf %2$s angestupst"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: ../../include/enotify.php:204
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat Dich angestupst[/url]."
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat Deinen Beitrag getaggt"
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können."
 
-#: ../../include/enotify.php:220
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte Deinen Beitrag auf %2$s"
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust."
 
-#: ../../include/enotify.php:221
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils."
 
-#: ../../include/enotify.php:233
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Du hast eine Kontaktanfrage von '%1$s' auf %2$s erhalten"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: ../../include/enotify.php:234
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Kontaktanfrage[/url] von %2$s erhalten."
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen."
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst Du das Profil betrachten: %s"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: ../../include/enotify.php:239
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst."
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir"
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Wenn</em> dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten."
+
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr "%1$s teilt mit Dir auf %2$s"
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst."
 
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-msgstr "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf "
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr "Du hast einen neuen Kontakt auf %2$s: %1$s"
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein."
 
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis Deiner Friendica Instanz"
 
-#: ../../include/enotify.php:271
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst."
 
-#: ../../include/enotify.php:272
-#, php-format
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
+
+#: ../../mod/newmember.php:62
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Du hast einen [url=%1$s]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "Name:"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: ../../include/enotify.php:278
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren."
 
-#: ../../include/enotify.php:281
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-msgstr "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt"
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch."
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr "'%1$s' hat Deine Kontaktanfrage auf  %2$s bestätigt"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr "%2$s hat Deine [url=%1$s]Kontaktanfrage[/url] akzeptiert."
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: ../../include/enotify.php:294
+#: ../../mod/newmember.php:82
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen."
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten."
 
-#: ../../include/enotify.php:297 ../../include/enotify.php:311
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst."
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen"
 
-#: ../../include/enotify.php:307
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr "'%1$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: ../../include/enotify.php:309
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr "'%1$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. "
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
-msgstr "[Friendica System:Benachrichtigung] Registrationsanfrage"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst Du mit dem Empfänger machen:"
 
-#: ../../include/enotify.php:323
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr "Du hast eine Registrierungsanfrage von %2$s auf '%1$s' erhalten"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Du hast eine [url=%1$s]Registrierungsanfrage[/url] von %2$s erhalten."
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: ../../include/enotify.php:327
+#: ../../mod/subthread.php:103
 #, 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)"
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: ../../include/enotify.php:330
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Bitte besuche %s um die Anfrage zu bearbeiten."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: ../../include/oembed.php:212
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde."
 
-#: ../../include/oembed.php:221
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: ../../include/uimport.php:220
+#: ../../mod/dfrn_confirm.php:571
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d Kontakt nicht importiert"
-msgstr[1] "%d Kontakte nicht importiert"
-
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden"
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: ../../mod/dfrn_confirm.php:592
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden."
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
+#: ../../mod/dfrn_confirm.php:613
+msgid "Contact record was not found for you on our site."
+msgstr "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden."
 
-#: ../../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"
+#: ../../mod/dfrn_confirm.php:627
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Theme Breite festlegen"
+#: ../../mod/dfrn_confirm.php:647
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Farbschema"
+#: ../../mod/dfrn_confirm.php:658
+msgid "Unable to set your contact credentials on our system."
+msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden."
 
-#: ../../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"
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für Dein Profil konnten nicht gespeichert werden"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Farbschema wählen"
+#: ../../mod/dfrn_confirm.php:797
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Ausrichtung"
+#: ../../mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Mitte"
+#: ../../mod/item.php:839
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
+#: ../../mod/item.php:965
+#, 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."
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
+#: ../../mod/item.php:967
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Auflösung für die Mittelspalte setzen"
+#: ../../mod/item.php:968
+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."
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Wähle Farbschema"
+#: ../../mod/item.php:972
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bild hochgeladen, aber das Zuschneiden schlug fehl."
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Longitude (X) der Earth Layer"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Verkleinern der Bildgröße von [%s] scheiterte."
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Latitude (Y) der Earth Layer"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird."
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
-msgstr "Foren"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Community-Profile"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Profil auswählen:"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Hilfe oder @NewHere"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Hochladen"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Verbinde Dienste"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Freunde finden"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto aus deinen Fotoalben"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Letzte Nutzer"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Letzte Fotos"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Zuletzt gemocht"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Deine Kontakte"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich hochgeladen."
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Deine privaten Fotos"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Freunde von %s"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Keine Freunde zum Anzeigen."
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "Stil auswählen"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Geschlecht:"
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr "greenzero"
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr "purplezero"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr "easterbunny"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann."
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr "darkzero"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr "comix"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr "slackr"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr "Variationen"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Bitte wähle Deine Zeitzone:"
index dd9842806eaf380b9197dcdd04eeeb7732fd3726..6b68f1de2e3f649bd82d75b8da4a7942e84de3f0 100644 (file)
@@ -5,1355 +5,361 @@ function string_plural_select_de($n){
        return ($n != 1);;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d Kontakt bearbeitet.",
-       1 => "%d Kontakte bearbeitet",
-);
-$a->strings["Could not access contact record."] = "Konnte nicht auf die Kontaktdaten zugreifen.";
-$a->strings["Could not locate selected profile."] = "Konnte das ausgewählte Profil nicht finden.";
-$a->strings["Contact updated."] = "Kontakt aktualisiert.";
-$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Submit"] = "Senden";
+$a->strings["Theme settings"] = "Themeneinstellungen";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
+$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
+$a->strings["Set theme width"] = "Theme Breite festlegen";
+$a->strings["Color scheme"] = "Farbschema";
+$a->strings["Set style"] = "Stil auswählen";
+$a->strings["default"] = "Standard";
+$a->strings["greenzero"] = "greenzero";
+$a->strings["purplezero"] = "purplezero";
+$a->strings["easterbunny"] = "easterbunny";
+$a->strings["darkzero"] = "darkzero";
+$a->strings["comix"] = "comix";
+$a->strings["slackr"] = "slackr";
+$a->strings["Variations"] = "Variationen";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["show"] = "zeigen";
+$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
+$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
+$a->strings["Set color scheme"] = "Wähle Farbschema";
+$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
+$a->strings["Community Pages"] = "Foren";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Community Profiles"] = "Community-Profile";
+$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
+$a->strings["Connect Services"] = "Verbinde Dienste";
+$a->strings["Find Friends"] = "Freunde finden";
+$a->strings["Last users"] = "Letzte Nutzer";
+$a->strings["Last photos"] = "Letzte Fotos";
+$a->strings["Last likes"] = "Zuletzt gemocht";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Profile"] = "Profil";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Contacts"] = "Kontakte";
+$a->strings["Your contacts"] = "Deine Kontakte";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal photos"] = "Deine privaten Fotos";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["event"] = "Veranstaltung";
+$a->strings["status"] = "Status";
+$a->strings["photo"] = "Foto";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Local Directory"] = "Lokales Verzeichnis";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["Settings"] = "Einstellungen";
+$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
+$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
+$a->strings["Alignment"] = "Ausrichtung";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Mitte";
+$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
+$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
+$a->strings["Set colour scheme"] = "Farbschema wählen";
+$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
+$a->strings["Permission denied"] = "Zugriff verweigert";
 $a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
-$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
-$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
-$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
-$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
-$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
-$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
+$a->strings["Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"] = "Möchtest du deine Identität (<tt>%s</tt> mit <tt>%s</tt> bestätigen";
+$a->strings["Confirm"] = "Bestätigen";
+$a->strings["Do not confirm"] = "Nicht bestätigen";
+$a->strings["Trust This Site"] = "Dieser Seite vertrauen";
+$a->strings["No Identifier Sent"] = "Keine Identifikation gesendet";
+$a->strings["Requested identity don't match logged in user."] = "Die angeforderte Identität stimmt nicht mit dem angemeldeten Nutzer überein.";
+$a->strings["Please wait; you are being redirected to <%s>"] = "Bitte warten, Du wirst nach <%s> umgeleitet.";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["show more"] = "mehr anzeigen";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$a->strings["Register"] = "Registrieren";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
+$a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
+$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
+$a->strings["Forgot your password?"] = "Passwort vergessen?";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
+$a->strings["terms of service"] = "Nutzungsbedingungen";
+$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
+$a->strings["privacy policy"] = "Datenschutzerklärung";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Message"] = "Nachricht";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["Change profile photo"] = "Profilbild ändern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
+$a->strings["Location:"] = "Ort:";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Über:";
+$a->strings["Network:"] = "Netzwerk";
+$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[heute]";
+$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
+$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
+$a->strings["[No description]"] = "[keine Beschreibung]";
+$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
+$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
+$a->strings["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Videos"] = "Videos";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
+$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
+$a->strings["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Richtext Editor"] = "Web-Editor";
+$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Saved Searches"] = "Gespeicherte Suchen";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Saved Folders"] = "Gespeicherte Ordner";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
+$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
+$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$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["Cancel"] = "Abbrechen";
-$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
-$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
-$a->strings["You are sharing with %s"] = "Du teilst mit %s";
-$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
-$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
-$a->strings["Never"] = "Niemals";
-$a->strings["(Update was successful)"] = "(Aktualisierung war erfolgreich)";
-$a->strings["(Update was not successful)"] = "(Aktualisierung war nicht erfolgreich)";
-$a->strings["Suggest friends"] = "Kontakte vorschlagen";
-$a->strings["Network type: %s"] = "Netzwerktyp: %s";
+$a->strings["Archives"] = "Archiv";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
+$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
+$a->strings["Everybody"] = "Alle Kontakte";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Groups"] = "Gruppen";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["add"] = "hinzufügen";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
+);
+$a->strings["Find People"] = "Leute finden";
+$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
+$a->strings["Connect/Follow"] = "Verbinden/Folgen";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
+$a->strings["Find"] = "Finde";
+$a->strings["Random Profile"] = "Zufälliges Profil";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
 $a->strings["%d contact in common"] = array(
        0 => "%d gemeinsamer Kontakt",
        1 => "%d gemeinsame Kontakte",
 );
-$a->strings["View all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblock"] = "Entsperren";
-$a->strings["Block"] = "Sperren";
-$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
-$a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Ignore"] = "Ignorieren";
-$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["Unarchive"] = "Aus Archiv zurückholen";
-$a->strings["Archive"] = "Archivieren";
-$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
-$a->strings["Repair"] = "Reparieren";
-$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
-$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
-$a->strings["Contact Editor"] = "Kontakt Editor";
-$a->strings["Submit"] = "Senden";
-$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
-$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
-$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
-$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
-$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
-$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
-$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
-$a->strings["View conversations"] = "Unterhaltungen anzeigen";
-$a->strings["Delete contact"] = "Lösche den Kontakt";
-$a->strings["Last update:"] = "Letzte Aktualisierung: ";
-$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
-$a->strings["Update now"] = "Jetzt aktualisieren";
-$a->strings["Currently blocked"] = "Derzeit geblockt";
-$a->strings["Currently ignored"] = "Derzeit ignoriert";
-$a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt von anderen";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge <strong>könnten</strong> weiterhin sichtbar sein";
-$a->strings["Notification for new posts"] = "Benachrichtigung bei neuen Beiträgen";
-$a->strings["Send a notification of every new post of this contact"] = "Sende eine Benachrichtigung, wann immer dieser Kontakt einen neuen Beitrag schreibt.";
-$a->strings["Fetch further information for feeds"] = "Weitere Informationen zu Feeds holen";
-$a->strings["Disabled"] = "Deaktiviert";
-$a->strings["Fetch information"] = "Beziehe Information";
-$a->strings["Fetch information and keywords"] = "Beziehe Information und Schlüsselworte";
-$a->strings["Blacklisted keywords"] = "Blacklistete Schlüsselworte ";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Komma-Separierte Liste mit Schlüsselworten, die nicht in Hashtags konvertiert werden, wenn \"Beziehe Information und Schlüsselworte\" aktiviert wurde";
-$a->strings["Suggestions"] = "Kontaktvorschläge";
-$a->strings["Suggest potential friends"] = "Freunde vorschlagen";
-$a->strings["All Contacts"] = "Alle Kontakte";
-$a->strings["Show all contacts"] = "Alle Kontakte anzeigen";
-$a->strings["Unblocked"] = "Ungeblockt";
-$a->strings["Only show unblocked contacts"] = "Nur nicht-blockierte Kontakte anzeigen";
-$a->strings["Blocked"] = "Geblockt";
-$a->strings["Only show blocked contacts"] = "Nur blockierte Kontakte anzeigen";
-$a->strings["Ignored"] = "Ignoriert";
-$a->strings["Only show ignored contacts"] = "Nur ignorierte Kontakte anzeigen";
-$a->strings["Archived"] = "Archiviert";
-$a->strings["Only show archived contacts"] = "Nur archivierte Kontakte anzeigen";
-$a->strings["Hidden"] = "Verborgen";
-$a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
-$a->strings["Mutual Friendship"] = "Beidseitige Freundschaft";
-$a->strings["is a fan of yours"] = "ist ein Fan von dir";
-$a->strings["you are a fan of"] = "Du bist Fan von";
-$a->strings["Edit contact"] = "Kontakt bearbeiten";
-$a->strings["Contacts"] = "Kontakte";
-$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["Finding: "] = "Funde: ";
-$a->strings["Find"] = "Finde";
-$a->strings["Update"] = "Aktualisierungen";
-$a->strings["Delete"] = "Löschen";
-$a->strings["No profile"] = "Kein Profil";
-$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
-$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["Permission denied"] = "Zugriff verweigert";
-$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
-$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
-$a->strings["Profile"] = "Profil";
-$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
-$a->strings["Visible To"] = "Sichtbar für";
-$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
-$a->strings["Item not found."] = "Beitrag nicht gefunden.";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
-$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
-$a->strings["Getting Started"] = "Einstieg";
-$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können.";
-$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
-$a->strings["Edit Your Profile"] = "Editiere dein Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils.";
-$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
-$a->strings["Connecting"] = "Verbindungen knüpfen";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten.";
-$a->strings["Importing Emails"] = "Emails Importieren";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst.";
-$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
-$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
-$a->strings["Finding New People"] = "Neue Leute kennenlernen";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
-$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
-$a->strings["Getting Help"] = "Hilfe bekommen";
-$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
-$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
-$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
-$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
-$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Upload File:"] = "Datei hochladen:";
-$a->strings["Select a profile:"] = "Profil auswählen:";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["or"] = "oder";
-$a->strings["skip this step"] = "diesen Schritt überspringen";
-$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
-$a->strings["Crop Image"] = "Bild zurechtschneiden";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
-$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
-$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$a->strings["photo"] = "Foto";
-$a->strings["status"] = "Status";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
-$a->strings["Tag removed"] = "Tag entfernt";
-$a->strings["Remove Item Tag"] = "Gegenstands-Tag entfernen";
-$a->strings["Select a tag to remove: "] = "Wähle ein Tag zum Entfernen aus: ";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["Save to Folder:"] = "In diesem Ordner speichern:";
-$a->strings["- select -"] = "- auswählen -";
-$a->strings["Save"] = "Speichern";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
-$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
-$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
-$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
-$a->strings["Group created."] = "Gruppe erstellt.";
-$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
-$a->strings["Group not found."] = "Gruppe nicht gefunden.";
-$a->strings["Group name changed."] = "Gruppenname geändert.";
-$a->strings["Save Group"] = "Gruppe speichern";
-$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["You must be logged in to use addons. "] = "Sie müssen angemeldet sein um Addons benutzen zu können.";
-$a->strings["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
-$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
-$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
-$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
-$a->strings["View Video"] = "Video ansehen";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Recent Videos"] = "Neueste Videos";
-$a->strings["Upload New Videos"] = "Neues Video hochladen";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
-$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
-$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
-$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
-$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
-$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
-$a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
-$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
-$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
-$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
-$a->strings["Reset"] = "Zurücksetzen";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
-$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
-$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
-$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
-$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
-$a->strings["{0} mentioned you in a post"] = "{0} hat Dich in einem Beitrag erwähnt";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["View Contacts"] = "Kontakte anzeigen";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Netzwerk";
-$a->strings["Personal"] = "Persönlich";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Introductions"] = "Kontaktanfragen";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Approve"] = "Genehmigen";
-$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Approve as: "] = "Genehmigen als: ";
-$a->strings["Friend"] = "Freund";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Fan/Admirer"] = "Fan/Verehrer";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["No introductions."] = "Keine Kontaktanfragen.";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
-$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
-$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
-$a->strings["Source input: "] = "Originaltext:";
-$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$a->strings["New Message"] = "Neue Nachricht";
-$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["Messages"] = "Nachrichten";
-$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$a->strings["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$a->strings["Your message:"] = "Deine Nachricht:";
-$a->strings["Upload photo"] = "Foto hochladen";
-$a->strings["Insert web link"] = "Einen Link einfügen";
-$a->strings["Please wait"] = "Bitte warten";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
-$a->strings["You and %s"] = "Du und %s";
-$a->strings["%s and You"] = "%s und Du";
-$a->strings["Delete conversation"] = "Unterhaltung löschen";
-$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d Nachricht",
-       1 => "%d Nachrichten",
-);
-$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht löschen";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
-$a->strings["Send Reply"] = "Antwort senden";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
-$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
-$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
-$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
-$a->strings["No mirroring"] = "Kein Spiegeln";
-$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
-$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
-$a->strings["Name"] = "Name";
-$a->strings["Account Nickname"] = "Konto-Spitzname";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
-$a->strings["Account URL"] = "Konto-URL";
-$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
-$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
-$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
-$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
-$a->strings["Remote Self"] = "Entfernte Konten";
-$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["People Search"] = "Personensuche";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Files"] = "Dateien";
-$a->strings["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
-$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Themen";
-$a->strings["DB updates"] = "DB Updates";
-$a->strings["Logs"] = "Protokolle";
-$a->strings["probe address"] = "Adresse untersuchen";
-$a->strings["check webfinger"] = "Webfinger überprüfen";
-$a->strings["Admin"] = "Administration";
-$a->strings["Plugin Features"] = "Plugin Features";
-$a->strings["diagnostics"] = "Diagnose";
-$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
-$a->strings["Normal Account"] = "Normales Konto";
-$a->strings["Soapbox Account"] = "Marktschreier-Konto";
-$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
-$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
-$a->strings["Blog Account"] = "Blog-Konto";
-$a->strings["Private Forum"] = "Privates Forum";
-$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
-$a->strings["Administration"] = "Administration";
-$a->strings["Summary"] = "Zusammenfassung";
-$a->strings["Registered users"] = "Registrierte Nutzer";
-$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
-$a->strings["Version"] = "Version";
-$a->strings["Active plugins"] = "Aktive Plugins";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
-$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
-$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
-$a->strings["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["At post arrival"] = "Beim Empfang von Nachrichten";
-$a->strings["Frequently"] = "immer wieder";
-$a->strings["Hourly"] = "Stündlich";
-$a->strings["Twice daily"] = "Zweimal täglich";
-$a->strings["Daily"] = "Täglich";
-$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
-$a->strings["Closed"] = "Geschlossen";
-$a->strings["Requires approval"] = "Bedarf der Zustimmung";
-$a->strings["Open"] = "Offen";
-$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
-$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
-$a->strings["Save Settings"] = "Einstellungen speichern";
-$a->strings["Registration"] = "Registrierung";
-$a->strings["File upload"] = "Datei hochladen";
-$a->strings["Policies"] = "Regeln";
-$a->strings["Advanced"] = "Erweitert";
-$a->strings["Performance"] = "Performance";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
-$a->strings["Site name"] = "Seitenname";
-$a->strings["Host name"] = "Host Name";
-$a->strings["Sender Email"] = "Absender für Emails";
-$a->strings["Banner/Logo"] = "Banner/Logo";
-$a->strings["Shortcut icon"] = "Shortcut Icon";
-$a->strings["Touch icon"] = "Touch Icon";
-$a->strings["Additional Info"] = "Zusätzliche Informationen";
-$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf Dir.friendica.com/siteinfo angezeigt werden.";
-$a->strings["System language"] = "Systemsprache";
-$a->strings["System theme"] = "Systemweites Theme";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
-$a->strings["Mobile system theme"] = "Systemweites mobiles Theme";
-$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
-$a->strings["SSL link policy"] = "Regeln für SSL Links";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
-$a->strings["Force SSL"] = "Erzwinge SSL";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.";
-$a->strings["Old style 'Share'"] = "Altes \"Teilen\" Element";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen.";
-$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
-$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
-$a->strings["Maximum image size"] = "Maximale Bildgröße";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
-$a->strings["Maximum image length"] = "Maximale Bildlänge";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
-$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
-$a->strings["Register policy"] = "Registrierungsmethode";
-$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Registrierungen";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "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.";
-$a->strings["Register text"] = "Registrierungstext";
-$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
-$a->strings["Accounts abandoned after x days"] = "Nutzerkonten gelten nach x Tagen als unbenutzt";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.";
-$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
-$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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.";
-$a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
-$a->strings["Force publish"] = "Erzwinge Veröffentlichung";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
-$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar.";
-$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
-$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
-$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
-$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
-$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
-$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "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.";
-$a->strings["Allow Users to set remote_self"] = "Nutzern erlauben das remote_self Flag zu setzen";
-$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "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.";
-$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
-$a->strings["OpenID support"] = "OpenID Unterstützung";
-$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
-$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
-$a->strings["UTF-8 Regular expressions"] = "UTF-8 Reguläre Ausdrücke";
-$a->strings["Use PHP UTF8 regular expressions"] = "PHP UTF8 Ausdrücke verwenden";
-$a->strings["Community Page Style"] = "Art der Gemeinschaftsseite";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen.";
-$a->strings["Posts per user on community page"] = "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "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.";
-$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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.";
-$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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.";
-$a->strings["Enable Diaspora support"] = "Diaspora-Support aktivieren";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
-$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
-$a->strings["Verify SSL"] = "SSL Überprüfen";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
-$a->strings["Proxy user"] = "Proxy Nutzer";
-$a->strings["Proxy URL"] = "Proxy URL";
-$a->strings["Network timeout"] = "Netzwerk Wartezeit";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
-$a->strings["Delivery interval"] = "Zustellungsintervall";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "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.";
-$a->strings["Poll interval"] = "Abfrageintervall";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet.";
-$a->strings["Maximum Load Average"] = "Maximum Load Average";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50";
-$a->strings["Use MySQL full text engine"] = "Nutze MySQL full text engine";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden.";
-$a->strings["Suppress Language"] = "Sprachinformation unterdrücken";
-$a->strings["Suppress language information in meta information about a posting."] = "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags.";
-$a->strings["Suppress Tags"] = "Tags Unterdrücken";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Unterdrückt die Anzeige von Tags am Ende eines Beitrags.";
-$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
-$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "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.";
-$a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.";
-$a->strings["Path for lock file"] = "Pfad für die Sperrdatei";
-$a->strings["Temp path"] = "Temp Pfad";
-$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
-$a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen.";
-$a->strings["Enable old style pager"] = "Den Old-Style Pager aktiviren";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite.";
-$a->strings["Only search in tags"] = "Nur in Tags suchen";
-$a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen.";
-$a->strings["New base url"] = "Neue Basis-URL";
-$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
-$a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s";
-$a->strings["Executing %s failed with error: %s"] = "Die Ausführung von %s schlug fehl. Fehlermeldung: %s";
-$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.";
-$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
-$a->strings["Check database structure"] = "Datenbank Struktur überprüfen";
-$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
-$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
-$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für Dich angelegt.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\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.";
-$a->strings["Registration details for %s"] = "Details der Registration von %s";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s Benutzer geblockt/freigegeben",
-       1 => "%s Benutzer geblockt/freigegeben",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s Nutzer gelöscht",
-       1 => "%s Nutzer gelöscht",
-);
-$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
-$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
-$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
-$a->strings["Add User"] = "Nutzer hinzufügen";
-$a->strings["select all"] = "Alle auswählen";
-$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
-$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
-$a->strings["Request date"] = "Anfragedatum";
-$a->strings["Email"] = "E-Mail";
-$a->strings["No registrations."] = "Keine Neuanmeldungen.";
-$a->strings["Deny"] = "Verwehren";
-$a->strings["Site admin"] = "Seitenadministrator";
-$a->strings["Account expired"] = "Account ist abgelaufen";
-$a->strings["New User"] = "Neuer Nutzer";
-$a->strings["Register date"] = "Anmeldedatum";
-$a->strings["Last login"] = "Letzte Anmeldung";
-$a->strings["Last item"] = "Letzter Beitrag";
-$a->strings["Deleted since"] = "Gelöscht seit";
-$a->strings["Account"] = "Nutzerkonto";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
-$a->strings["Name of the new user."] = "Name des neuen Nutzers";
-$a->strings["Nickname"] = "Spitzname";
-$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer";
-$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers";
-$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
-$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
-$a->strings["Disable"] = "Ausschalten";
-$a->strings["Enable"] = "Einschalten";
-$a->strings["Toggle"] = "Umschalten";
-$a->strings["Author: "] = "Autor:";
-$a->strings["Maintainer: "] = "Betreuer:";
-$a->strings["No themes found."] = "Keine Themen gefunden.";
-$a->strings["Screenshot"] = "Bildschirmfoto";
-$a->strings["[Experimental]"] = "[Experimentell]";
-$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
-$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
-$a->strings["Clear"] = "löschen";
-$a->strings["Enable Debugging"] = "Protokoll führen";
-$a->strings["Log file"] = "Protokolldatei";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
-$a->strings["Log level"] = "Protokoll-Level";
-$a->strings["Close"] = "Schließen";
-$a->strings["FTP Host"] = "FTP Host";
-$a->strings["FTP Path"] = "FTP Pfad";
-$a->strings["FTP User"] = "FTP Nutzername";
-$a->strings["FTP Password"] = "FTP Passwort";
-$a->strings["Search Results For:"] = "Suchergebnisse für:";
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["add"] = "hinzufügen";
-$a->strings["Commented Order"] = "Neueste Kommentare";
-$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
-$a->strings["Posted Order"] = "Neueste Beiträge";
-$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
-$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
-$a->strings["New"] = "Neue";
-$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
-$a->strings["Shared Links"] = "Geteilte Links";
-$a->strings["Interesting Links"] = "Interessante Links";
-$a->strings["Starred"] = "Markierte";
-$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
-       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
-$a->strings["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Group: "] = "Gruppe: ";
-$a->strings["Contact: "] = "Kontakt: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
-$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
-$a->strings["Friends of %s"] = "Freunde von %s";
-$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["hour:minute"] = "Stunde:Minute";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
-$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
-$a->strings["Required"] = "Benötigt";
-$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
-$a->strings["Event Finishes:"] = "Veranstaltungsende:";
-$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
-$a->strings["Description:"] = "Beschreibung";
-$a->strings["Location:"] = "Ort:";
-$a->strings["Title:"] = "Titel:";
-$a->strings["Share this event"] = "Veranstaltung teilen";
-$a->strings["Select"] = "Auswählen";
-$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
-$a->strings["%s from %s"] = "%s von %s";
-$a->strings["View in context"] = "Im Zusammenhang betrachten";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
-);
-$a->strings["comment"] = array(
-       0 => "Kommentar",
-       1 => "Kommentare",
-);
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["like"] = "mag ich";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["This is you"] = "Das bist Du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["Preview"] = "Vorschau";
-$a->strings["Edit"] = "Bearbeiten";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["to"] = "zu";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Remove My Account"] = "Konto löschen";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
-$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
-$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
-$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
-$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
-$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
-$a->strings["System check"] = "Systemtest";
-$a->strings["Check again"] = "Noch einmal testen";
-$a->strings["Database connection"] = "Datenbankverbindung";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
-$a->strings["Database Server Name"] = "Datenbank-Server";
-$a->strings["Database Login Name"] = "Datenbank-Nutzer";
-$a->strings["Database Login Password"] = "Datenbank-Passwort";
-$a->strings["Database Name"] = "Datenbank-Name";
-$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
-$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
-$a->strings["Site settings"] = "Server-Einstellungen";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Pfad zu PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
-$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
-$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
-$a->strings["PHP cli binary"] = "PHP CLI Binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
-$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
-$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
-$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
-$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
-$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
-$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
-$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
-$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
-$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
-$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
-$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
-$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Help"] = "Hilfe";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
-$a->strings["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
-$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
-$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
-$a->strings["Profile Match"] = "Profilübereinstimmungen";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
-$a->strings["is interested in:"] = "ist interessiert an:";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["link"] = "Link";
-$a->strings["Not available."] = "Nicht verfügbar.";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["No results."] = "Keine Ergebnisse.";
-$a->strings["everybody"] = "jeder";
-$a->strings["Additional features"] = "Zusätzliche Features";
-$a->strings["Display"] = "Anzeige";
-$a->strings["Social Networks"] = "Soziale Netzwerke";
-$a->strings["Delegations"] = "Delegationen";
-$a->strings["Connected apps"] = "Verbundene Programme";
-$a->strings["Export personal data"] = "Persönliche Daten exportieren";
-$a->strings["Remove account"] = "Konto löschen";
-$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
-$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
-$a->strings["Features updated"] = "Features aktualisiert";
-$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.";
-$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
-$a->strings["Wrong password."] = "Falsches Passwort.";
-$a->strings["Password changed."] = "Passwort geändert.";
-$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
-$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
-$a->strings[" Name too short."] = " Name ist zu kurz.";
-$a->strings["Wrong Password"] = "Falsches Passwort";
-$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
-$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Add application"] = "Programm hinzufügen";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Redirect"] = "Umleiten";
-$a->strings["Icon url"] = "Icon URL";
-$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
-$a->strings["Connected Apps"] = "Verbundene Programme";
-$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
-$a->strings["No name"] = "Kein Name";
-$a->strings["Remove authorization"] = "Autorisierung entziehen";
-$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
-$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
-$a->strings["Off"] = "Aus";
-$a->strings["On"] = "An";
-$a->strings["Additional Features"] = "Zusätzliche Features";
-$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "eingeschaltet";
-$a->strings["disabled"] = "ausgeschaltet";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
-$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an.";
-$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
-$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
-$a->strings["IMAP port:"] = "IMAP-Port:";
-$a->strings["Security:"] = "Sicherheit:";
-$a->strings["None"] = "Keine";
-$a->strings["Email login name:"] = "E-Mail-Login-Name:";
-$a->strings["Email password:"] = "E-Mail-Passwort:";
-$a->strings["Reply-to address:"] = "Reply-to Adresse:";
-$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
-$a->strings["Action after import:"] = "Aktion nach Import:";
-$a->strings["Mark as seen"] = "Als gelesen markieren";
-$a->strings["Move to folder"] = "In einen Ordner verschieben";
-$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["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
-$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
-$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
-$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
-$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
-$a->strings["Infinite scroll"] = "Endloses Scrollen";
-$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist.";
-$a->strings["User Types"] = "Nutzer Art";
-$a->strings["Community Types"] = "Gemeinschafts Art";
-$a->strings["Normal Account Page"] = "Normales Konto";
-$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
-$a->strings["Soapbox Page"] = "Marktschreier-Konto";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
-$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
-$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
-$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
-$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
-$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
-$a->strings["No"] = "Nein";
-$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
-$a->strings["Hide your profile details from unknown viewers?"] = "Profil-Details vor unbekannten Betrachtern verbergen?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich";
-$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?";
-$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
-$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?";
-$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
-$a->strings["Your Identity Address is"] = "Die Adresse Deines Profils lautet:";
-$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
-$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
-$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
-$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
-$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
-$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
-$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
-$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
-$a->strings["Account Settings"] = "Kontoeinstellungen";
-$a->strings["Password Settings"] = "Passwort-Einstellungen";
-$a->strings["New Password:"] = "Neues Passwort:";
-$a->strings["Confirm:"] = "Bestätigen:";
-$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern";
-$a->strings["Current Password:"] = "Aktuelles Passwort:";
-$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen";
-$a->strings["Password:"] = "Passwort:";
-$a->strings["Basic Settings"] = "Grundeinstellungen";
-$a->strings["Full Name:"] = "Kompletter Name:";
-$a->strings["Email Address:"] = "E-Mail-Adresse:";
-$a->strings["Your Timezone:"] = "Deine Zeitzone:";
-$a->strings["Default Post Location:"] = "Standardstandort:";
-$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
-$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
-$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
-$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
-$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
-$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
-$a->strings["Default Private Post"] = "Privater Standardbeitrag";
-$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
-$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
-$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
-$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
-$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst";
-$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst";
-$a->strings["making an <em>interesting</em> profile change"] = "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst";
-$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
-$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst";
-$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde";
-$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt";
-$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
-$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst";
-$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst";
-$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst";
-$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst";
-$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
-$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
-$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
-$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
-$a->strings["Relocate"] = "Umziehen";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Wenn Du Dein Profil von einem anderen Server umgezogen hast und einige Deiner Kontakte Deine Beiträge nicht erhalten, verwende diesen Button.";
-$a->strings["Resend relocate message to contacts"] = "Umzugsbenachrichtigung erneut an Kontakte senden";
-$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
-$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
-       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
-);
-$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
-$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
-$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
-$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
-$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
-$a->strings["Invalid locator"] = "Ungültiger Locator";
-$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
-$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
-$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden.";
-$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
-$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
-$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
-$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
-$a->strings["Confirm"] = "Bestätigen";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://Dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
-$a->strings["Does %s know you?"] = "Kennt %s Dich?";
-$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
-$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
-$a->strings["Submit Request"] = "Anfrage abschicken";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
-$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
-$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
-$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
-$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
-$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
-$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
-$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
-$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Import"] = "Import";
-$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
-$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
-$a->strings["Search"] = "Suche";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["About:"] = "Über:";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
-$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
-$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
-$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
-$a->strings["Add"] = "Hinzufügen";
-$a->strings["No entries."] = "Keine Einträge.";
-$a->strings["Common Friends"] = "Gemeinsame Freunde";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
-$a->strings["Export account"] = "Account exportieren";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
-$a->strings["Export all"] = "Alles exportieren";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["Mood"] = "Stimmung";
-$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden";
-$a->strings["Do you really want to delete this suggestion?"] = "Möchtest Du wirklich diese Empfehlung löschen?";
-$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil angelegt.";
-$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
-$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romanze";
-$a->strings["Likes"] = "Likes";
-$a->strings["Dislikes"] = "Dislikes";
-$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Ansichten";
-$a->strings["Gender"] = "Geschlecht";
-$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
-$a->strings["Homepage"] = "Webseite";
-$a->strings["Interests"] = "Interessen";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Wohnort";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings[" and "] = " und ";
-$a->strings["public profile"] = "öffentliches Profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
-$a->strings["Edit Profile Details"] = "Profil bearbeiten";
-$a->strings["Change Profile Photo"] = "Profilbild ändern";
-$a->strings["View this profile"] = "Dieses Profil anzeigen";
-$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
-$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
-$a->strings["Delete this profile"] = "Dieses Profil löschen";
-$a->strings["Basic information"] = "Grundinformationen";
-$a->strings["Profile picture"] = "Profilbild";
-$a->strings["Preferences"] = "Vorlieben";
-$a->strings["Status information"] = "Status Informationen";
-$a->strings["Additional information"] = "Zusätzliche Informationen";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["Your Full Name:"] = "Dein kompletter Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
-$a->strings["Street Address:"] = "Adresse:";
-$a->strings["Locality/City:"] = "Wohnort:";
-$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Region/State:"] = "Region/Bundesstaat:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Seit [Datum]:";
-$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
-$a->strings["Homepage URL:"] = "Adresse der Homepage:";
-$a->strings["Hometown:"] = "Heimatort:";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
-$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
-$a->strings["Likes:"] = "Likes:";
-$a->strings["Dislikes:"] = "Dislikes:";
-$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
-$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
-$a->strings["Musical interests"] = "Musikalische Interessen";
-$a->strings["Books, literature"] = "Bücher, Literatur";
-$a->strings["Television"] = "Fernsehen";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
-$a->strings["Love/romance"] = "Liebe/Romantik";
-$a->strings["Work/employment"] = "Arbeit/Anstellung";
-$a->strings["School/education"] = "Schule/Ausbildung";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
-$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
-$a->strings["Change profile photo"] = "Profilbild ändern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
-$a->strings["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$a->strings["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["upload photo"] = "Bild hochladen";
-$a->strings["Attach file"] = "Datei anhängen";
-$a->strings["attach file"] = "Datei anhängen";
-$a->strings["web link"] = "Weblink";
-$a->strings["Insert video link"] = "Video-Adresse einfügen";
-$a->strings["video link"] = "Video-Link";
-$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
-$a->strings["audio link"] = "Audio-Link";
-$a->strings["Set your location"] = "Deinen Standort festlegen";
-$a->strings["set location"] = "Ort setzen";
-$a->strings["Clear browser location"] = "Browser-Standort leeren";
-$a->strings["clear location"] = "Ort löschen";
-$a->strings["Permission settings"] = "Berechtigungseinstellungen";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Public post"] = "Öffentlicher Beitrag";
-$a->strings["Set title"] = "Titel setzen";
-$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
-$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
-$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
-$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
-$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["Personal Notes"] = "Persönliche Notizen";
-$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
-$a->strings["Time Conversion"] = "Zeitumrechnung";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
-$a->strings["UTC time: %s"] = "UTC Zeit: %s";
-$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
-$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
-$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
-$a->strings["Poke/Prod"] = "Anstupsen";
-$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
-$a->strings["Recipient"] = "Empfänger";
-$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
-$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
-$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
-$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
-$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
-$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
-$a->strings["%d message sent."] = array(
-       0 => "%d Nachricht gesendet.",
-       1 => "%d Nachrichten gesendet.",
-);
-$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
-$a->strings["Send invitations"] = "Einladungen senden";
-$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
-$a->strings["Delete Photo"] = "Foto löschen";
-$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
-$a->strings["a photo"] = "einem Foto";
-$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
-$a->strings["Image file is empty."] = "Bilddatei ist leer.";
-$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
-$a->strings["Upload Photos"] = "Bilder hochladen";
-$a->strings["New album name: "] = "Name des neuen Albums: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["Share"] = "Teilen";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$a->strings["Account approved."] = "Konto freigegeben.";
-$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
-$a->strings["Please login."] = "Bitte melde Dich an.";
-$a->strings["Move account"] = "Account umziehen";
-$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
-$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
-$a->strings["show fewer"] = "weniger anzeigen";
-$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
-$a->strings["Create a New Account"] = "Neues Konto erstellen";
-$a->strings["Logout"] = "Abmelden";
-$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
-$a->strings["Password: "] = "Passwort: ";
-$a->strings["Remember me"] = "Anmeldedaten merken";
-$a->strings["Or login using OpenID: "] = "Oder melde Dich mit Deiner OpenID an: ";
-$a->strings["Forgot your password?"] = "Passwort vergessen?";
-$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
-$a->strings["terms of service"] = "Nutzungsbedingungen";
-$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
-$a->strings["privacy policy"] = "Datenschutzerklärung";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Message"] = "Nachricht";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["Network:"] = "Netzwerk";
-$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[heute]";
-$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
-$a->strings["Birthdays this week:"] = "Geburtstage diese Woche:";
-$a->strings["[No description]"] = "[keine Beschreibung]";
-$a->strings["Event Reminders"] = "Veranstaltungserinnerungen";
-$a->strings["Events this week:"] = "Veranstaltungen diese Woche";
-$a->strings["Status"] = "Status";
-$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["Videos"] = "Videos";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Only You Can See This"] = "Nur Du kannst das sehen";
-$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
-$a->strings["ignore thread"] = "Thread ignorieren";
-$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
-$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
-$a->strings["ignored"] = "Ignoriert";
-$a->strings["Categories:"] = "Kategorien:";
-$a->strings["Filed under:"] = "Abgelegt unter:";
-$a->strings["via"] = "via";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nDie Friendica-Entwickler haben vor kurzem das Update %s veröffentlicht, aber bei der Installation ging etwas schrecklich schief.\n\nDas Problem sollte so schnell wie möglich gelöst werden, aber ich schaffe es nicht alleine. Bitte kontaktiere einen Friendica-Entwickler falls Du mir nicht alleine helfen kannst. Meine Datenbank könnte ungültig sein.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Die Fehlermeldung lautet\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
-$a->strings["Errors encountered performing database changes."] = "Es sind Fehler beim Bearbeiten der Datenbank aufgetreten.";
-$a->strings["Logged out."] = "Abgemeldet.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
-$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
-);
-$a->strings["Find People"] = "Leute finden";
-$a->strings["Enter name or interest"] = "Name oder Interessen eingeben";
-$a->strings["Connect/Follow"] = "Verbinden/Folgen";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Beispiel: Robert Morgenstein, Angeln";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["General Features"] = "Allgemeine Features";
-$a->strings["Multiple Profiles"] = "Mehrere Profile";
-$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
-$a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Richtext Editor"] = "Web-Editor";
-$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
-$a->strings["Post Preview"] = "Beitragsvorschau";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
-$a->strings["Auto-mention Forums"] = "Foren automatisch erwähnen";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "Automatisch eine @-Erwähnung eines Forums einfügen/entfehrnen, wenn dieses im ACL Fenster de-/markiert  wurde.";
-$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
-$a->strings["Search by Date"] = "Archiv";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
-$a->strings["Group Filter"] = "Gruppen Filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
-$a->strings["Network Filter"] = "Netzwerk Filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
-$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen Du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
-$a->strings["Mute Post Notifications"] = "Benachrichtigungen für Beiträge Stumm schalten";
-$a->strings["Ability to mute notifications for a thread"] = "Möglichkeit Benachrichtigungen für einen Thread abbestellen zu können";
+$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
+$a->strings["Thank You,"] = "Danke,";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$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.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
+$a->strings["a private message"] = "eine private Nachricht";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
+$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
+$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
+$a->strings["Name:"] = "Name:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf  %2\$s bestätigt";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
+$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
+$a->strings["User not found."] = "Nutzer nicht gefunden.";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
+$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID.";
+$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID.";
+$a->strings["Invalid request."] = "Ungültige Anfrage";
+$a->strings["Invalid item."] = "Ungültiges Objekt";
+$a->strings["Invalid action. "] = "Ungültige Aktion";
+$a->strings["DB error"] = "DB Error";
+$a->strings["view full size"] = "Volle Größe anzeigen";
+$a->strings[" on Last.fm"] = " bei Last.fm";
+$a->strings["Full Name:"] = "Kompletter Name:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["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["Nothing new here"] = "Keine Neuigkeiten";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Your videos"] = "Deine Videos";
+$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Create an account"] = "Nutzerkonto erstellen";
+$a->strings["Help"] = "Hilfe";
+$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
+$a->strings["Apps"] = "Apps";
+$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
+$a->strings["Search"] = "Suche";
+$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
+$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
+$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
+$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";
+$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Private mail"] = "Private E-Mail";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["New Message"] = "Neue Nachricht";
+$a->strings["Manage"] = "Verwalten";
+$a->strings["Manage other pages"] = "Andere Seiten verwalten";
+$a->strings["Delegations"] = "Delegationen";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
+$a->strings["Account settings"] = "Kontoeinstellungen";
+$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
+$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
+$a->strings["Admin"] = "Administration";
+$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
+$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
+$a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
 $a->strings["Connect URL missing."] = "Connect-URL fehlt";
 $a->strings["This site is not configured to allow communications with other networks."] = "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann.";
 $a->strings["No compatible communication protocols or feeds were discovered."] = "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden.";
@@ -1362,17 +368,37 @@ $a->strings["An author or name was not found."] = "Es wurde kein Autor oder Name
 $a->strings["No browser URL could be matched to this address."] = "Zu dieser Adresse konnte keine passende Browser URL gefunden werden.";
 $a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen.";
 $a->strings["Use mailto: in front of address to force email check."] = "Verwende mailto: vor der Email Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
-$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
-$a->strings["following"] = "folgen";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls Du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
-$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
-$a->strings["Everybody"] = "Alle Kontakte";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von Dir erhalten können.";
+$a->strings["Unable to retrieve contact information."] = "Konnte die Kontaktinformationen nicht empfangen.";
+$a->strings["following"] = "folgen";
+$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       1 => "%d Kontakte nicht importiert",
+);
+$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$a->strings["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Poke"] = "Anstupsen";
+$a->strings["View Status"] = "Pinnwand anschauen";
+$a->strings["View Profile"] = "Profil anschauen";
+$a->strings["View Photos"] = "Bilder anschauen";
+$a->strings["Network Posts"] = "Netzwerkbeiträge";
+$a->strings["Edit Contact"] = "Kontakt bearbeiten";
+$a->strings["Drop Contact"] = "Kontakt löschen";
+$a->strings["Send PM"] = "Private Nachricht senden";
+$a->strings["\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["Miscellaneous"] = "Verschiedenes";
 $a->strings["year"] = "Jahr";
 $a->strings["month"] = "Monat";
@@ -1391,30 +417,53 @@ $a->strings["minutes"] = "Minuten";
 $a->strings["second"] = "Sekunde";
 $a->strings["seconds"] = "Sekunden";
 $a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["show"] = "zeigen";
-$a->strings["don't show"] = "nicht zeigen";
 $a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["stopped following"] = "wird nicht mehr gefolgt";
-$a->strings["Poke"] = "Anstupsen";
-$a->strings["View Status"] = "Pinnwand anschauen";
-$a->strings["View Profile"] = "Profil anschauen";
-$a->strings["View Photos"] = "Bilder anschauen";
-$a->strings["Network Posts"] = "Netzwerkbeiträge";
-$a->strings["Edit Contact"] = "Kontakt bearbeiten";
-$a->strings["Drop Contact"] = "Kontakt löschen";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
-$a->strings["event"] = "Veranstaltung";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
+$a->strings["Block immediately"] = "Sofort blockieren";
+$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
+$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
+$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
+$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
+$a->strings["Frequently"] = "immer wieder";
+$a->strings["Hourly"] = "Stündlich";
+$a->strings["Twice daily"] = "Zweimal täglich";
+$a->strings["Daily"] = "Täglich";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-Mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Diaspora";
+$a->strings["Statusnet"] = "StatusNet";
+$a->strings["App.net"] = "App.net";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
 $a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
-$a->strings["poked"] = "stupste";
+$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["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";
@@ -1427,30 +476,59 @@ $a->strings[", and %d other people"] = " und %d andere";
 $a->strings["%s like this."] = "%s mögen das.";
 $a->strings["%s don't like this."] = "%s mögen das nicht.";
 $a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
+$a->strings["Please enter a 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["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?";
+$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["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Public post"] = "Öffentlicher Beitrag";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$a->strings["Preview"] = "Vorschau";
 $a->strings["Post to Groups"] = "Poste an Gruppe";
 $a->strings["Post to Contacts"] = "Poste an Kontakte";
 $a->strings["Private post"] = "Privater Beitrag";
-$a->strings["view full size"] = "Volle Größe anzeigen";
 $a->strings["newer"] = "neuer";
 $a->strings["older"] = "älter";
 $a->strings["prev"] = "vorige";
 $a->strings["first"] = "erste";
 $a->strings["last"] = "letzte";
 $a->strings["next"] = "nächste";
+$a->strings["Loading more entries..."] = "lade weitere Einträge...";
+$a->strings["The end"] = "Das Ende";
 $a->strings["No contacts"] = "Keine Kontakte";
 $a->strings["%d Contact"] = array(
        0 => "%d Kontakt",
        1 => "%d Kontakte",
 );
+$a->strings["View Contacts"] = "Kontakte anzeigen";
+$a->strings["Save"] = "Speichern";
 $a->strings["poke"] = "anstupsen";
+$a->strings["poked"] = "stupste";
 $a->strings["ping"] = "anpingen";
 $a->strings["pinged"] = "pingte";
 $a->strings["prod"] = "knuffen";
@@ -1495,139 +573,38 @@ $a->strings["April"] = "April";
 $a->strings["May"] = "Mai";
 $a->strings["June"] = "Juni";
 $a->strings["July"] = "Juli";
-$a->strings["August"] = "August";
-$a->strings["September"] = "September";
-$a->strings["October"] = "Oktober";
-$a->strings["November"] = "November";
-$a->strings["December"] = "Dezember";
-$a->strings["bytes"] = "Byte";
-$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
-$a->strings["default"] = "Standard";
-$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
-$a->strings["activity"] = "Aktivität";
-$a->strings["post"] = "Beitrag";
-$a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["noreply"] = "noreply";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
-$a->strings["Block immediately"] = "Sofort blockieren";
-$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
-$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
-$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
-$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Diaspora";
-$a->strings["Statusnet"] = "StatusNet";
-$a->strings["App.net"] = "App.net";
-$a->strings[" on Last.fm"] = " bei Last.fm";
-$a->strings["Starts:"] = "Beginnt:";
-$a->strings["Finishes:"] = "Endet:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Tags:"] = "Tags";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Literatur/Bücher:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebesleben:";
-$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Click here to upgrade."] = "Zum Upgraden hier klicken.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Obergrenze Deines Abonnements.";
-$a->strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Deinem Abonnement nicht verfügbar.";
-$a->strings["End this session"] = "Diese Sitzung beenden";
-$a->strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
-$a->strings["Your profile page"] = "Deine Profilseite";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Your videos"] = "Deine Videos";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal notes"] = "Deine persönlichen Notizen";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$a->strings["Help and documentation"] = "Hilfe und Dokumentation";
-$a->strings["Apps"] = "Apps";
-$a->strings["Addon applications, utilities, games"] = "Addon Anwendungen, Dienstprogramme, Spiele";
-$a->strings["Search site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
-$a->strings["Conversations on the network"] = "Unterhaltungen im Netzwerk";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Information"] = "Information";
-$a->strings["Information about this friendica instance"] = "Informationen zu dieser Friendica Instanz";
-$a->strings["Conversations from your friends"] = "Unterhaltungen Deiner Kontakte";
-$a->strings["Network Reset"] = "Netzwerk zurücksetzen";
-$a->strings["Load Network page with no filters"] = "Netzwerk-Seite ohne Filter laden";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
-$a->strings["Private mail"] = "Private E-Mail";
-$a->strings["Inbox"] = "Eingang";
-$a->strings["Outbox"] = "Ausgang";
-$a->strings["Manage"] = "Verwalten";
-$a->strings["Manage other pages"] = "Andere Seiten verwalten";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
-$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
-$a->strings["Navigation"] = "Navigation";
-$a->strings["Site map"] = "Sitemap";
-$a->strings["User not found."] = "Nutzer nicht gefunden.";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Das tägliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Das wöchentliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Das monatliche Nachrichtenlimit von %d Nachrichten wurde erreicht. Die Nachtricht wurde verworfen.";
-$a->strings["There is no status with this id."] = "Es gibt keinen Status mit dieser ID.";
-$a->strings["There is no conversation with this id."] = "Es existiert keine Unterhaltung mit dieser ID.";
-$a->strings["Invalid request."] = "Ungültige Anfrage";
-$a->strings["Invalid item."] = "Ungültiges Objekt";
-$a->strings["Invalid action. "] = "Ungültige Aktion";
-$a->strings["DB error"] = "DB Error";
-$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
-$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
-$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
-$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
-$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
-$a->strings["Name too short."] = "Der Name ist zu kurz.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
-$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
-$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
-$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
-$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
-$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
-$a->strings["Friends"] = "Freunde";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\nHallo %1\$s,\n\ndanke für Deine Registrierung auf %2\$s. Dein Account wurde eingerichtet.";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\nDie Anmelde-Details sind die folgenden:\n\tAdresse der Seite:\t%3\$s\n\tBenutzernamename:\t%1\$s\n\tPasswort:\t%5\$s\n\nDu kannst Dein Passwort unter \"Einstellungen\" ändern, sobald Du Dich\nangemeldet hast.\n\nBitte nimm Dir ein paar Minuten um die anderen Einstellungen auf dieser\nSeite zu kontrollieren.\n\nEventuell magst Du ja auch einige Informationen über Dich in Deinem\nProfil veröffentlichen, damit andere Leute Dich einfacher finden können.\nBearbeite hierfür einfach Dein Standard-Profil (über die Profil-Seite).\n\nWir empfehlen Dir, Deinen kompletten Namen anzugeben und ein zu Dir\npassendes Profilbild zu wählen, damit Dich alte Bekannte wieder finden.\nAußerdem ist es nützlich, wenn Du auf Deinem Profil Schlüsselwörter\nangibst. Das erleichtert es, Leute zu finden, die Deine Interessen teilen.\n\nWir respektieren Deine Privatsphäre - keine dieser Angaben ist nötig.\nWenn Du neu im Netzwerk bist und noch niemanden kennst, dann können sie\nallerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDanke für Deine Aufmerksamkeit und willkommen auf %2\$s.";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["Do you really want to delete this item?"] = "Möchtest Du wirklich dieses Item löschen?";
-$a->strings["Archives"] = "Archiv";
+$a->strings["August"] = "August";
+$a->strings["September"] = "September";
+$a->strings["October"] = "Oktober";
+$a->strings["November"] = "November";
+$a->strings["December"] = "Dezember";
+$a->strings["View Video"] = "Video ansehen";
+$a->strings["bytes"] = "Byte";
+$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
+$a->strings["link to source"] = "Link zum Originalbeitrag";
+$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
+$a->strings["activity"] = "Aktivität";
+$a->strings["comment"] = array(
+       0 => "Kommentar",
+       1 => "Kommentare",
+);
+$a->strings["post"] = "Beitrag";
+$a->strings["Item filed"] = "Beitrag abgelegt";
+$a->strings["Logged out."] = "Abgemeldet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Beim Versuch Dich mit der von Dir angegebenen OpenID anzumelden trat ein Problem auf. Bitte überprüfe, dass Du die OpenID richtig geschrieben hast.";
+$a->strings["The error message was:"] = "Die Fehlermeldung lautete:";
+$a->strings["Image/photo"] = "Bild/Foto";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "<span><a href=\"%s\" target=\"_blank\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"_blank\">Beitrag</a>";
+$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["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["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
 $a->strings["Male"] = "Männlich";
 $a->strings["Female"] = "Weiblich";
 $a->strings["Currently Male"] = "Momentan männlich";
@@ -1664,6 +641,7 @@ $a->strings["Infatuated"] = "verliebt";
 $a->strings["Dating"] = "Dating";
 $a->strings["Unfaithful"] = "Untreu";
 $a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends"] = "Freunde";
 $a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Verlobt";
@@ -1685,113 +663,1144 @@ $a->strings["Uncertain"] = "Unsicher";
 $a->strings["It's complicated"] = "Ist kompliziert";
 $a->strings["Don't care"] = "Ist mir nicht wichtig";
 $a->strings["Ask me"] = "Frag mich";
-$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
-$a->strings["Thank You,"] = "Danke,";
-$a->strings["%s Administrator"] = "der Administrator von %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica-Meldung] Neue Nachricht erhalten von %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s hat Dir eine neue private Nachricht auf %2\$s geschickt.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s schickte Dir %2\$s.";
-$a->strings["a private message"] = "eine private Nachricht";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um Deine privaten Nachrichten anzusehen und/oder zu beantworten.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]a %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]%3\$ss %4\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s kommentierte [url=%2\$s]Deinen %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica-Meldung] Kommentar zum Beitrag #%1\$d von %2\$s";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s hat einen Beitrag kommentiert, dem Du folgst.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Bitte besuche %s, um die Konversation anzusehen und/oder zu kommentieren.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica-Meldung] %s hat auf Deine Pinnwand geschrieben";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s schrieb auf %2\$s auf Deine Pinnwand";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s hat etwas auf [url=%2\$s]Deiner Pinnwand[/url] gepostet";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica-Meldung] %s hat Dich erwähnt";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s erwähnte Dich auf %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]erwähnte Dich[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica Benachrichtigung] %s hat einen Beitrag geteilt";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s hat einen neuen Beitrag auf %2\$s geteilt";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]hat einen Beitrag geteilt[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica-Meldung] %1\$s hat Dich angestupst";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s hat Dich auf %2\$s angestupst";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]hat Dich angestupst[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica-Meldung] %s hat Deinen Beitrag getaggt";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s erwähnte Deinen Beitrag auf %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s erwähnte [url=%2\$s]Deinen Beitrag[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica-Meldung] Kontaktanfrage erhalten";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Du hast eine Kontaktanfrage von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Kontaktanfrage[/url] von %2\$s erhalten.";
-$a->strings["You may visit their profile at %s"] = "Hier kannst Du das Profil betrachten: %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Friendica Benachrichtigung] Eine neue Person teilt mit Dir";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s teilt mit Dir auf %2\$s";
-$a->strings["[Friendica:Notify] You have a new follower"] = "[Friendica Benachrichtigung] Du hast einen neuen Kontakt auf ";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "Du hast einen neuen Kontakt auf %2\$s: %1\$s";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-Vorschlag von '%1\$s' auf %2\$s erhalten";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Du hast einen [url=%1\$s]Freunde-Vorschlag[/url] %2\$s von %3\$s erhalten.";
-$a->strings["Name:"] = "Name:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "[Friendica-Benachrichtigung] Kontaktanfrage bestätigt";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "'%1\$s' hat Deine Kontaktanfrage auf  %2\$s bestätigt";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s hat Deine [url=%1\$s]Kontaktanfrage[/url] akzeptiert.";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "Ihr seit nun beidseitige Freunde und könnt Statusmitteilungen, Bilder und Emails ohne Einschränkungen austauschen.";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "Bitte besuche %s, wenn Du Änderungen an eurer Beziehung vornehmen willst.";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "'%1\$s' hat sich entschieden Dich als \"Fan\" zu akzeptieren, dies schränkt einige Kommunikationswege - wie private Nachrichten und einige Interaktionsmöglichkeiten auf der Profilseite - ein. Wenn dies eine Berühmtheiten- oder Gemeinschaftsseite ist, werden diese Einstellungen automatisch vorgenommen.";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "'%1\$s' kann den Kontaktstatus zu einem späteren Zeitpunkt erweitern und diese Einschränkungen aufheben. ";
-$a->strings["[Friendica System:Notify] registration request"] = "[Friendica System:Benachrichtigung] Registrationsanfrage";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Du hast eine Registrierungsanfrage von %2\$s auf '%1\$s' erhalten";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Du hast eine [url=%1\$s]Registrierungsanfrage[/url] von %2\$s erhalten.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Kompletter Name:\t%1\$s\\nURL der Seite:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Bitte besuche %s um die Anfrage zu bearbeiten.";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
+$a->strings["An invitation is required."] = "Du benötigst eine Einladung.";
+$a->strings["Invitation could not be verified."] = "Die Einladung konnte nicht überprüft werden.";
+$a->strings["Invalid OpenID url"] = "Ungültige OpenID URL";
+$a->strings["Please enter the required information."] = "Bitte trage die erforderlichen Informationen ein.";
+$a->strings["Please use a shorter name."] = "Bitte verwende einen kürzeren Namen.";
+$a->strings["Name too short."] = "Der Name ist zu kurz.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Das scheint nicht Dein kompletter Name (Vor- und Nachname) zu sein.";
+$a->strings["Your email domain is not among those allowed on this site."] = "Die Domain Deiner E-Mail Adresse ist auf dieser Seite nicht erlaubt.";
+$a->strings["Not a valid email address."] = "Keine gültige E-Mail-Adresse.";
+$a->strings["Cannot use that email."] = "Konnte diese E-Mail-Adresse nicht verwenden.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
+$a->strings["Nickname is already registered. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden.";
+$a->strings["An error occurred during registration. Please try again."] = "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal.";
+$a->strings["\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["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["This entry was edited"] = "Dieser Beitrag wurde bearbeitet.";
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["ignore thread"] = "Thread ignorieren";
+$a->strings["unignore thread"] = "Thread nicht mehr ignorieren";
+$a->strings["toggle ignore status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["ignored"] = "Ignoriert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["to"] = "zu";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["%d comment"] = array(
+       0 => "%d Kommentar",
+       1 => "%d Kommentare",
+);
+$a->strings["This is you"] = "Das bist Du";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Item not available."] = "Beitrag nicht verfügbar.";
+$a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
+$a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
+$a->strings["Unable to check your home location."] = "Konnte Deinen Heimatort nicht bestimmen.";
+$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["No recipient."] = "Kein Empfänger.";
+$a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Wenn Du möchtest, dass %s Dir antworten kann, überprüfe Deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern.";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["Your message:"] = "Deine Nachricht:";
+$a->strings["Group created."] = "Gruppe erstellt.";
+$a->strings["Could not create group."] = "Konnte die Gruppe nicht erstellen.";
+$a->strings["Group not found."] = "Gruppe nicht gefunden.";
+$a->strings["Group name changed."] = "Gruppenname geändert.";
+$a->strings["Save Group"] = "Gruppe speichern";
+$a->strings["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["Group Editor"] = "Gruppeneditor";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["All Contacts"] = "Alle Kontakte";
+$a->strings["Click on a contact to add or remove."] = "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen";
+$a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Bevollmächtigte sind in der Lage, alle Aspekte dieses Kontos/dieser Seite zu verwalten, abgesehen von den Grundeinstellungen des Kontos. Bitte gib niemandem eine Bevollmächtigung für Deinen privaten Account, dem Du nicht absolut vertraust!";
+$a->strings["Existing Page Managers"] = "Vorhandene Seitenmanager";
+$a->strings["Existing Page Delegates"] = "Vorhandene Bevollmächtigte für die Seite";
+$a->strings["Potential Delegates"] = "Potentielle Bevollmächtigte";
+$a->strings["Remove"] = "Entfernen";
+$a->strings["Add"] = "Hinzufügen";
+$a->strings["No entries."] = "Keine Einträge.";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["System"] = "System";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
+$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
+$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["suggested by %s"] = "vorgeschlagen von %s";
+$a->strings["Hide this contact from others"] = "Verbirg diesen Kontakt von anderen";
+$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
+$a->strings["if applicable"] = "falls anwendbar";
+$a->strings["Approve"] = "Genehmigen";
+$a->strings["Claims to be known to you: "] = "Behauptet Dich zu kennen: ";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "nein";
+$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Fan/Verehrer\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
+$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "Soll Deine Beziehung beidseitig sein oder nicht? \"Freund\" bedeutet, ihr gegenseitig die Beiträge des Anderen lesen dürft. \"Teilenden\", das du das lesen deiner Beiträge erlaubst aber nicht die Beiträge der anderen Seite lesen möchtest. Genehmigen als:";
+$a->strings["Friend"] = "Freund";
+$a->strings["Sharer"] = "Teilenden";
+$a->strings["Fan/Admirer"] = "Fan/Verehrer";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["No introductions."] = "Keine Kontaktanfragen.";
+$a->strings["%s liked %s's post"] = "%s mag %ss Beitrag";
+$a->strings["%s disliked %s's post"] = "%s mag %ss Beitrag nicht";
+$a->strings["%s is now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
+$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
+$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["System Notifications"] = "Systembenachrichtigungen";
+$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
+$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
+$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
+$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
+$a->strings["No profile"] = "Kein Profil";
+$a->strings["everybody"] = "jeder";
+$a->strings["Account"] = "Nutzerkonto";
+$a->strings["Additional features"] = "Zusätzliche Features";
+$a->strings["Display"] = "Anzeige";
+$a->strings["Social Networks"] = "Soziale Netzwerke";
+$a->strings["Plugins"] = "Plugins";
+$a->strings["Connected apps"] = "Verbundene Programme";
+$a->strings["Export personal data"] = "Persönliche Daten exportieren";
+$a->strings["Remove account"] = "Konto löschen";
+$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
+$a->strings["Update"] = "Aktualisierungen";
+$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
+$a->strings["Email settings updated."] = "E-Mail Einstellungen bearbeitet.";
+$a->strings["Features updated"] = "Features aktualisiert";
+$a->strings["Relocate message has been send to your contacts"] = "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.";
+$a->strings["Passwords do not match. Password unchanged."] = "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert.";
+$a->strings["Wrong password."] = "Falsches Passwort.";
+$a->strings["Password changed."] = "Passwort geändert.";
+$a->strings["Password update failed. Please try again."] = "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal.";
+$a->strings[" Please use a shorter name."] = " Bitte verwende einen kürzeren Namen.";
+$a->strings[" Name too short."] = " Name ist zu kurz.";
+$a->strings["Wrong Password"] = "Falsches Passwort";
+$a->strings[" Not valid email."] = " Keine gültige E-Mail.";
+$a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
+$a->strings["Add application"] = "Programm hinzufügen";
+$a->strings["Save Settings"] = "Einstellungen speichern";
+$a->strings["Name"] = "Name";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
+$a->strings["Redirect"] = "Umleiten";
+$a->strings["Icon url"] = "Icon URL";
+$a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
+$a->strings["Connected Apps"] = "Verbundene Programme";
+$a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
+$a->strings["No name"] = "Kein Name";
+$a->strings["Remove authorization"] = "Autorisierung entziehen";
+$a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
+$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
+$a->strings["Off"] = "Aus";
+$a->strings["On"] = "An";
+$a->strings["Additional Features"] = "Zusätzliche Features";
+$a->strings["Built-in support for %s connectivity is %s"] = "Eingebaute Unterstützung für Verbindungen zu %s ist %s";
+$a->strings["enabled"] = "eingeschaltet";
+$a->strings["disabled"] = "ausgeschaltet";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "Zugriff auf E-Mails für diese Seite deaktiviert.";
+$a->strings["Email/Mailbox Setup"] = "E-Mail/Postfach-Einstellungen";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Wenn Du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für Dein Postfach an.";
+$a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Check";
+$a->strings["IMAP server name:"] = "IMAP-Server-Name:";
+$a->strings["IMAP port:"] = "IMAP-Port:";
+$a->strings["Security:"] = "Sicherheit:";
+$a->strings["None"] = "Keine";
+$a->strings["Email login name:"] = "E-Mail-Login-Name:";
+$a->strings["Email password:"] = "E-Mail-Passwort:";
+$a->strings["Reply-to address:"] = "Reply-to Adresse:";
+$a->strings["Send public posts to all email contacts:"] = "Sende öffentliche Beiträge an alle E-Mail-Kontakte:";
+$a->strings["Action after import:"] = "Aktion nach Import:";
+$a->strings["Mark as seen"] = "Als gelesen markieren";
+$a->strings["Move to folder"] = "In einen Ordner verschieben";
+$a->strings["Move to folder:"] = "In diesen Ordner verschieben:";
+$a->strings["No special theme for mobile devices"] = "Kein spezielles Theme für mobile Geräte verwenden.";
+$a->strings["Display Settings"] = "Anzeige-Einstellungen";
+$a->strings["Display Theme:"] = "Theme:";
+$a->strings["Mobile Theme:"] = "Mobiles Theme";
+$a->strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Minimal 10 Sekunden, kein Maximum";
+$a->strings["Number of items to display per page:"] = "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ";
+$a->strings["Maximum of 100 items"] = "Maximal 100 Beiträge";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:";
+$a->strings["Don't show emoticons"] = "Keine Smilies anzeigen";
+$a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
+$a->strings["Infinite scroll"] = "Endloses Scrollen";
+$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist.";
+$a->strings["User Types"] = "Nutzer Art";
+$a->strings["Community Types"] = "Gemeinschafts Art";
+$a->strings["Normal Account Page"] = "Normales Konto";
+$a->strings["This account is a normal personal profile"] = "Dieses Konto ist ein normales persönliches Profil";
+$a->strings["Soapbox Page"] = "Marktschreier-Konto";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert";
+$a->strings["Community Forum/Celebrity Account"] = "Forum/Promi-Konto";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert";
+$a->strings["Automatic Friend Page"] = "Automatische Freunde Seite";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Kontaktanfragen werden automatisch als Freund akzeptiert";
+$a->strings["Private Forum [Experimental]"] = "Privates Forum [Versuchsstadium]";
+$a->strings["Private forum - approved members only"] = "Privates Forum, nur für Mitglieder";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID.";
+$a->strings["Publish your default profile in your local site directory?"] = "Darf Dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?";
+$a->strings["No"] = "Nein";
+$a->strings["Publish your default profile in the global social directory?"] = "Darf Dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "Wenn aktiviert, ist das senden öffentliche Nachrichten zu Diaspora und anderen Netzwerken nicht möglich";
+$a->strings["Allow friends to post to your profile page?"] = "Dürfen Deine Kontakte auf Deine Pinnwand schreiben?";
+$a->strings["Allow friends to tag your posts?"] = "Dürfen Deine Kontakte Deine Beiträge mit Schlagwörtern versehen?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?";
+$a->strings["Permit unknown people to send you private mail?"] = "Dürfen Dir Unbekannte private Nachrichten schicken?";
+$a->strings["Profile is <strong>not published</strong>."] = "Profil ist <strong>nicht veröffentlicht</strong>.";
+$a->strings["or"] = "oder";
+$a->strings["Your Identity Address is"] = "Die Adresse Deines Profils lautet:";
+$a->strings["Automatically expire posts after this many days:"] = "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Wenn leer verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht.";
+$a->strings["Advanced expiration settings"] = "Erweiterte Verfallseinstellungen";
+$a->strings["Advanced Expiration"] = "Erweitertes Verfallen";
+$a->strings["Expire posts:"] = "Beiträge verfallen lassen:";
+$a->strings["Expire personal notes:"] = "Persönliche Notizen verfallen lassen:";
+$a->strings["Expire starred posts:"] = "Markierte Beiträge verfallen lassen:";
+$a->strings["Expire photos:"] = "Fotos verfallen lassen:";
+$a->strings["Only expire posts by others:"] = "Nur Beiträge anderer verfallen:";
+$a->strings["Account Settings"] = "Kontoeinstellungen";
+$a->strings["Password Settings"] = "Passwort-Einstellungen";
+$a->strings["New Password:"] = "Neues Passwort:";
+$a->strings["Confirm:"] = "Bestätigen:";
+$a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer Du willst das Passwort ändern";
+$a->strings["Current Password:"] = "Aktuelles Passwort:";
+$a->strings["Your current password to confirm the changes"] = "Dein aktuelles Passwort um die Änderungen zu bestätigen";
+$a->strings["Password:"] = "Passwort:";
+$a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Email Address:"] = "E-Mail-Adresse:";
+$a->strings["Your Timezone:"] = "Deine Zeitzone:";
+$a->strings["Default Post Location:"] = "Standardstandort:";
+$a->strings["Use Browser Location:"] = "Standort des Browsers verwenden:";
+$a->strings["Security and Privacy Settings"] = "Sicherheits- und Privatsphäre-Einstellungen";
+$a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschaftsanfragen/Tag:";
+$a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
+$a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
+$a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
+$a->strings["Default Private Post"] = "Privater Standardbeitrag";
+$a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
+$a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:";
+$a->strings["Notification Settings"] = "Benachrichtigungseinstellungen";
+$a->strings["By default post a status message when:"] = "Standardmäßig eine Statusnachricht posten, wenn:";
+$a->strings["accepting a friend request"] = "– Du eine Kontaktanfrage akzeptierst";
+$a->strings["joining a forum/community"] = "– Du einem Forum/einer Gemeinschaftsseite beitrittst";
+$a->strings["making an <em>interesting</em> profile change"] = "– Du eine <em>interessante</em> Änderung an Deinem Profil durchführst";
+$a->strings["Send a notification email when:"] = "Benachrichtigungs-E-Mail senden wenn:";
+$a->strings["You receive an introduction"] = "– Du eine Kontaktanfrage erhältst";
+$a->strings["Your introductions are confirmed"] = "– eine Deiner Kontaktanfragen akzeptiert wurde";
+$a->strings["Someone writes on your profile wall"] = "– jemand etwas auf Deine Pinnwand schreibt";
+$a->strings["Someone writes a followup comment"] = "– jemand auch einen Kommentar verfasst";
+$a->strings["You receive a private message"] = "– Du eine private Nachricht erhältst";
+$a->strings["You receive a friend suggestion"] = "– Du eine Empfehlung erhältst";
+$a->strings["You are tagged in a post"] = "– Du in einem Beitrag erwähnt wirst";
+$a->strings["You are poked/prodded/etc. in a post"] = "– Du von jemandem angestupst oder sonstwie behandelt wirst";
+$a->strings["Text-only notification emails"] = "Benachrichtigungs E-Mail als Rein-Text.";
+$a->strings["Send text only notification emails, without the html part"] = "Sende Benachrichtigungs E-Mail als Rein-Text - ohne HTML-Teil";
+$a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
+$a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
+$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["Common Friends"] = "Gemeinsame Freunde";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$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["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Contact has been blocked"] = "Kontakt wurde blockiert";
+$a->strings["Contact has been unblocked"] = "Kontakt wurde wieder freigegeben";
+$a->strings["Contact has been ignored"] = "Kontakt wurde ignoriert";
+$a->strings["Contact has been unignored"] = "Kontakt wird nicht mehr ignoriert";
+$a->strings["Contact has been archived"] = "Kontakt wurde archiviert";
+$a->strings["Contact has been unarchived"] = "Kontakt wurde aus dem Archiv geholt";
+$a->strings["Do you really want to delete this contact?"] = "Möchtest Du wirklich diesen Kontakt löschen?";
+$a->strings["Contact has been removed."] = "Kontakt wurde entfernt.";
+$a->strings["You are mutual friends with %s"] = "Du hast mit %s eine beidseitige Freundschaft";
+$a->strings["You are sharing with %s"] = "Du teilst mit %s";
+$a->strings["%s is sharing with you"] = "%s teilt mit Dir";
+$a->strings["Private communications are not available for this contact."] = "Private Kommunikation ist für diesen Kontakt nicht verfügbar.";
+$a->strings["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["View all contacts"] = "Alle Kontakte anzeigen";
+$a->strings["Unblock"] = "Entsperren";
+$a->strings["Block"] = "Sperren";
+$a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
+$a->strings["Unignore"] = "Ignorieren aufheben";
+$a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
+$a->strings["Unarchive"] = "Aus Archiv zurückholen";
+$a->strings["Archive"] = "Archivieren";
+$a->strings["Toggle Archive status"] = "Archiviert-Status ein-/ausschalten";
+$a->strings["Repair"] = "Reparieren";
+$a->strings["Advanced Contact Settings"] = "Fortgeschrittene Kontakteinstellungen";
+$a->strings["Communications lost with this contact!"] = "Verbindungen mit diesem Kontakt verloren!";
+$a->strings["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 Editor"] = "Kontakt Editor";
+$a->strings["Profile Visibility"] = "Profil-Sichtbarkeit";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle eines Deiner Profile das angezeigt werden soll, wenn %s Dein Profil aufruft.";
+$a->strings["Contact Information / Notes"] = "Kontakt Informationen / Notizen";
+$a->strings["Edit contact notes"] = "Notizen zum Kontakt bearbeiten";
+$a->strings["Visit %s's profile [%s]"] = "Besuche %ss Profil [%s]";
+$a->strings["Block/Unblock contact"] = "Kontakt blockieren/freischalten";
+$a->strings["Ignore contact"] = "Ignoriere den Kontakt";
+$a->strings["Repair URL settings"] = "URL Einstellungen reparieren";
+$a->strings["View conversations"] = "Unterhaltungen anzeigen";
+$a->strings["Delete contact"] = "Lösche den Kontakt";
+$a->strings["Last update:"] = "Letzte Aktualisierung: ";
+$a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
+$a->strings["Update now"] = "Jetzt aktualisieren";
+$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["Suggestions"] = "Kontaktvorschläge";
+$a->strings["Suggest potential friends"] = "Freunde 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["Mutual Friendship"] = "Beidseitige Freundschaft";
+$a->strings["is a fan of yours"] = "ist ein Fan von dir";
+$a->strings["you are a fan of"] = "Du bist Fan von";
+$a->strings["Edit contact"] = "Kontakt bearbeiten";
+$a->strings["Search your contacts"] = "Suche in deinen Kontakten";
+$a->strings["Finding: "] = "Funde: ";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Entschuldige, die Datei scheint größer zu sein als es die PHP Konfiguration erlaubt.";
+$a->strings["Or - did you try to upload an empty file?"] = "Oder - hast Du versucht, eine leere Datei hochzuladen?";
+$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
+$a->strings["Export account"] = "Account exportieren";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere Deine Accountinformationen und Kontakte. Verwende dies um ein Backup Deines Accounts anzulegen und/oder damit auf einen anderen Server umzuziehen.";
+$a->strings["Export all"] = "Alles exportieren";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportiere Deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup Deines Accounts anzulegen (Fotos werden nicht exportiert).";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Versenden der E-Mail fehlgeschlagen. Hier sind Deine Account Details:\n\nLogin: %s\nPasswort: %s\n\nDu kannst das Passwort nach dem Anmelden ändern.";
+$a->strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden.";
+$a->strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf dieser Seite wurde überschritten. Bitte versuche es morgen noch einmal.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Du kannst dieses Formular auch (optional) mit Deiner OpenID ausfüllen, indem Du Deine OpenID angibst und 'Registrieren' klickst.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Wenn Du nicht mit OpenID vertraut bist, lass dieses Feld bitte leer und fülle die restlichen Felder aus.";
+$a->strings["Your OpenID (optional): "] = "Deine OpenID (optional): ";
+$a->strings["Include your profile in member directory?"] = "Soll Dein Profil im Nutzerverzeichnis angezeigt werden?";
+$a->strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich.";
+$a->strings["Your invitation ID: "] = "ID Deiner Einladung: ";
+$a->strings["Registration"] = "Registrierung";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Max Mustermann): ";
+$a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Wähle einen Spitznamen für Dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse Deines Profils auf dieser Seite wird '<strong>spitzname@\$sitename</strong>' sein.";
+$a->strings["Choose a nickname: "] = "Spitznamen wählen: ";
+$a->strings["Import"] = "Import";
+$a->strings["Import your profile to this friendica instance"] = "Importiere Dein Profil auf diese Friendica Instanz";
+$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["System down for maintenance"] = "System zur Wartung abgeschaltet";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$a->strings["No videos selected"] = "Keine Videos  ausgewählt";
+$a->strings["Access to this item is restricted."] = "Zugriff zu diesem Eintrag wurde eingeschränkt.";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["Recent Videos"] = "Neueste Videos";
+$a->strings["Upload New Videos"] = "Neues Video hochladen";
+$a->strings["Manage Identities and/or Pages"] = "Verwalte Identitäten und/oder Seiten";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Zwischen verschiedenen Identitäten oder Gemeinschafts-/Gruppenseiten wechseln, die Deine Kontoinformationen teilen oder zu denen Du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten aus: ";
+$a->strings["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["People Search"] = "Personensuche";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
+$a->strings["Account approved."] = "Konto freigegeben.";
+$a->strings["Registration revoked for %s"] = "Registrierung für %s wurde zurückgezogen";
+$a->strings["Please login."] = "Bitte melde Dich an.";
+$a->strings["This introduction has already been accepted."] = "Diese Kontaktanfrage wurde bereits akzeptiert.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Profiladresse ist ungültig oder stellt keine Profildaten zur Verfügung.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden.";
+$a->strings["Warning: profile location has no profile photo."] = "Warnung: Es gibt kein Profilbild bei der angegebenen Profiladresse.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d benötigter Parameter wurde an der angegebenen Stelle nicht gefunden",
+       1 => "%d benötigte Parameter wurden an der angegebenen Stelle nicht gefunden",
+);
+$a->strings["Introduction complete."] = "Kontaktanfrage abgeschlossen.";
+$a->strings["Unrecoverable protocol error."] = "Nicht behebbarer Protokollfehler.";
+$a->strings["Profile unavailable."] = "Profil nicht verfügbar.";
+$a->strings["%s has received too many connection requests today."] = "%s hat heute zu viele Freundschaftsanfragen erhalten.";
+$a->strings["Spam protection measures have been invoked."] = "Maßnahmen zum Spamschutz wurden ergriffen.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen.";
+$a->strings["Invalid locator"] = "Ungültiger Locator";
+$a->strings["Invalid email address."] = "Ungültige E-Mail-Adresse.";
+$a->strings["This account has not been configured for email. Request failed."] = "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen.";
+$a->strings["Unable to resolve your name at the provided location."] = "Konnte Deinen Namen an der angegebenen Stelle nicht finden.";
+$a->strings["You have already introduced yourself here."] = "Du hast Dich hier bereits vorgestellt.";
+$a->strings["Apparently you are already friends with %s."] = "Es scheint so, als ob Du bereits mit %s befreundet bist.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$a->strings["Please login to confirm introduction."] = "Bitte melde Dich an, um die Kontaktanfrage zu bestätigen.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Momentan bist Du mit einer anderen Identität angemeldet. Bitte melde Dich mit <strong>diesem</strong> Profil an.";
+$a->strings["Hide this contact"] = "Verberge diesen Kontakt";
+$a->strings["Welcome home %s."] = "Willkommen zurück %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Bitte bestätige Deine Kontaktanfrage bei %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Bitte gib die Adresse Deines Profils in einem der unterstützten sozialen Netzwerke an:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Wenn Du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://Dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Freundschafts-/Kontaktanfrage";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Beispiele: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Bitte beantworte folgendes:";
+$a->strings["Does %s know you?"] = "Kennt %s Dich?";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in Deiner Diaspora Suchleiste.";
+$a->strings["Your Identity Address:"] = "Adresse Deines Profils:";
+$a->strings["Submit Request"] = "Anfrage abschicken";
+$a->strings["Files"] = "Dateien";
+$a->strings["Authorize application connection"] = "Verbindung der Applikation autorisieren";
+$a->strings["Return to your app and insert this Securty Code:"] = "Gehe zu Deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:";
+$a->strings["Please login to continue."] = "Bitte melde Dich an um fortzufahren.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung den Zugriff auf Deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in Deinem Namen gestatten?";
+$a->strings["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["Contacts who are not members of a group"] = "Kontakte, die keiner Gruppe zugewiesen sind";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$a->strings["Friend suggestion sent."] = "Kontaktvorschlag gesendet.";
+$a->strings["Suggest Friends"] = "Kontakte vorschlagen";
+$a->strings["Suggest a friend for %s"] = "Schlage %s einen Kontakt vor";
+$a->strings["link"] = "Link";
+$a->strings["No contacts."] = "Keine Kontakte.";
+$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
+$a->strings["Site"] = "Seite";
+$a->strings["Users"] = "Nutzer";
+$a->strings["Themes"] = "Themen";
+$a->strings["DB updates"] = "DB Updates";
+$a->strings["Logs"] = "Protokolle";
+$a->strings["probe address"] = "Adresse untersuchen";
+$a->strings["check webfinger"] = "Webfinger überprüfen";
+$a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["diagnostics"] = "Diagnose";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
+$a->strings["Normal Account"] = "Normales Konto";
+$a->strings["Soapbox Account"] = "Marktschreier-Konto";
+$a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
+$a->strings["Automatic Friend Account"] = "Automatisches Freundekonto";
+$a->strings["Blog Account"] = "Blog-Konto";
+$a->strings["Private Forum"] = "Privates Forum";
+$a->strings["Message queues"] = "Nachrichten-Warteschlangen";
+$a->strings["Administration"] = "Administration";
+$a->strings["Summary"] = "Zusammenfassung";
+$a->strings["Registered users"] = "Registrierte Nutzer";
+$a->strings["Pending registrations"] = "Anstehende Anmeldungen";
+$a->strings["Version"] = "Version";
+$a->strings["Active plugins"] = "Aktive Plugins";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus <protokoll>://<domain> bestehen";
+$a->strings["Site settings updated."] = "Seiteneinstellungen aktualisiert.";
+$a->strings["No 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["At post arrival"] = "Beim Empfang von Nachrichten";
+$a->strings["Multi user instance"] = "Mehrbenutzer Instanz";
+$a->strings["Closed"] = "Geschlossen";
+$a->strings["Requires approval"] = "Bedarf der Zustimmung";
+$a->strings["Open"] = "Offen";
+$a->strings["No SSL policy, links will track page SSL state"] = "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten";
+$a->strings["Force all links to use SSL"] = "SSL für alle Links erzwingen";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)";
+$a->strings["File upload"] = "Datei hochladen";
+$a->strings["Policies"] = "Regeln";
+$a->strings["Advanced"] = "Erweitert";
+$a->strings["Performance"] = "Performance";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Umsiedeln - WARNUNG: Könnte diesen Server unerreichbar machen.";
+$a->strings["Site name"] = "Seitenname";
+$a->strings["Host name"] = "Host Name";
+$a->strings["Sender Email"] = "Absender für Emails";
+$a->strings["Banner/Logo"] = "Banner/Logo";
+$a->strings["Shortcut icon"] = "Shortcut Icon";
+$a->strings["Touch icon"] = "Touch Icon";
+$a->strings["Additional Info"] = "Zusätzliche Informationen";
+$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Für öffentliche Server kannst Du hier zusätzliche Informationen angeben, die dann auf Dir.friendica.com/siteinfo angezeigt werden.";
+$a->strings["System language"] = "Systemsprache";
+$a->strings["System theme"] = "Systemweites Theme";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - <a href='#' id='cnftheme'>Theme-Einstellungen ändern</a>";
+$a->strings["Mobile system theme"] = "Systemweites mobiles Theme";
+$a->strings["Theme for mobile devices"] = "Thema für mobile Geräte";
+$a->strings["SSL link policy"] = "Regeln für SSL Links";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Bestimmt, ob generierte Links SSL verwenden müssen";
+$a->strings["Force SSL"] = "Erzwinge SSL";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Erzinge alle Nicht-SSL Anfragen auf SSL - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife.";
+$a->strings["Old style 'Share'"] = "Altes \"Teilen\" Element";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Deaktiviert das BBCode Element \"share\" beim Wiederholen von Beiträgen.";
+$a->strings["Hide help entry from navigation menu"] = "Verberge den Menüeintrag für die Hilfe im Navigationsmenü";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden.";
+$a->strings["Single user instance"] = "Ein-Nutzer Instanz";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Regelt ob es sich bei dieser Instanz um eine ein Personen Installation oder eine Installation mit mehr als einem Nutzer handelt.";
+$a->strings["Maximum image size"] = "Maximale Bildgröße";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit.";
+$a->strings["Maximum image length"] = "Maximale Bildlänge";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maximale Länge in Pixeln der längsten Seite eines hoch geladenen Bildes. Grundeinstellung ist -1 was keine Einschränkung bedeutet.";
+$a->strings["JPEG image quality"] = "Qualität des JPEG Bildes";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Hoch geladene JPEG Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust.";
+$a->strings["Register policy"] = "Registrierungsmethode";
+$a->strings["Maximum Daily Registrations"] = "Maximum täglicher Registrierungen";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "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.";
+$a->strings["Register text"] = "Registrierungstext";
+$a->strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungsseite angezeigt.";
+$a->strings["Accounts abandoned after x days"] = "Nutzerkonten gelten nach x Tagen als unbenutzt";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit.";
+$a->strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben.";
+$a->strings["Allowed email domains"] = "Erlaubte Domains für E-Mails";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "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.";
+$a->strings["Block public"] = "Öffentlichen Zugriff blockieren";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist.";
+$a->strings["Force publish"] = "Erzwinge Veröffentlichung";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen.";
+$a->strings["Global directory update URL"] = "URL für Updates beim weltweiten Verzeichnis";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar.";
+$a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
+$a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
+$a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
+$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Öffentlichen Zugriff auf Addons im Apps Menü verbieten.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Wenn ausgewählt werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt.";
+$a->strings["Don't embed private images in posts"] = "Private Bilder nicht in Beiträgen einbetten.";
+$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "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.";
+$a->strings["Allow Users to set remote_self"] = "Nutzern erlauben das remote_self Flag zu setzen";
+$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "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.";
+$a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
+$a->strings["OpenID support"] = "OpenID Unterstützung";
+$a->strings["OpenID support for registration and logins."] = "OpenID-Unterstützung für Registrierung und Login.";
+$a->strings["Fullname check"] = "Namen auf Vollständigkeit überprüfen";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Leerzeichen zwischen Vor- und Nachname im vollständigen Namen erzwingen, um SPAM zu vermeiden.";
+$a->strings["UTF-8 Regular expressions"] = "UTF-8 Reguläre Ausdrücke";
+$a->strings["Use PHP UTF8 regular expressions"] = "PHP UTF8 Ausdrücke verwenden";
+$a->strings["Community Page Style"] = "Art der Gemeinschaftsseite";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "Welche Art der Gemeinschaftsseite soll verwendet werden? Globale Gemeinschaftsseite zeigt alle öffentlichen Beiträge eines offenen dezentralen Netzwerks an die auf diesem Server eintreffen.";
+$a->strings["Posts per user on community page"] = "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "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.";
+$a->strings["Enable OStatus support"] = "OStatus Unterstützung aktivieren";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "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.";
+$a->strings["OStatus conversation completion interval"] = "Intervall zum Vervollständigen von OStatus Unterhaltungen";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "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.";
+$a->strings["Enable Diaspora support"] = "Diaspora-Support aktivieren";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Verwende die eingebaute Diaspora-Verknüpfung.";
+$a->strings["Only allow Friendica contacts"] = "Nur Friendica-Kontakte erlauben";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Alle Kontakte müssen das Friendica Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert.";
+$a->strings["Verify SSL"] = "SSL Überprüfen";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Wenn gewollt, kann man hier eine strenge Zertifikatkontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL eine Verbindung herstellen kann.";
+$a->strings["Proxy user"] = "Proxy Nutzer";
+$a->strings["Proxy URL"] = "Proxy URL";
+$a->strings["Network timeout"] = "Netzwerk Wartezeit";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen).";
+$a->strings["Delivery interval"] = "Zustellungsintervall";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "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.";
+$a->strings["Poll interval"] = "Abfrageintervall";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl an Sekunden, um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet.";
+$a->strings["Maximum Load Average"] = "Maximum Load Average";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50";
+$a->strings["Use MySQL full text engine"] = "Nutze MySQL full text engine";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden.";
+$a->strings["Suppress Language"] = "Sprachinformation unterdrücken";
+$a->strings["Suppress language information in meta information about a posting."] = "Verhindert das Erzeugen der Meta-Information zur Spracherkennung eines Beitrags.";
+$a->strings["Suppress Tags"] = "Tags Unterdrücken";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "Unterdrückt die Anzeige von Tags am Ende eines Beitrags.";
+$a->strings["Path to item cache"] = "Pfad zum Eintrag Cache";
+$a->strings["Cache duration in seconds"] = "Cache-Dauer in Sekunden";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "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.";
+$a->strings["Maximum numbers of comments per post"] = "Maximale Anzahl von Kommentaren pro Beitrag";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100.";
+$a->strings["Path for lock file"] = "Pfad für die Sperrdatei";
+$a->strings["Temp path"] = "Temp Pfad";
+$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
+$a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Der Proxy für Bilder verbessert die Leitung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen.";
+$a->strings["Enable old style pager"] = "Den Old-Style Pager aktiviren";
+$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "Der Old-Style Pager zeigt Seitennummern an, verlangsamt aber auch drastisch das Laden einer Seite.";
+$a->strings["Only search in tags"] = "Nur in Tags suchen";
+$a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen.";
+$a->strings["New base url"] = "Neue Basis-URL";
+$a->strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert";
+$a->strings["Database structure update %s was successfully applied."] = "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s";
+$a->strings["Executing %s failed with error: %s"] = "Die Ausführung von %s schlug fehl. Fehlermeldung: %s";
+$a->strings["Update %s was successfully applied."] = "Update %s war erfolgreich.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s hat keinen Status zurückgegeben. Unbekannter Status.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste.";
+$a->strings["No failed updates."] = "Keine fehlgeschlagenen Updates.";
+$a->strings["Check database structure"] = "Datenbank Struktur überprüfen";
+$a->strings["Failed Updates"] = "Fehlgeschlagene Updates";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben.";
+$a->strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (falls das Update manuell installiert wurde)";
+$a->strings["Attempt to execute this update step automatically"] = "Versuchen, diesen Schritt automatisch auszuführen";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\nHallo %1\$s,\n\nauf %2\$s wurde ein Account für Dich angelegt.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\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.";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s Benutzer geblockt/freigegeben",
+       1 => "%s Benutzer geblockt/freigegeben",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s Nutzer gelöscht",
+       1 => "%s Nutzer gelöscht",
+);
+$a->strings["User '%s' deleted"] = "Nutzer '%s' gelöscht";
+$a->strings["User '%s' unblocked"] = "Nutzer '%s' entsperrt";
+$a->strings["User '%s' blocked"] = "Nutzer '%s' gesperrt";
+$a->strings["Add User"] = "Nutzer hinzufügen";
+$a->strings["select all"] = "Alle auswählen";
+$a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf Deine Bestätigung warten";
+$a->strings["User waiting for permanent deletion"] = "Nutzer wartet auf permanente Löschung";
+$a->strings["Request date"] = "Anfragedatum";
+$a->strings["No registrations."] = "Keine Neuanmeldungen.";
+$a->strings["Deny"] = "Verwehren";
+$a->strings["Site admin"] = "Seitenadministrator";
+$a->strings["Account expired"] = "Account ist abgelaufen";
+$a->strings["New User"] = "Neuer Nutzer";
+$a->strings["Register date"] = "Anmeldedatum";
+$a->strings["Last login"] = "Letzte Anmeldung";
+$a->strings["Last item"] = "Letzter Beitrag";
+$a->strings["Deleted since"] = "Gelöscht seit";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "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?";
+$a->strings["Name of the new user."] = "Name des neuen Nutzers";
+$a->strings["Nickname"] = "Spitzname";
+$a->strings["Nickname of the new user."] = "Spitznamen für den neuen Nutzer";
+$a->strings["Email address of the new user."] = "Email Adresse des neuen Nutzers";
+$a->strings["Plugin %s disabled."] = "Plugin %s deaktiviert.";
+$a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
+$a->strings["Disable"] = "Ausschalten";
+$a->strings["Enable"] = "Einschalten";
+$a->strings["Toggle"] = "Umschalten";
+$a->strings["Author: "] = "Autor:";
+$a->strings["Maintainer: "] = "Betreuer:";
+$a->strings["No themes found."] = "Keine Themen gefunden.";
+$a->strings["Screenshot"] = "Bildschirmfoto";
+$a->strings["[Experimental]"] = "[Experimentell]";
+$a->strings["[Unsupported]"] = "[Nicht unterstützt]";
+$a->strings["Log settings updated."] = "Protokolleinstellungen aktualisiert.";
+$a->strings["Clear"] = "löschen";
+$a->strings["Enable Debugging"] = "Protokoll führen";
+$a->strings["Log file"] = "Protokolldatei";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis.";
+$a->strings["Log level"] = "Protokoll-Level";
+$a->strings["Close"] = "Schließen";
+$a->strings["FTP Host"] = "FTP Host";
+$a->strings["FTP Path"] = "FTP Pfad";
+$a->strings["FTP User"] = "FTP Nutzername";
+$a->strings["FTP Password"] = "FTP Passwort";
+$a->strings["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
+$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
+$a->strings["Search Results For:"] = "Suchergebnisse für:";
+$a->strings["Remove term"] = "Begriff entfernen";
+$a->strings["Commented Order"] = "Neueste Kommentare";
+$a->strings["Sort by Comment Date"] = "Nach Kommentardatum sortieren";
+$a->strings["Posted Order"] = "Neueste Beiträge";
+$a->strings["Sort by Post Date"] = "Nach Beitragsdatum sortieren";
+$a->strings["Posts that mention or involve you"] = "Beiträge, in denen es um Dich geht";
+$a->strings["New"] = "Neue";
+$a->strings["Activity Stream - by date"] = "Aktivitäten-Stream - nach Datum";
+$a->strings["Shared Links"] = "Geteilte Links";
+$a->strings["Interesting Links"] = "Interessante Links";
+$a->strings["Starred"] = "Markierte";
+$a->strings["Favourite Posts"] = "Favorisierte Beiträge";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
+       1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
 );
-$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst Dich jetzt mit Deinem Nutzernamen und Passwort anmelden";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
-$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
-$a->strings["Set theme width"] = "Theme Breite festlegen";
-$a->strings["Color scheme"] = "Farbschema";
-$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
-$a->strings["Set colour scheme"] = "Farbschema wählen";
-$a->strings["Alignment"] = "Ausrichtung";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Mitte";
-$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
-$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
-$a->strings["Set color scheme"] = "Wähle Farbschema";
-$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
-$a->strings["Community Pages"] = "Foren";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Community-Profile";
-$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Connect Services"] = "Verbinde Dienste";
-$a->strings["Find Friends"] = "Freunde finden";
-$a->strings["Last users"] = "Letzte Nutzer";
-$a->strings["Last photos"] = "Letzte Fotos";
-$a->strings["Last likes"] = "Zuletzt gemocht";
-$a->strings["Your contacts"] = "Deine Kontakte";
-$a->strings["Your personal photos"] = "Deine privaten Fotos";
-$a->strings["Local Directory"] = "Lokales Verzeichnis";
-$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
-$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
-$a->strings["Set style"] = "Stil auswählen";
-$a->strings["greenzero"] = "greenzero";
-$a->strings["purplezero"] = "purplezero";
-$a->strings["easterbunny"] = "easterbunny";
-$a->strings["darkzero"] = "darkzero";
-$a->strings["comix"] = "comix";
-$a->strings["slackr"] = "slackr";
-$a->strings["Variations"] = "Variationen";
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
+$a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Group: "] = "Gruppe: ";
+$a->strings["Contact: "] = "Kontakt: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen.";
+$a->strings["Invalid contact."] = "Ungültiger Kontakt.";
+$a->strings["- select -"] = "- auswählen -";
+$a->strings["This is Friendica, version"] = "Dies ist Friendica, Version";
+$a->strings["running at web location"] = "die unter folgender Webadresse zu finden ist";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Bitte besuche <a href=\"http://friendica.com\">Friendica.com</a>, um mehr über das Friendica Projekt zu erfahren.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest Du wirklich dieses Foto-Album und all seine Foto löschen?";
+$a->strings["Delete Photo"] = "Foto löschen";
+$a->strings["Do you really want to delete this photo?"] = "Möchtest Du wirklich dieses Foto löschen?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s wurde von %3\$s in %2\$s getaggt";
+$a->strings["a photo"] = "einem Foto";
+$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$a->strings["No photos selected"] = "Keine Bilder ausgewählt";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Du verwendest %1$.2f Mbyte von %2$.2f Mbyte des Foto-Speichers.";
+$a->strings["Upload Photos"] = "Bilder hochladen";
+$a->strings["New album name: "] = "Name des neuen Albums: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Private Photo"] = "Privates Foto";
+$a->strings["Public Photo"] = "Öffentliches Foto";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["The post was created"] = "Der Beitrag wurde angelegt";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$a->strings["Move account"] = "Account umziehen";
+$a->strings["You can import an account from another Friendica server."] = "Du kannst einen Account von einem anderen Friendica Server importieren.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Du musst Deinen Account vom alten Server exportieren und hier hochladen. Wir stellen Deinen alten Account mit all Deinen Kontakten wieder her. Wir werden auch versuchen all Deine Freunde darüber zu informieren, dass Du hierher umgezogen bist.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Um Deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["Total invitation limit exceeded."] = "Limit für Einladungen erreicht.";
+$a->strings["%s : Not a valid email address."] = "%s: Keine gültige Email Adresse.";
+$a->strings["Please join us on Friendica"] = "Ich lade Dich zu unserem sozialen Netzwerk Friendica ein";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite.";
+$a->strings["%s : Message delivery failed."] = "%s: Zustellung der Nachricht fehlgeschlagen.";
+$a->strings["%d message sent."] = array(
+       0 => "%d Nachricht gesendet.",
+       1 => "%d Nachrichten gesendet.",
+);
+$a->strings["You have no more invitations available"] = "Du hast keine weiteren Einladungen";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Besuche %s für eine Liste der öffentlichen Server, denen Du beitreten kannst. Friendica Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer Sozialer Netzwerke.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere Dich bitte bei %s oder einer anderen öffentlichen Friendica Website.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Friendica Server verbinden sich alle untereinander, um ein großes datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Sie können sich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica Server, denen Du beitreten kannst.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen.";
+$a->strings["Send invitations"] = "Einladungen senden";
+$a->strings["Enter email addresses, one per line:"] = "E-Mail-Adressen eingeben, eine pro Zeile:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Du bist herzlich dazu eingeladen, Dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Du benötigst den folgenden Einladungscode: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Sobald Du registriert bist, kontaktiere mich bitte auf meiner Profilseite:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$a->strings["No valid account found."] = "Kein gültiges Konto gefunden.";
+$a->strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\nHallo %1\$s,\n\nAuf \"%2\$s\" ist eine Anfrage auf das Zurücksetzen Deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste Deines Browsers ein.\n\nSolltest Du die Anfrage NICHT gemacht haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\nDu diese Änderung angefragt hast.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\nUm Deine Identität zu verifizieren, folge bitte dem folgenden Link:\n\n%1\$s\n\nDu wirst eine weitere E-Mail mit Deinem neuen Passwort erhalten. Sobald Du Dich\nangemeldet hast, kannst Du Dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2\$s\nBenutzername:\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast Du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort - und dann";
+$a->strings["click here to login"] = "hier klicken, um Dich anzumelden";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald Du Dich erfolgreich angemeldet hast.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\nHallo %1\$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere Dein Passwort in eines, das Du Dir leicht merken kannst).";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde Dein Passwort geändert";
+$a->strings["Forgot your Password?"] = "Hast Du Dein Passwort vergessen?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden Dir dann weitere Informationen per Mail zugesendet.";
+$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
+$a->strings["Reset"] = "Zurücksetzen";
+$a->strings["Source (bbcode) text:"] = "Quelle (bbcode) Text:";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Eingabe (Diaspora) nach BBCode zu konvertierender Text:";
+$a->strings["Source input: "] = "Originaltext:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (reines HTML): ";
+$a->strings["bb2html: "] = "bb2html: ";
+$a->strings["bb2html2bb: "] = "bb2html2bb: ";
+$a->strings["bb2md: "] = "bb2md: ";
+$a->strings["bb2md2html: "] = "bb2md2html: ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
+$a->strings["Source input (Diaspora format): "] = "Originaltext (Diaspora Format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["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 My Account"] = "Konto löschen";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen.";
+$a->strings["Please enter your password for verification:"] = "Bitte gib Dein Passwort zur Verifikation ein:";
+$a->strings["Invalid profile identifier."] = "Ungültiger Profil-Bezeichner.";
+$a->strings["Profile Visibility Editor"] = "Editor für die Profil-Sichtbarkeit";
+$a->strings["Visible To"] = "Sichtbar für";
+$a->strings["All Contacts (with secure profile access)"] = "Alle Kontakte (mit gesichertem Profilzugriff)";
+$a->strings["Profile Match"] = "Profilübereinstimmungen";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu Deinem Standardprofil hinzu.";
+$a->strings["is interested in:"] = "ist interessiert an:";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["hour:minute"] = "Stunde:Minute";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt.";
+$a->strings["Event Starts:"] = "Veranstaltungsbeginn:";
+$a->strings["Required"] = "Benötigt";
+$a->strings["Finish date/time is not known or not relevant"] = "Enddatum/-zeit ist nicht bekannt oder nicht relevant";
+$a->strings["Event Finishes:"] = "Veranstaltungsende:";
+$a->strings["Adjust for viewer timezone"] = "An Zeitzone des Betrachters anpassen";
+$a->strings["Description:"] = "Beschreibung";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit Dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} schickte Dir eine Nachricht";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
+$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
+$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
+$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
+$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
+$a->strings["{0} mentioned you in a post"] = "{0} hat Dich in einem Beitrag erwähnt";
+$a->strings["Mood"] = "Stimmung";
+$a->strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und erzähle sie Deinen Freunden";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
+$a->strings["Do you really want to delete this message?"] = "Möchtest Du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$a->strings["Unknown sender - %s"] = "'Unbekannter Absender - %s";
+$a->strings["You and %s"] = "Du und %s";
+$a->strings["%s and You"] = "%s und Du";
+$a->strings["Delete conversation"] = "Unterhaltung löschen";
+$a->strings["D, d M Y - g:i A"] = "D, d. M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d Nachricht",
+       1 => "%d Nachrichten",
+);
+$a->strings["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht löschen";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. <strong>Eventuell</strong> kannst Du auf der Profilseite des Absenders antworten.";
+$a->strings["Send Reply"] = "Antwort senden";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["Profile not found."] = "Profil nicht gefunden.";
+$a->strings["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["Likes"] = "Likes";
+$a->strings["Dislikes"] = "Dislikes";
+$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politische Ansichten";
+$a->strings["Gender"] = "Geschlecht";
+$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
+$a->strings["Homepage"] = "Webseite";
+$a->strings["Interests"] = "Interessen";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Wohnort";
+$a->strings["Profile updated."] = "Profil aktualisiert.";
+$a->strings[" and "] = " und ";
+$a->strings["public profile"] = "öffentliches Profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Kontakte und Freunde verbergen";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
+$a->strings["Edit Profile Details"] = "Profil bearbeiten";
+$a->strings["Change Profile Photo"] = "Profilbild ändern";
+$a->strings["View this profile"] = "Dieses Profil anzeigen";
+$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
+$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
+$a->strings["Delete this profile"] = "Dieses Profil löschen";
+$a->strings["Basic information"] = "Grundinformationen";
+$a->strings["Profile picture"] = "Profilbild";
+$a->strings["Preferences"] = "Vorlieben";
+$a->strings["Status information"] = "Status Informationen";
+$a->strings["Additional information"] = "Zusätzliche Informationen";
+$a->strings["Upload Profile Photo"] = "Profilbild hochladen";
+$a->strings["Profile Name:"] = "Profilname:";
+$a->strings["Your Full Name:"] = "Dein kompletter Name:";
+$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
+$a->strings["Street Address:"] = "Adresse:";
+$a->strings["Locality/City:"] = "Wohnort:";
+$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Region/State:"] = "Region/Bundesstaat:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
+$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Seit [Datum]:";
+$a->strings["Homepage URL:"] = "Adresse der Homepage:";
+$a->strings["Religious Views:"] = "Religiöse Ansichten:";
+$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
+$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
+$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, kann von Fremden eingesehen werden)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
+$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von Dir …";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
+$a->strings["Musical interests"] = "Musikalische Interessen";
+$a->strings["Books, literature"] = "Bücher, Literatur";
+$a->strings["Television"] = "Fernsehen";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
+$a->strings["Love/romance"] = "Liebe/Romantik";
+$a->strings["Work/employment"] = "Arbeit/Anstellung";
+$a->strings["School/education"] = "Schule/Ausbildung";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist Dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["Age: "] = "Alter: ";
+$a->strings["Edit/Manage Profiles"] = "Bearbeite/Verwalte Profile";
+$a->strings["Friendica Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
+$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert.";
+$a->strings["Could not create table."] = "Tabelle konnte nicht angelegt werden.";
+$a->strings["Your Friendica site database has been installed."] = "Die Datenbank Deiner Friendicaseite wurde installiert.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Möglicherweise musst Du die Datei \"database.sql\" manuell mit phpmyadmin oder mysql importieren.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Lies bitte die \"INSTALL.txt\".";
+$a->strings["System check"] = "Systemtest";
+$a->strings["Check again"] = "Noch einmal testen";
+$a->strings["Database connection"] = "Datenbankverbindung";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Um Friendica installieren zu können, müssen wir wissen, wie wir mit Deiner Datenbank Kontakt aufnehmen können.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere den Hosting Provider oder den Administrator der Seite, falls Du Fragen zu diesen Einstellungen haben solltest.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du unten angibst, sollte bereits existieren. Ist dies noch nicht der Fall, erzeuge sie bitte bevor Du mit der Installation fortfährst.";
+$a->strings["Database Server Name"] = "Datenbank-Server";
+$a->strings["Database Login Name"] = "Datenbank-Nutzer";
+$a->strings["Database Login Password"] = "Datenbank-Passwort";
+$a->strings["Database Name"] = "Datenbank-Name";
+$a->strings["Site administrator email address"] = "E-Mail-Adresse des Administrators";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse, die in Deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit Du das Admin-Panel benutzen kannst.";
+$a->strings["Please select a default timezone for your website"] = "Bitte wähle die Standardzeitzone Deiner Webseite";
+$a->strings["Site settings"] = "Server-Einstellungen";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte keine Kommandozeilenversion von PHP im PATH des Servers finden.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Wenn Du keine Kommandozeilen Version von PHP auf Deinem Server installiert hast, kannst Du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Pfad zu PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den kompletten Pfad zur ausführbaren Datei von PHP an. Du kannst dieses Feld auch frei lassen und mit der Installation fortfahren.";
+$a->strings["Command line PHP"] = "Kommandozeilen-PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "Die ausführbare Datei von PHP stimmt nicht mit der PHP cli Version überein (es könnte sich um die cgi-fgci Version handeln)";
+$a->strings["Found PHP version: "] = "Gefundene PHP Version:";
+$a->strings["PHP cli binary"] = "PHP CLI Binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Die Kommandozeilenversion von PHP auf Deinem System hat \"register_argc_argv\" nicht aktiviert.";
+$a->strings["This is required for message delivery to work."] = "Dies wird für die Auslieferung von Nachrichten benötigt.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die Funktion \"openssl_pkey_new\" auf diesem System ist nicht in der Lage, Verschlüsselungsschlüssel zu erzeugen";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn der Server unter Windows läuft, schau Dir bitte \"http://www.php.net/manual/en/openssl.installation.php\" an.";
+$a->strings["Generate encryption keys"] = "Schlüssel erzeugen";
+$a->strings["libCurl PHP module"] = "PHP: libCurl-Modul";
+$a->strings["GD graphics PHP module"] = "PHP: GD-Grafikmodul";
+$a->strings["OpenSSL PHP module"] = "PHP: OpenSSL-Modul";
+$a->strings["mysqli PHP module"] = "PHP: mysqli-Modul";
+$a->strings["mb_string PHP module"] = "PHP: mb_string-Modul";
+$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite module";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, es ist allerdings nicht installiert.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das GD-Graphikmodul für PHP mit JPEG-Unterstützung ist nicht installiert.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis Deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn Du sie hast.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "Nachdem Du alles ausgefüllt hast, erhältst Du einen Text, den Du in eine Datei namens .htconfig.php in Deinem Friendica-Wurzelverzeichnis kopieren musst.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest Du in der Datei INSTALL.txt.";
+$a->strings[".htconfig.php is writable"] = "Schreibrechte auf .htconfig.php";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica nutzt die Smarty3 Template Engine um die Webansichten zu rendern. Smarty3 kompiliert Templates zu PHP um das Rendern zu beschleunigen.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Um diese kompilierten Templates zu speichern benötigt der Webserver Schreibrechte zum Verzeichnis view/smarty3/ im obersten Ordner von Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer unter dem der Webserver läuft (z.B. www-data) Schreibrechte zu diesem Verzeichnis hat.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Hinweis: aus Sicherheitsgründen solltest Du dem Webserver nur Schreibrechte für view/smarty3/ geben -- Nicht den Templatedateien (.tpl) die sie enthalten.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 ist schreibbar";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "Umschreiben der URLs in der .htaccess funktioniert nicht. Überprüfe die Konfiguration des Servers.";
+$a->strings["Url rewrite is working"] = "URL rewrite funktioniert";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Die Konfigurationsdatei \".htconfig.php\" konnte nicht angelegt werden. Bitte verwende den angefügten Text, um die Datei im Stammverzeichnis Deiner Friendica-Installation zu erzeugen.";
+$a->strings["<h1>What next</h1>"] = "<h1>Wie geht es weiter?</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten.";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ACHTUNG: Das sind Experten-Einstellungen!</strong> Wenn Du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button Deines Browsers <strong>jetzt</strong>, wenn Du Dir unsicher bist, was Du tun willst.";
+$a->strings["Return to contact editor"] = "Zurück zum Kontakteditor";
+$a->strings["No mirroring"] = "Kein Spiegeln";
+$a->strings["Mirror as forwarded posting"] = "Spiegeln als weitergeleitete Beiträge";
+$a->strings["Mirror as my own posting"] = "Spiegeln als meine eigenen Beiträge";
+$a->strings["Account Nickname"] = "Konto-Spitzname";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@Tagname - überschreibt Name/Spitzname";
+$a->strings["Account URL"] = "Konto-URL";
+$a->strings["Friend Request URL"] = "URL für Freundschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
+$a->strings["Notification Endpoint URL"] = "URL-Endpunkt für Benachrichtigungen";
+$a->strings["Poll/Feed URL"] = "Pull/Feed-URL";
+$a->strings["New photo from this URL"] = "Neues Foto von dieser URL";
+$a->strings["Remote Self"] = "Entfernte Konten";
+$a->strings["Mirror postings from this contact"] = "Spiegle Beiträge dieses Kontakts";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "Markiere diesen Kontakt als remote_self (entferntes Konto), dies veranlasst Friendica alle Top-Level Beiträge dieses Kontakts an all Deine Kontakte zu senden.";
+$a->strings["Welcome to Friendica"] = "Willkommen bei Friendica";
+$a->strings["New Member Checklist"] = "Checkliste für neue Mitglieder";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Wir möchten Dir einige Tipps und Links anbieten, die Dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für Dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden.";
+$a->strings["Getting Started"] = "Einstieg";
+$a->strings["Friendica Walk-Through"] = "Friendica Rundgang";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der <em>Quick Start</em> Seite findest Du eine kurze Einleitung in die einzelnen Funktionen Deines Profils und die Netzwerk-Reiter, wo Du interessante Foren findest und neue Kontakte knüpfst.";
+$a->strings["Go to Your Settings"] = "Gehe zu deinen Einstellungen";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Ändere bitte unter <em>Einstellungen</em> dein Passwort. Außerdem merke dir deine Identifikationsadresse. Diese sieht aus wie eine E-Mail-Adresse und wird benötigt, um Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Überprüfe die restlichen Einstellungen, insbesondere die Einstellungen zur Privatsphäre. Wenn Du Dein Profil nicht veröffentlichst, ist das als wenn Du Deine Telefonnummer nicht ins Telefonbuch einträgst. Im Allgemeinen solltest Du es veröffentlichen - außer all Deine Freunde und potentiellen Freunde wissen genau, wie sie Dich finden können.";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Lade ein Profilbild hoch, falls Du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn Du ein Bild von Dir selbst verwendest, als wenn Du dies nicht tust.";
+$a->strings["Edit Your Profile"] = "Editiere dein Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere Dein <strong>Standard</strong> Profil nach Deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen Deiner Freundesliste vor unbekannten Betrachtern des Profils.";
+$a->strings["Profile Keywords"] = "Profil Schlüsselbegriffe";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Trage ein paar öffentliche Stichwörter in Dein Standardprofil ein, die Deine Interessen beschreiben. Eventuell sind wir in der Lage Leute zu finden, die Deine Interessen teilen und können Dir dann Kontakte vorschlagen.";
+$a->strings["Connecting"] = "Verbindungen knüpfen";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn Du im Augenblick ein Facebook-Konto hast und (optional) Deine Facebook-Freunde und -Unterhaltungen importieren willst.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Wenn</em> dies Dein privater Server ist, könnte die Installation des Facebook Connectors Deinen Umzug ins freie soziale Netz angenehmer gestalten.";
+$a->strings["Importing Emails"] = "Emails Importieren";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Gib Deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls Du E-Mails aus Deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willst.";
+$a->strings["Go to Your Contacts Page"] = "Gehe zu deiner Kontakt-Seite";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Die Kontakte-Seite ist die Einstiegsseite, von der aus Du Kontakte verwalten und Dich mit Freunden in anderen Netzwerken verbinden kannst. Normalerweise gibst Du dazu einfach ihre Adresse oder die URL der Seite im Kasten <em>Neuen Kontakt hinzufügen</em> ein.";
+$a->strings["Go to Your Site's Directory"] = "Gehe zum Verzeichnis Deiner Friendica Instanz";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "Über die Verzeichnisseite kannst Du andere Personen auf diesem Server oder anderen verknüpften Seiten finden. Halte nach einem <em>Verbinden</em> oder <em>Folgen</em> Link auf deren Profilseiten Ausschau und gib Deine eigene Profiladresse an, falls Du danach gefragt wirst.";
+$a->strings["Finding New People"] = "Neue Leute kennenlernen";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
+$a->strings["Group Your Contacts"] = "Gruppiere deine Kontakte";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Sobald Du einige Freunde gefunden hast, organisiere sie in Gruppen zur privaten Kommunikation im Seitenmenü der Kontakte-Seite. Du kannst dann mit jeder dieser Gruppen von der Netzwerkseite aus privat interagieren.";
+$a->strings["Why Aren't My Posts Public?"] = "Warum sind meine Beiträge nicht öffentlich?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respektiert Deine Privatsphäre. Mit der Grundeinstellung werden Deine Beiträge ausschließlich Deinen Kontakten angezeigt. Für weitere Informationen diesbezüglich lies Dir bitte den entsprechenden Abschnitt in der Hilfe unter dem obigen Link durch.";
+$a->strings["Getting Help"] = "Hilfe bekommen";
+$a->strings["Go to the Help Section"] = "Zum Hilfe Abschnitt gehen";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Unsere <strong>Hilfe</strong> Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten.";
+$a->strings["Poke/Prod"] = "Anstupsen";
+$a->strings["poke, prod or do other things to somebody"] = "Stupse Leute an oder mache anderes mit ihnen";
+$a->strings["Recipient"] = "Empfänger";
+$a->strings["Choose what you wish to do to recipient"] = "Was willst Du mit dem Empfänger machen:";
+$a->strings["Make this post private"] = "Diesen Beitrag privat machen";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Das kann passieren, wenn sich zwei Kontakte gegenseitig eingeladen haben und bereits einer angenommen wurde.";
+$a->strings["Response from remote site was not understood."] = "Antwort der Gegenstelle unverständlich.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns Dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$a->strings["Unable to set your contact credentials on our system."] = "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werden.";
+$a->strings["Unable to update your contact profile details on our system"] = "Die Updates für Dein Profil konnten nicht gespeichert werden";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["Unable to locate original post."] = "Konnte den Originalbeitrag nicht finden.";
+$a->strings["Empty post discarded."] = "Leerer Beitrag wurde verworfen.";
+$a->strings["System error. Post not saved."] = "Systemfehler. Beitrag konnte nicht gespeichert werden.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Diese Nachricht wurde dir von %s geschickt, einem Mitglied des Sozialen Netzwerks Friendica.";
+$a->strings["You may visit them online at %s"] = "Du kannst sie online unter %s besuchen";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Falls Du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den Autor, indem Du auf diese Nachricht antwortest.";
+$a->strings["%s posted an update."] = "%s hat ein Update veröffentlicht.";
+$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zuschneiden schlug fehl.";
+$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] scheiterte.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird.";
+$a->strings["Unable to process image"] = "Bild konnte nicht verarbeitet werden";
+$a->strings["Upload File:"] = "Datei hochladen:";
+$a->strings["Select a profile:"] = "Profil auswählen:";
+$a->strings["Upload"] = "Hochladen";
+$a->strings["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto aus deinen Fotoalben";
+$a->strings["Crop Image"] = "Bild zurechtschneiden";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann.";
+$a->strings["Done Editing"] = "Bearbeitung abgeschlossen";
+$a->strings["Image uploaded successfully."] = "Bild erfolgreich hochgeladen.";
+$a->strings["Friends of %s"] = "Freunde von %s";
+$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["Gender: "] = "Geschlecht:";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["Time Conversion"] = "Zeitumrechnung";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann.";
+$a->strings["UTC time: %s"] = "UTC Zeit: %s";
+$a->strings["Current timezone: %s"] = "Aktuelle Zeitzone: %s";
+$a->strings["Converted localtime: %s"] = "Umgerechnete lokale Zeit: %s";
+$a->strings["Please select your timezone:"] = "Bitte wähle Deine Zeitzone:";
index 9e4d54527e79a6d1109c3f3bd56a837043e0dfb6..000a146cfee87a1007edb2a7b95ddcd006c55465 100644 (file)
 # Lionel Triay <zapimax38@free.fr>, 2013
 # Marquis_de_Carabas <olivier@free-beer.ch>, 2012
 # Olivier <olivier+transifex@migeot.org>, 2011-2012
+# StefOfficiel <pichard.stephane@free.fr>, 2015
 # Sylvain Lagacé, 2014-2015
 # tomamplius <thomas@lgy.fr>, 2014
-# Tubuntu <tubuntu@testimonium.be>, 2013-2014
+# Tubuntu <tubuntu@testimonium.be>, 2013-2015
 msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2015-02-09 08:57+0100\n"
-"PO-Revision-Date: 2015-02-09 09:46+0000\n"
-"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
+"POT-Creation-Date: 2015-04-04 17:54+0200\n"
+"PO-Revision-Date: 2015-04-14 10:22+0000\n"
+"Last-Translator: StefOfficiel <pichard.stephane@free.fr>\n"
 "Language-Team: French (http://www.transifex.com/projects/p/friendica/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -29,4602 +30,4502 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../../mod/contacts.php:108
-#, php-format
-msgid "%d contact edited."
-msgid_plural "%d contacts edited"
-msgstr[0] "%d contact édité"
-msgstr[1] "%d contacts édités."
-
-#: ../../mod/contacts.php:139 ../../mod/contacts.php:272
-msgid "Could not access contact record."
-msgstr "Impossible d'accéder à l'enregistrement du contact."
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/vier/config.php:56
+#: ../../view/theme/duepuntozero/config.php:59
+#: ../../view/theme/diabook/config.php:148
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
+#: ../../object/Item.php:678 ../../mod/contacts.php:492
+#: ../../mod/manage.php:110 ../../mod/fsuggest.php:107
+#: ../../mod/photos.php:1084 ../../mod/photos.php:1203
+#: ../../mod/photos.php:1514 ../../mod/photos.php:1565
+#: ../../mod/photos.php:1609 ../../mod/photos.php:1697
+#: ../../mod/invite.php:140 ../../mod/events.php:478 ../../mod/mood.php:137
+#: ../../mod/message.php:335 ../../mod/message.php:564
+#: ../../mod/profiles.php:686 ../../mod/install.php:248
+#: ../../mod/install.php:286 ../../mod/crepair.php:186
+#: ../../mod/content.php:710 ../../mod/poke.php:199 ../../mod/localtime.php:45
+msgid "Submit"
+msgstr "Envoyer"
 
-#: ../../mod/contacts.php:153
-msgid "Could not locate selected profile."
-msgstr "Impossible de localiser le profil séléctionné."
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/vier/config.php:58
+#: ../../view/theme/duepuntozero/config.php:61
+#: ../../view/theme/diabook/config.php:150
+#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
+msgid "Theme settings"
+msgstr "Réglages du thème graphique"
 
-#: ../../mod/contacts.php:186
-msgid "Contact updated."
-msgstr "Contact mis-à-jour."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"
 
-#: ../../mod/contacts.php:188 ../../mod/dfrn_request.php:576
-msgid "Failed to update contact record."
-msgstr "Échec de mise-à-jour du contact."
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:151
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
 
-#: ../../mod/contacts.php:254 ../../mod/manage.php:96
-#: ../../mod/display.php:499 ../../mod/profile_photo.php:19
-#: ../../mod/profile_photo.php:169 ../../mod/profile_photo.php:180
-#: ../../mod/profile_photo.php:193 ../../mod/follow.php:9
-#: ../../mod/item.php:168 ../../mod/item.php:184 ../../mod/group.php:19
-#: ../../mod/dfrn_confirm.php:55 ../../mod/fsuggest.php:78
-#: ../../mod/wall_upload.php:66 ../../mod/viewcontacts.php:24
-#: ../../mod/notifications.php:66 ../../mod/message.php:38
-#: ../../mod/message.php:174 ../../mod/crepair.php:119
-#: ../../mod/nogroup.php:25 ../../mod/network.php:4 ../../mod/allfriends.php:9
-#: ../../mod/events.php:140 ../../mod/install.php:151
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/wall_attach.php:55 ../../mod/settings.php:102
-#: ../../mod/settings.php:596 ../../mod/settings.php:601
-#: ../../mod/register.php:42 ../../mod/delegate.php:12 ../../mod/mood.php:114
-#: ../../mod/suggest.php:58 ../../mod/profiles.php:165
-#: ../../mod/profiles.php:618 ../../mod/editpost.php:10 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/notes.php:20 ../../mod/poke.php:135
-#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/photos.php:134
-#: ../../mod/photos.php:1050 ../../mod/regmod.php:110 ../../mod/uimport.php:23
-#: ../../mod/attach.php:33 ../../include/items.php:4712 ../../index.php:369
-msgid "Permission denied."
-msgstr "Permission refusée."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Largeur du thème"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been blocked"
-msgstr "Le contact a été bloqué"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Palette de couleurs"
 
-#: ../../mod/contacts.php:287
-msgid "Contact has been unblocked"
-msgstr "Le contact n'est plus bloqué"
+#: ../../view/theme/vier/config.php:59
+msgid "Set style"
+msgstr "Définir le style"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been ignored"
-msgstr "Le contact a été ignoré"
+#: ../../view/theme/duepuntozero/config.php:44 ../../include/text.php:1719
+#: ../../include/user.php:247
+msgid "default"
+msgstr "défaut"
 
-#: ../../mod/contacts.php:298
-msgid "Contact has been unignored"
-msgstr "Le contact n'est plus ignoré"
+#: ../../view/theme/duepuntozero/config.php:45
+msgid "greenzero"
+msgstr ""
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been archived"
-msgstr "Contact archivé"
+#: ../../view/theme/duepuntozero/config.php:46
+msgid "purplezero"
+msgstr ""
 
-#: ../../mod/contacts.php:310
-msgid "Contact has been unarchived"
-msgstr "Contact désarchivé"
+#: ../../view/theme/duepuntozero/config.php:47
+msgid "easterbunny"
+msgstr ""
 
-#: ../../mod/contacts.php:335 ../../mod/contacts.php:711
-msgid "Do you really want to delete this contact?"
-msgstr "Voulez-vous vraiment supprimer ce contact?"
+#: ../../view/theme/duepuntozero/config.php:48
+msgid "darkzero"
+msgstr ""
 
-#: ../../mod/contacts.php:337 ../../mod/message.php:209
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:233 ../../mod/suggest.php:29
-#: ../../mod/profiles.php:661 ../../mod/profiles.php:664 ../../mod/api.php:105
-#: ../../include/items.php:4557
-msgid "Yes"
-msgstr "Oui"
+#: ../../view/theme/duepuntozero/config.php:49
+msgid "comix"
+msgstr ""
 
-#: ../../mod/contacts.php:340 ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/message.php:212 ../../mod/fbrowser.php:81
-#: ../../mod/fbrowser.php:116 ../../mod/settings.php:615
-#: ../../mod/settings.php:641 ../../mod/dfrn_request.php:844
-#: ../../mod/suggest.php:32 ../../mod/editpost.php:148
-#: ../../mod/photos.php:203 ../../mod/photos.php:292
-#: ../../include/conversation.php:1129 ../../include/items.php:4560
-msgid "Cancel"
-msgstr "Annuler"
+#: ../../view/theme/duepuntozero/config.php:50
+msgid "slackr"
+msgstr ""
 
-#: ../../mod/contacts.php:352
-msgid "Contact has been removed."
-msgstr "Ce contact a été retiré."
+#: ../../view/theme/duepuntozero/config.php:62
+msgid "Variations"
+msgstr "Variations"
 
-#: ../../mod/contacts.php:390
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Vous êtes ami (et réciproquement) avec %s"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:335
+msgid "don't show"
+msgstr "cacher"
 
-#: ../../mod/contacts.php:394
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Vous partagez avec %s"
+#: ../../view/theme/diabook/config.php:142
+#: ../../view/theme/diabook/theme.php:621 ../../include/acl_selectors.php:334
+msgid "show"
+msgstr "montrer"
 
-#: ../../mod/contacts.php:399
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s partage avec vous"
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires"
 
-#: ../../mod/contacts.php:416
-msgid "Private communications are not available for this contact."
-msgstr "Les communications privées ne sont pas disponibles pour ce contact."
+#: ../../view/theme/diabook/config.php:153
+msgid "Set resolution for middle column"
+msgstr "Réglez la résolution de la colonne centrale"
 
-#: ../../mod/contacts.php:419 ../../mod/admin.php:569
-msgid "Never"
-msgstr "Jamais"
+#: ../../view/theme/diabook/config.php:154
+msgid "Set color scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was successful)"
-msgstr "(Mise à jour effectuée avec succès)"
+#: ../../view/theme/diabook/config.php:155
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Niveau de zoom"
 
-#: ../../mod/contacts.php:423
-msgid "(Update was not successful)"
-msgstr "(Mise à jour échouée)"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/diabook/theme.php:585
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Régler la longitude (X) pour la géolocalisation"
 
-#: ../../mod/contacts.php:425
-msgid "Suggest friends"
-msgstr "Suggérer amitié/contact"
+#: ../../view/theme/diabook/config.php:157
+#: ../../view/theme/diabook/theme.php:586
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Régler la latitude (Y) pour la géolocalisation"
 
-#: ../../mod/contacts.php:429
-#, php-format
-msgid "Network type: %s"
-msgstr "Type de réseau %s"
+#: ../../view/theme/diabook/config.php:158
+#: ../../view/theme/diabook/theme.php:130
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:624
+msgid "Community Pages"
+msgstr "Pages de Communauté"
 
-#: ../../mod/contacts.php:432 ../../include/contact_widgets.php:200
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contact en commun"
-msgstr[1] "%d contacts en commun"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:625
+msgid "Earth Layers"
+msgstr "Géolocalisation"
 
-#: ../../mod/contacts.php:437
-msgid "View all contacts"
-msgstr "Voir tous les contacts"
+#: ../../view/theme/diabook/config.php:160
+#: ../../view/theme/diabook/theme.php:391
+#: ../../view/theme/diabook/theme.php:626
+msgid "Community Profiles"
+msgstr "Profils communautaires"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1009
-msgid "Unblock"
-msgstr "Débloquer"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:627
+msgid "Help or @NewHere ?"
+msgstr "Aide ou @NewHere?"
 
-#: ../../mod/contacts.php:442 ../../mod/contacts.php:501
-#: ../../mod/contacts.php:714 ../../mod/admin.php:1008
-msgid "Block"
-msgstr "Bloquer"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:628
+msgid "Connect Services"
+msgstr "Connecter des services"
 
-#: ../../mod/contacts.php:445
-msgid "Toggle Blocked status"
-msgstr "(dés)activer l'état \"bloqué\""
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:523
+#: ../../view/theme/diabook/theme.php:629
+msgid "Find Friends"
+msgstr "Trouver des amis"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715
-msgid "Unignore"
-msgstr "Ne plus ignorer"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:412
+#: ../../view/theme/diabook/theme.php:630
+msgid "Last users"
+msgstr "Derniers utilisateurs"
 
-#: ../../mod/contacts.php:448 ../../mod/contacts.php:502
-#: ../../mod/contacts.php:715 ../../mod/notifications.php:51
-#: ../../mod/notifications.php:164 ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorer"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:486
+#: ../../view/theme/diabook/theme.php:631
+msgid "Last photos"
+msgstr "Dernières photos"
 
-#: ../../mod/contacts.php:451
-msgid "Toggle Ignored status"
-msgstr "(dés)activer l'état \"ignoré\""
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:441
+#: ../../view/theme/diabook/theme.php:632
+msgid "Last likes"
+msgstr "Dernièrement aimé"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Unarchive"
-msgstr "Désarchiver"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:105
+#: ../../include/nav.php:148 ../../mod/notifications.php:93
+msgid "Home"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:455 ../../mod/contacts.php:716
-msgid "Archive"
-msgstr "Archiver"
+#: ../../view/theme/diabook/theme.php:123 ../../include/nav.php:76
+#: ../../include/nav.php:148
+msgid "Your posts and conversations"
+msgstr "Vos publications et conversations"
 
-#: ../../mod/contacts.php:458
-msgid "Toggle Archive status"
-msgstr "(dés)activer l'état \"archivé\""
+#: ../../view/theme/diabook/theme.php:124 ../../boot.php:2133
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/contacts.php:461
-msgid "Repair"
-msgstr "Réparer"
+#: ../../view/theme/diabook/theme.php:124 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Votre page de profil"
 
-#: ../../mod/contacts.php:464
-msgid "Advanced Contact Settings"
-msgstr "Réglages avancés du contact"
+#: ../../view/theme/diabook/theme.php:125 ../../include/nav.php:177
+#: ../../mod/contacts.php:718
+msgid "Contacts"
+msgstr "Contacts"
 
-#: ../../mod/contacts.php:470
-msgid "Communications lost with this contact!"
-msgstr "Communications perdues avec ce contact !"
+#: ../../view/theme/diabook/theme.php:125
+msgid "Your contacts"
+msgstr "Vos contacts"
 
-#: ../../mod/contacts.php:473
-msgid "Contact Editor"
-msgstr "Éditeur de contact"
+#: ../../view/theme/diabook/theme.php:126 ../../boot.php:2140
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+msgid "Photos"
+msgstr "Photos"
 
-#: ../../mod/contacts.php:475 ../../mod/manage.php:110
-#: ../../mod/fsuggest.php:107 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/crepair.php:186
-#: ../../mod/events.php:478 ../../mod/content.php:710
-#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/mood.php:137
-#: ../../mod/profiles.php:686 ../../mod/localtime.php:45
-#: ../../mod/poke.php:199 ../../mod/invite.php:140 ../../mod/photos.php:1084
-#: ../../mod/photos.php:1203 ../../mod/photos.php:1514
-#: ../../mod/photos.php:1565 ../../mod/photos.php:1609
-#: ../../mod/photos.php:1697 ../../object/Item.php:678
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
-#: ../../view/theme/diabook/config.php:148
-#: ../../view/theme/diabook/theme.php:633 ../../view/theme/vier/config.php:53
-#: ../../view/theme/duepuntozero/config.php:59
-msgid "Submit"
-msgstr "Envoyer"
+#: ../../view/theme/diabook/theme.php:126 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Vos photos"
 
-#: ../../mod/contacts.php:476
-msgid "Profile Visibility"
-msgstr "Visibilité du profil"
+#: ../../view/theme/diabook/theme.php:127 ../../boot.php:2157
+#: ../../include/nav.php:80 ../../mod/events.php:370
+msgid "Events"
+msgstr "Événements"
 
-#: ../../mod/contacts.php:477
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
+#: ../../view/theme/diabook/theme.php:127 ../../include/nav.php:80
+msgid "Your events"
+msgstr "Vos événements"
 
-#: ../../mod/contacts.php:478
-msgid "Contact Information / Notes"
-msgstr "Informations de contact / Notes"
+#: ../../view/theme/diabook/theme.php:128 ../../include/nav.php:81
+msgid "Personal notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/contacts.php:479
-msgid "Edit contact notes"
-msgstr "Éditer les notes des contacts"
+#: ../../view/theme/diabook/theme.php:128
+msgid "Your personal photos"
+msgstr "Vos photos personnelles"
 
-#: ../../mod/contacts.php:484 ../../mod/contacts.php:679
-#: ../../mod/viewcontacts.php:64 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visiter le profil de %s [%s]"
+#: ../../view/theme/diabook/theme.php:129 ../../include/nav.php:129
+#: ../../include/nav.php:131 ../../mod/community.php:32
+msgid "Community"
+msgstr "Communauté"
 
-#: ../../mod/contacts.php:485
-msgid "Block/Unblock contact"
-msgstr "Bloquer/débloquer ce contact"
+#: ../../view/theme/diabook/theme.php:463 ../../include/conversation.php:118
+#: ../../include/conversation.php:245 ../../include/text.php:1983
+msgid "event"
+msgstr "évènement"
 
-#: ../../mod/contacts.php:486
-msgid "Ignore contact"
-msgstr "Ignorer ce contact"
+#: ../../view/theme/diabook/theme.php:466
+#: ../../view/theme/diabook/theme.php:475 ../../include/diaspora.php:2011
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:248 ../../include/conversation.php:257
+#: ../../mod/like.php:149 ../../mod/like.php:319 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62
+msgid "status"
+msgstr "le statut"
 
-#: ../../mod/contacts.php:487
-msgid "Repair URL settings"
-msgstr "Réglages de réparation des URL"
+#: ../../view/theme/diabook/theme.php:471 ../../include/diaspora.php:2011
+#: ../../include/conversation.php:126 ../../include/conversation.php:253
+#: ../../include/text.php:1985 ../../mod/like.php:149
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62
+msgid "photo"
+msgstr "photo"
 
-#: ../../mod/contacts.php:488
-msgid "View conversations"
-msgstr "Voir les conversations"
+#: ../../view/theme/diabook/theme.php:480 ../../include/diaspora.php:2027
+#: ../../include/conversation.php:137 ../../mod/like.php:166
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s aime %3$s de %2$s"
 
-#: ../../mod/contacts.php:490
-msgid "Delete contact"
-msgstr "Effacer ce contact"
+#: ../../view/theme/diabook/theme.php:499 ../../mod/photos.php:60
+#: ../../mod/photos.php:155 ../../mod/photos.php:1064
+#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
+#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
+msgid "Contact Photos"
+msgstr "Photos du contact"
 
-#: ../../mod/contacts.php:494
-msgid "Last update:"
-msgstr "Dernière mise-à-jour :"
+#: ../../view/theme/diabook/theme.php:500 ../../include/user.php:335
+#: ../../include/user.php:342 ../../include/user.php:349
+#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
+#: ../../mod/photos.php:1210 ../../mod/profile_photo.php:74
+#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
+#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
+#: ../../mod/profile_photo.php:305
+msgid "Profile Photos"
+msgstr "Photos du profil"
 
-#: ../../mod/contacts.php:496
-msgid "Update public posts"
-msgstr "Mettre à jour les publications publiques:"
+#: ../../view/theme/diabook/theme.php:524
+msgid "Local Directory"
+msgstr "Annuaire local"
 
-#: ../../mod/contacts.php:498 ../../mod/admin.php:1503
-msgid "Update now"
-msgstr "Mettre à jour"
+#: ../../view/theme/diabook/theme.php:525 ../../mod/directory.php:51
+msgid "Global Directory"
+msgstr "Annuaire global"
 
-#: ../../mod/contacts.php:505
-msgid "Currently blocked"
-msgstr "Actuellement bloqué"
+#: ../../view/theme/diabook/theme.php:526 ../../include/contact_widgets.php:36
+msgid "Similar Interests"
+msgstr "Intérêts similaires"
 
-#: ../../mod/contacts.php:506
-msgid "Currently ignored"
-msgstr "Actuellement ignoré"
+#: ../../view/theme/diabook/theme.php:527 ../../include/contact_widgets.php:35
+#: ../../mod/suggest.php:68
+msgid "Friend Suggestions"
+msgstr "Suggestions d'amitiés/contacts"
 
-#: ../../mod/contacts.php:507
-msgid "Currently archived"
-msgstr "Actuellement archivé"
+#: ../../view/theme/diabook/theme.php:528 ../../include/contact_widgets.php:38
+msgid "Invite Friends"
+msgstr "Inviter des amis"
 
-#: ../../mod/contacts.php:508 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Cacher ce contact aux autres"
+#: ../../view/theme/diabook/theme.php:544
+#: ../../view/theme/diabook/theme.php:648 ../../include/nav.php:172
+#: ../../mod/settings.php:90 ../../mod/admin.php:1104 ../../mod/admin.php:1325
+#: ../../mod/newmember.php:22
+msgid "Settings"
+msgstr "Réglages"
 
-#: ../../mod/contacts.php:508
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
+#: ../../view/theme/diabook/theme.php:584
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Régler le niveau de zoom pour la géolocalisation"
 
-#: ../../mod/contacts.php:509
-msgid "Notification for new posts"
-msgstr "Notification des nouvelles publications"
+#: ../../view/theme/diabook/theme.php:622
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Montrer/cacher les boîtes dans la colonne de droite :"
 
-#: ../../mod/contacts.php:509
-msgid "Send a notification of every new post of this contact"
-msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Alignement"
 
-#: ../../mod/contacts.php:510
-msgid "Fetch further information for feeds"
-msgstr "Chercher plus d'informations pour les flux"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Gauche"
 
-#: ../../mod/contacts.php:511
-msgid "Disabled"
-msgstr "Désactivé"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centre"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information"
-msgstr "Récupérer informations"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Taille de texte des publications"
 
-#: ../../mod/contacts.php:511
-msgid "Fetch information and keywords"
-msgstr "Récupérer informations"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Taille de police des zones de texte"
 
-#: ../../mod/contacts.php:513
-msgid "Blacklisted keywords"
-msgstr "Mots-clés sur la liste noire"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Choisir le schéma de couleurs"
 
-#: ../../mod/contacts.php:513
-msgid ""
-"Comma separated list of keywords that should not be converted to hashtags, "
-"when \"Fetch information and keywords\" is selected"
-msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné."
+#: ../../index.php:211 ../../mod/apps.php:7
+msgid "You must be logged in to use addons. "
+msgstr "Vous devez être connecté pour utiliser les greffons."
 
-#: ../../mod/contacts.php:564
-msgid "Suggestions"
-msgstr "Suggestions"
+#: ../../index.php:255 ../../mod/help.php:42
+msgid "Not Found"
+msgstr "Non trouvé"
 
-#: ../../mod/contacts.php:567
-msgid "Suggest potential friends"
-msgstr "Suggérer des amis potentiels"
+#: ../../index.php:258 ../../mod/help.php:45
+msgid "Page not found."
+msgstr "Page introuvable."
 
-#: ../../mod/contacts.php:570 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Tous les contacts"
+#: ../../index.php:367 ../../mod/group.php:72 ../../mod/profperm.php:19
+msgid "Permission denied"
+msgstr "Permission refusée"
 
-#: ../../mod/contacts.php:573
-msgid "Show all contacts"
-msgstr "Montrer tous les contacts"
+#: ../../index.php:368 ../../include/items.php:4815 ../../mod/attach.php:33
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/group.php:19 ../../mod/delegate.php:12
+#: ../../mod/notifications.php:66 ../../mod/settings.php:20
+#: ../../mod/settings.php:107 ../../mod/settings.php:606
+#: ../../mod/contacts.php:258 ../../mod/wall_attach.php:55
+#: ../../mod/register.php:42 ../../mod/manage.php:96 ../../mod/editpost.php:10
+#: ../../mod/regmod.php:110 ../../mod/api.php:26 ../../mod/api.php:31
+#: ../../mod/suggest.php:58 ../../mod/nogroup.php:25 ../../mod/fsuggest.php:78
+#: ../../mod/viewcontacts.php:24 ../../mod/wall_upload.php:66
+#: ../../mod/notes.php:20 ../../mod/network.php:4 ../../mod/photos.php:134
+#: ../../mod/photos.php:1050 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/invite.php:15 ../../mod/invite.php:101 ../../mod/events.php:140
+#: ../../mod/mood.php:114 ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/profiles.php:165 ../../mod/profiles.php:618
+#: ../../mod/install.php:151 ../../mod/crepair.php:119 ../../mod/poke.php:135
+#: ../../mod/display.php:499 ../../mod/dfrn_confirm.php:55
+#: ../../mod/item.php:169 ../../mod/item.php:185
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/allfriends.php:9
+msgid "Permission denied."
+msgstr "Permission refusée."
 
-#: ../../mod/contacts.php:576
-msgid "Unblocked"
-msgstr "Non-bloqués"
+#: ../../index.php:427
+msgid "toggle mobile"
+msgstr "activ. mobile"
 
-#: ../../mod/contacts.php:579
-msgid "Only show unblocked contacts"
-msgstr "Ne montrer que les contacts non-bloqués"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:30
+#, php-format
+msgid "Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"
+msgstr "Voulez-vous confirmer votre identité (<tt>%s</tt>) avec <tt>%s</tt>e"
 
-#: ../../mod/contacts.php:583
-msgid "Blocked"
-msgstr "Bloqués"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:43
+#: ../../mod/dfrn_request.php:676
+msgid "Confirm"
+msgstr "Confirmer"
 
-#: ../../mod/contacts.php:586
-msgid "Only show blocked contacts"
-msgstr "Ne montrer que les contacts bloqués"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:44
+msgid "Do not confirm"
+msgstr "Ne pas confirmer"
 
-#: ../../mod/contacts.php:590
-msgid "Ignored"
-msgstr "Ignorés"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:48
+msgid "Trust This Site"
+msgstr "Faire confiance à ce site"
 
-#: ../../mod/contacts.php:593
-msgid "Only show ignored contacts"
-msgstr "Ne montrer que les contacts ignorés"
+#: ../../addon-wrk/openidserver/lib/render/trust.php:53
+msgid "No Identifier Sent"
+msgstr "Aucun identifiant envoyé"
 
-#: ../../mod/contacts.php:597
-msgid "Archived"
-msgstr "Archivés"
+#: ../../addon-wrk/openidserver/lib/render/wronguser.php:5
+msgid "Requested identity don't match logged in user."
+msgstr "La requête d'identité ne correspond pas à l'utilisateur connecté."
 
-#: ../../mod/contacts.php:600
-msgid "Only show archived contacts"
-msgstr "Ne montrer que les contacts archivés"
+#: ../../addon-wrk/openidserver/lib/render.php:27
+#, php-format
+msgid "Please wait; you are being redirected to <%s>"
+msgstr "Veuillez patienter, vous êtes redirigé vers <%s>"
 
-#: ../../mod/contacts.php:604
-msgid "Hidden"
-msgstr "Cachés"
+#: ../../boot.php:749
+msgid "Delete this item?"
+msgstr "Effacer cet élément?"
 
-#: ../../mod/contacts.php:607
-msgid "Only show hidden contacts"
-msgstr "Ne montrer que les contacts masqués"
+#: ../../boot.php:750 ../../object/Item.php:361 ../../object/Item.php:677
+#: ../../mod/photos.php:1564 ../../mod/photos.php:1608
+#: ../../mod/photos.php:1696 ../../mod/content.php:709
+msgid "Comment"
+msgstr "Commenter"
 
-#: ../../mod/contacts.php:655
-msgid "Mutual Friendship"
-msgstr "Relation réciproque"
+#: ../../boot.php:751 ../../include/contact_widgets.php:205
+#: ../../object/Item.php:390 ../../mod/content.php:606
+msgid "show more"
+msgstr "montrer plus"
 
-#: ../../mod/contacts.php:659
-msgid "is a fan of yours"
-msgstr "Vous suit"
+#: ../../boot.php:752
+msgid "show fewer"
+msgstr "montrer moins"
 
-#: ../../mod/contacts.php:663
-msgid "you are a fan of"
-msgstr "Vous le/la suivez"
+#: ../../boot.php:1122
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
 
-#: ../../mod/contacts.php:680 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Éditer le contact"
+#: ../../boot.php:1229
+msgid "Create a New Account"
+msgstr "Créer un nouveau compte"
 
-#: ../../mod/contacts.php:702 ../../include/nav.php:177
-#: ../../view/theme/diabook/theme.php:125
-msgid "Contacts"
-msgstr "Contacts"
+#: ../../boot.php:1230 ../../include/nav.php:109 ../../mod/register.php:269
+msgid "Register"
+msgstr "S'inscrire"
 
-#: ../../mod/contacts.php:706
-msgid "Search your contacts"
-msgstr "Rechercher dans vos contacts"
+#: ../../boot.php:1254 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Se déconnecter"
 
-#: ../../mod/contacts.php:707 ../../mod/directory.php:61
-msgid "Finding: "
-msgstr "Trouvé: "
+#: ../../boot.php:1255 ../../include/nav.php:92 ../../mod/bookmarklet.php:12
+msgid "Login"
+msgstr "Connexion"
 
-#: ../../mod/contacts.php:708 ../../mod/directory.php:63
-#: ../../include/contact_widgets.php:34
-msgid "Find"
-msgstr "Trouver"
+#: ../../boot.php:1257
+msgid "Nickname or Email address: "
+msgstr "Pseudo ou courriel: "
 
-#: ../../mod/contacts.php:713 ../../mod/settings.php:132
-#: ../../mod/settings.php:640
-msgid "Update"
-msgstr "Mises-à-jour"
+#: ../../boot.php:1258
+msgid "Password: "
+msgstr "Mot de passe: "
 
-#: ../../mod/contacts.php:717 ../../mod/group.php:171 ../../mod/admin.php:1007
-#: ../../mod/content.php:438 ../../mod/content.php:741
-#: ../../mod/settings.php:677 ../../mod/photos.php:1654
-#: ../../object/Item.php:130 ../../include/conversation.php:614
-msgid "Delete"
-msgstr "Supprimer"
+#: ../../boot.php:1259
+msgid "Remember me"
+msgstr "Se souvenir de moi"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Aucun profil"
+#: ../../boot.php:1262
+msgid "Or login using OpenID: "
+msgstr "Ou connectez-vous via OpenID: "
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gérer les identités et/ou les pages"
+#: ../../boot.php:1268
+msgid "Forgot your password?"
+msgstr "Mot de passe oublié?"
 
-#: ../../mod/manage.php:107
-msgid ""
-"Toggle between different identities or community/group pages which share "
-"your account details or which you have been granted \"manage\" permissions"
-msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
+#: ../../boot.php:1269 ../../mod/lostpass.php:109
+msgid "Password Reset"
+msgstr "Réinitialiser le mot de passe"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Choisir une identité à gérer: "
+#: ../../boot.php:1271
+msgid "Website Terms of Service"
+msgstr "Conditions d'utilisation du site internet"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Publication réussie."
+#: ../../boot.php:1272
+msgid "terms of service"
+msgstr "conditions d'utilisation"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:368
-msgid "Permission denied"
-msgstr "Permission refusée"
+#: ../../boot.php:1274
+msgid "Website Privacy Policy"
+msgstr "Politique de confidentialité du site internet"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Identifiant de profil invalide."
+#: ../../boot.php:1275
+msgid "privacy policy"
+msgstr "politique de confidentialité"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Éditer la visibilité du profil"
+#: ../../boot.php:1408
+msgid "Requested account is not available."
+msgstr "Le compte demandé n'est pas disponible."
 
-#: ../../mod/profperm.php:103 ../../mod/newmember.php:32 ../../boot.php:2119
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:87
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Profile"
-msgstr "Profil"
+#: ../../boot.php:1447 ../../mod/profile.php:21
+msgid "Requested profile is not available."
+msgstr "Le profil demandé n'est pas disponible."
 
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
+#: ../../boot.php:1490 ../../boot.php:1624
+#: ../../include/profile_advanced.php:84
+msgid "Edit profile"
+msgstr "Editer le profil"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visible par"
+#: ../../boot.php:1557 ../../include/contact_widgets.php:10
+#: ../../mod/suggest.php:90 ../../mod/match.php:58
+msgid "Connect"
+msgstr "Relier"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tous les contacts (ayant un accès sécurisé)"
+#: ../../boot.php:1589
+msgid "Message"
+msgstr "Message"
 
-#: ../../mod/display.php:82 ../../mod/display.php:284
-#: ../../mod/display.php:503 ../../mod/viewsrc.php:15 ../../mod/admin.php:169
-#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/notice.php:15
-#: ../../include/items.php:4516
-msgid "Item not found."
-msgstr "Élément introuvable."
+#: ../../boot.php:1595 ../../include/nav.php:175
+msgid "Profiles"
+msgstr "Profils"
 
-#: ../../mod/display.php:212 ../../mod/videos.php:115
-#: ../../mod/viewcontacts.php:19 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:762 ../../mod/search.php:89
-#: ../../mod/directory.php:33 ../../mod/photos.php:920
-msgid "Public access denied."
-msgstr "Accès public refusé."
+#: ../../boot.php:1595
+msgid "Manage/edit profiles"
+msgstr "Gérer/éditer les profils"
 
-#: ../../mod/display.php:332 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "L'accès au profil a été restreint."
+#: ../../boot.php:1600 ../../boot.php:1626 ../../mod/profiles.php:804
+msgid "Change profile photo"
+msgstr "Changer de photo de profil"
 
-#: ../../mod/display.php:496
-msgid "Item has been removed."
-msgstr "Cet élément a été enlevé."
+#: ../../boot.php:1601 ../../mod/profiles.php:805
+msgid "Create New Profile"
+msgstr "Créer un nouveau profil"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Bienvenue sur Friendica"
+#: ../../boot.php:1611 ../../mod/profiles.php:816
+msgid "Profile Image"
+msgstr "Image du profil"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checklist du nouvel utilisateur"
+#: ../../boot.php:1614 ../../mod/profiles.php:818
+msgid "visible to everybody"
+msgstr "visible par tous"
 
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page. A link to this page "
-"will be visible from your home page for two weeks after your initial "
-"registration and then will quietly disappear."
-msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
+#: ../../boot.php:1615 ../../mod/profiles.php:819
+msgid "Edit visibility"
+msgstr "Changer la visibilité"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Bien démarrer"
+#: ../../boot.php:1637 ../../include/event.php:40
+#: ../../include/bb2diaspora.php:155 ../../mod/events.php:471
+#: ../../mod/directory.php:136
+msgid "Location:"
+msgstr "Localisation:"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica pas-à-pas"
+#: ../../boot.php:1639 ../../include/profile_advanced.php:17
+#: ../../mod/directory.php:138
+msgid "Gender:"
+msgstr "Genre:"
 
-#: ../../mod/newmember.php:18
-msgid ""
-"On your <em>Quick Start</em> page - find a brief introduction to your "
-"profile and network tabs, make some new connections, and find some groups to"
-" join."
-msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
+#: ../../boot.php:1642 ../../include/profile_advanced.php:37
+#: ../../mod/directory.php:140
+msgid "Status:"
+msgstr "Statut:"
 
-#: ../../mod/newmember.php:22 ../../mod/admin.php:1104
-#: ../../mod/admin.php:1325 ../../mod/settings.php:85
-#: ../../include/nav.php:172 ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:648
-msgid "Settings"
-msgstr "Réglages"
+#: ../../boot.php:1644 ../../include/profile_advanced.php:48
+#: ../../mod/directory.php:142
+msgid "Homepage:"
+msgstr "Page personnelle:"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Éditer vos Réglages"
+#: ../../boot.php:1646 ../../include/profile_advanced.php:58
+#: ../../mod/directory.php:144
+msgid "About:"
+msgstr "À propos:"
 
-#: ../../mod/newmember.php:26
-msgid ""
-"On your <em>Settings</em> page -  change your initial password. Also make a "
-"note of your Identity Address. This looks just like an email address - and "
-"will be useful in making friends on the free social web."
-msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
+#: ../../boot.php:1711
+msgid "Network:"
+msgstr "Réseau"
 
-#: ../../mod/newmember.php:28
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished"
-" directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
-msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
+#: ../../boot.php:1743 ../../boot.php:1829
+msgid "g A l F d"
+msgstr "g A | F d"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-#: ../../mod/profiles.php:699
-msgid "Upload Profile Photo"
-msgstr "Téléverser une photo de profil"
+#: ../../boot.php:1744 ../../boot.php:1830
+msgid "F d"
+msgstr "F d"
 
-#: ../../mod/newmember.php:36
-msgid ""
-"Upload a profile photo if you have not done so already. Studies have shown "
-"that people with real photos of themselves are ten times more likely to make"
-" friends than people who do not."
-msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
+#: ../../boot.php:1789 ../../boot.php:1877
+msgid "[today]"
+msgstr "[aujourd'hui]"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Éditer votre Profil"
+#: ../../boot.php:1801
+msgid "Birthday Reminders"
+msgstr "Rappels d'anniversaires"
 
-#: ../../mod/newmember.php:38
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown"
-" visitors."
-msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
+#: ../../boot.php:1802
+msgid "Birthdays this week:"
+msgstr "Anniversaires cette semaine:"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Mots-clés du profil"
+#: ../../boot.php:1864
+msgid "[No description]"
+msgstr "[Sans description]"
 
-#: ../../mod/newmember.php:40
-msgid ""
-"Set some public keywords for your default profile which describe your "
-"interests. We may be able to find other people with similar interests and "
-"suggest friendships."
-msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
+#: ../../boot.php:1888
+msgid "Event Reminders"
+msgstr "Rappels d'événements"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Connexions"
+#: ../../boot.php:1889
+msgid "Events this week:"
+msgstr "Evénements cette semaine :"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../include/contact_selectors.php:81
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../boot.php:2126 ../../include/nav.php:76
+msgid "Status"
+msgstr "Statut"
 
-#: ../../mod/newmember.php:49
-msgid ""
-"Authorise the Facebook Connector if you currently have a Facebook account "
-"and we will (optionally) import all your Facebook friends and conversations."
-msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."
+#: ../../boot.php:2129
+msgid "Status Messages and Posts"
+msgstr "Messages d'état et publications"
 
-#: ../../mod/newmember.php:51
-msgid ""
-"<em>If</em> this is your own personal server, installing the Facebook addon "
-"may ease your transition to the free social web."
-msgstr "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."
+#: ../../boot.php:2136
+msgid "Profile Details"
+msgstr "Détails du profil"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importer courriels"
+#: ../../boot.php:2143 ../../mod/photos.php:52
+msgid "Photo Albums"
+msgstr "Albums photo"
 
-#: ../../mod/newmember.php:56
-msgid ""
-"Enter your email access information on your Connector Settings page if you "
-"wish to import and interact with friends or mailing lists from your email "
-"INBOX"
-msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
+#: ../../boot.php:2147 ../../boot.php:2150 ../../include/nav.php:79
+msgid "Videos"
+msgstr "Vidéos"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Consulter vos Contacts"
+#: ../../boot.php:2160
+msgid "Events and Calendar"
+msgstr "Événements et agenda"
 
-#: ../../mod/newmember.php:58
-msgid ""
-"Your Contacts page is your gateway to managing friendships and connecting "
-"with friends on other networks. Typically you enter their address or site "
-"URL in the <em>Add New Contact</em> dialog."
-msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
+#: ../../boot.php:2164 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Notes personnelles"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Consulter l'Annuaire de votre Site"
+#: ../../boot.php:2167
+msgid "Only You Can See This"
+msgstr "Vous seul pouvez voir ça"
 
-#: ../../mod/newmember.php:60
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
-msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Fonctions générales"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Trouver de nouvelles personnes"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Profils multiples"
 
-#: ../../mod/newmember.php:62
-msgid ""
-"On the side panel of the Contacts page are several tools to find new "
-"friends. We can match people by interest, look up people by name or "
-"interest, and provide suggestions based on network relationships. On a brand"
-" new site, friend suggestions will usually begin to be populated within 24 "
-"hours."
-msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Possibilité de créer plusieurs profils"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Groupes"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Caractéristiques de composition de publication"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Grouper vos contacts"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Éditeur de texte enrichi"
 
-#: ../../mod/newmember.php:70
-msgid ""
-"Once you have made some friends, organize them into private conversation "
-"groups from the sidebar of your Contacts page and then you can interact with"
-" each group privately on your Network page."
-msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Activer l'éditeur de texte enrichi"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Pourquoi mes éléments ne sont pas publics?"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Aperçu de la publication"
 
-#: ../../mod/newmember.php:73
-msgid ""
-"Friendica respects your privacy. By default, your posts will only show up to"
-" people you've added as friends. For more information, see the help section "
-"from the link above."
-msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permet la prévisualisation des publications et commentaires avant de les publier"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Obtenir de l'aide"
-
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Aller à la section Aide"
-
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
-
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
+#: ../../include/features.php:33
+msgid "Auto-mention Forums"
+msgstr ""
 
-#: ../../mod/openid.php:53
+#: ../../include/features.php:33
 msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
-
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Échec de connexion."
+"Add/remove mention when a fourm page is selected/deselected in ACL window."
+msgstr ""
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Image envoyée, mais impossible de la retailler."
+#: ../../include/features.php:38
+msgid "Network Sidebar Widgets"
+msgstr "Widgets réseau pour barre latérale"
 
-#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:81
-#: ../../mod/profile_photo.php:88 ../../mod/profile_photo.php:204
-#: ../../mod/profile_photo.php:296 ../../mod/profile_photo.php:305
-#: ../../mod/photos.php:155 ../../mod/photos.php:731 ../../mod/photos.php:1187
-#: ../../mod/photos.php:1210 ../../include/user.php:335
-#: ../../include/user.php:342 ../../include/user.php:349
-#: ../../view/theme/diabook/theme.php:500
-msgid "Profile Photos"
-msgstr "Photos du profil"
+#: ../../include/features.php:39
+msgid "Search by Date"
+msgstr "Rechercher par Date"
 
-#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
-#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
-#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Réduction de la taille de l'image [%s] échouée."
+#: ../../include/features.php:39
+msgid "Ability to select posts by date ranges"
+msgstr "Capacité de sélectionner les publications par intervalles de dates"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
+#: ../../include/features.php:40
+msgid "Group Filter"
+msgstr "Filtre de groupe"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Impossible de traiter l'image"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:122
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "L'image dépasse la taille limite de %d"
+#: ../../include/features.php:41
+msgid "Network Filter"
+msgstr "Filtre de réseau"
 
-#: ../../mod/profile_photo.php:153 ../../mod/wall_upload.php:144
-#: ../../mod/photos.php:807
-msgid "Unable to process image."
-msgstr "Impossible de traiter l'image."
+#: ../../include/features.php:41
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Fichier à téléverser:"
+#: ../../include/features.php:42 ../../mod/network.php:194
+#: ../../mod/search.php:30
+msgid "Saved Searches"
+msgstr "Recherches"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Choisir un profil:"
+#: ../../include/features.php:42
+msgid "Save search terms for re-use"
+msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
 
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Téléverser"
+#: ../../include/features.php:47
+msgid "Network Tabs"
+msgstr "Onglets Réseau"
 
-#: ../../mod/profile_photo.php:248 ../../mod/settings.php:1062
-msgid "or"
-msgstr "ou"
+#: ../../include/features.php:48
+msgid "Network Personal Tab"
+msgstr "Onglet Réseau Personnel"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "ignorer cette étape"
+#: ../../include/features.php:48
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "choisissez une photo depuis vos albums"
+#: ../../include/features.php:49
+msgid "Network New Tab"
+msgstr "Nouvel onglet réseaux"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "(Re)cadrer l'image"
+#: ../../include/features.php:49
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
+#: ../../include/features.php:50
+msgid "Network Shared Links Tab"
+msgstr "Onglet réseau partagé"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Édition terminée"
+#: ../../include/features.php:50
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Image téléversée avec succès."
+#: ../../include/features.php:55
+msgid "Post/Comment Tools"
+msgstr "outils de publication/commentaire"
 
-#: ../../mod/profile_photo.php:301 ../../mod/wall_upload.php:172
-#: ../../mod/photos.php:834
-msgid "Image upload failed."
-msgstr "Le téléversement de l'image a échoué."
+#: ../../include/features.php:56
+msgid "Multiple Deletion"
+msgstr "Suppression multiple"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/text.php:1968 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:471
-msgid "photo"
-msgstr "photo"
+#: ../../include/features.php:56
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
 
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:149
-#: ../../mod/like.php:319 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:2087
-#: ../../view/theme/diabook/theme.php:466
-#: ../../view/theme/diabook/theme.php:475
-msgid "status"
-msgstr "le statut"
+#: ../../include/features.php:57
+msgid "Edit Sent Posts"
+msgstr "Éditer les publications envoyées"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s suit les %3$s de %2$s"
+#: ../../include/features.php:57
+msgid "Edit and correct posts and comments after sending"
+msgstr "Éditer et corriger les publications et commentaires après l'envoi"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Étiquette supprimée"
+#: ../../include/features.php:58
+msgid "Tagging"
+msgstr "Étiquettage"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+#: ../../include/features.php:58
+msgid "Ability to tag existing posts"
+msgstr "Possibilité d'étiqueter les publications existantes"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Sélectionner une étiquette à supprimer: "
+#: ../../include/features.php:59
+msgid "Post Categories"
+msgstr "Catégories des publications"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:139
-msgid "Remove"
-msgstr "Utiliser comme photo de profil"
+#: ../../include/features.php:59
+msgid "Add categories to your posts"
+msgstr "Ajouter des catégories à vos publications"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:1006
-#: ../../include/conversation.php:1024
-msgid "Save to Folder:"
-msgstr "Sauver dans le Dossier:"
+#: ../../include/features.php:60 ../../include/contact_widgets.php:104
+msgid "Saved Folders"
+msgstr "Dossiers sauvegardés"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- choisir -"
+#: ../../include/features.php:60
+msgid "Ability to file posts under folders"
+msgstr "Possibilité d'afficher les publications sous les répertoires"
 
-#: ../../mod/filer.php:31 ../../mod/editpost.php:109 ../../mod/notes.php:63
-#: ../../include/text.php:956
-msgid "Save"
-msgstr "Sauver"
+#: ../../include/features.php:61
+msgid "Dislike Posts"
+msgstr "Publications non aimées"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contact ajouté"
+#: ../../include/features.php:61
+msgid "Ability to dislike posts/comments"
+msgstr "Possibilité de ne pas aimer les publications/commentaires"
 
-#: ../../mod/item.php:113
-msgid "Unable to locate original post."
-msgstr "Impossible de localiser la publication originale."
+#: ../../include/features.php:62
+msgid "Star Posts"
+msgstr "Publications spéciales"
 
-#: ../../mod/item.php:345
-msgid "Empty post discarded."
-msgstr "Publication vide rejetée."
+#: ../../include/features.php:62
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Possibilité de marquer les publications spéciales d'une étoile"
 
-#: ../../mod/item.php:484 ../../mod/wall_upload.php:169
-#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
-#: ../../include/Photo.php:916 ../../include/Photo.php:931
-#: ../../include/Photo.php:938 ../../include/Photo.php:960
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Photos du mur"
+#: ../../include/features.php:63
+msgid "Mute Post Notifications"
+msgstr ""
 
-#: ../../mod/item.php:938
-msgid "System error. Post not saved."
-msgstr "Erreur système. Publication non sauvée."
+#: ../../include/features.php:63
+msgid "Ability to mute notifications for a thread"
+msgstr ""
 
-#: ../../mod/item.php:964
+#: ../../include/items.php:2307 ../../include/datetime.php:477
 #, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
+msgid "%s's birthday"
+msgstr "Anniversaire de %s's"
 
-#: ../../mod/item.php:966
+#: ../../include/items.php:2308 ../../include/datetime.php:478
 #, php-format
-msgid "You may visit them online at %s"
-msgstr "Vous pouvez leur rendre visite sur %s"
-
-#: ../../mod/item.php:967
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
+msgid "Happy Birthday %s"
+msgstr "Joyeux anniversaire, %s !"
 
-#: ../../mod/item.php:971
-#, php-format
-msgid "%s posted an update."
-msgstr "%s a publié une mise à jour."
+#: ../../include/items.php:4111 ../../mod/dfrn_request.php:717
+#: ../../mod/dfrn_confirm.php:752
+msgid "[Name Withheld]"
+msgstr "[Nom non-publié]"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Groupe créé."
+#: ../../include/items.php:4619 ../../mod/admin.php:169
+#: ../../mod/admin.php:1052 ../../mod/admin.php:1265 ../../mod/viewsrc.php:15
+#: ../../mod/notice.php:15 ../../mod/display.php:82 ../../mod/display.php:284
+#: ../../mod/display.php:503
+msgid "Item not found."
+msgstr "Élément introuvable."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
+#: ../../include/items.php:4658
+msgid "Do you really want to delete this item?"
+msgstr "Voulez-vous vraiment supprimer cet élément ?"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Groupe introuvable."
+#: ../../include/items.php:4660 ../../mod/settings.php:1015
+#: ../../mod/settings.php:1021 ../../mod/settings.php:1029
+#: ../../mod/settings.php:1033 ../../mod/settings.php:1038
+#: ../../mod/settings.php:1044 ../../mod/settings.php:1050
+#: ../../mod/settings.php:1056 ../../mod/settings.php:1086
+#: ../../mod/settings.php:1087 ../../mod/settings.php:1088
+#: ../../mod/settings.php:1089 ../../mod/settings.php:1090
+#: ../../mod/contacts.php:341 ../../mod/register.php:233
+#: ../../mod/dfrn_request.php:830 ../../mod/api.php:105
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+#: ../../mod/profiles.php:661 ../../mod/profiles.php:664
+msgid "Yes"
+msgstr "Oui"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Groupe renommé."
+#: ../../include/items.php:4663 ../../include/conversation.php:1128
+#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/contacts.php:344 ../../mod/editpost.php:148
+#: ../../mod/dfrn_request.php:844 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/suggest.php:32
+#: ../../mod/photos.php:203 ../../mod/photos.php:292 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/message.php:212
+msgid "Cancel"
+msgstr "Annuler"
 
-#: ../../mod/group.php:87
-msgid "Save Group"
-msgstr "Sauvegarder le groupe"
+#: ../../include/items.php:4881
+msgid "Archives"
+msgstr "Archives"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
+#: ../../include/group.php:25
+msgid ""
+"A deleted group with this name was revived. Existing item permissions "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nom du groupe: "
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Groupe enlevé."
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Tout le monde"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "éditer"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Éditeur de groupe"
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Groupes"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membres"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Editer groupe"
 
-#: ../../mod/apps.php:7 ../../index.php:212
-msgid "You must be logged in to use addons. "
-msgstr "Vous devez être connecté pour utiliser les greffons."
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Créer un nouveau groupe"
 
-#: ../../mod/apps.php:11
-msgid "Applications"
-msgstr "Applications"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contacts n'appartenant à aucun groupe"
 
-#: ../../mod/apps.php:14
-msgid "No installed applications."
-msgstr "Pas d'application installée."
+#: ../../include/group.php:275 ../../mod/network.php:195
+msgid "add"
+msgstr "ajouter"
 
-#: ../../mod/dfrn_confirm.php:64 ../../mod/profiles.php:18
-#: ../../mod/profiles.php:133 ../../mod/profiles.php:179
-#: ../../mod/profiles.php:630
-msgid "Profile not found."
-msgstr "Profil introuvable."
+#: ../../include/Photo_old.php:911 ../../include/Photo_old.php:926
+#: ../../include/Photo_old.php:933 ../../include/Photo_old.php:955
+#: ../../include/Photo.php:933 ../../include/Photo.php:948
+#: ../../include/Photo.php:955 ../../include/Photo.php:977
+#: ../../include/message.php:144 ../../mod/wall_upload.php:169
+#: ../../mod/wall_upload.php:178 ../../mod/wall_upload.php:185
+#: ../../mod/item.php:485
+msgid "Wall Photos"
+msgstr "Photos du mur"
 
-#: ../../mod/dfrn_confirm.php:120 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/crepair.php:133
-msgid "Contact not found."
-msgstr "Contact introuvable."
+#: ../../include/dba.php:56 ../../include/dba_pdo.php:72
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
 
-#: ../../mod/dfrn_confirm.php:121
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Ajouter un nouveau contact"
 
-#: ../../mod/dfrn_confirm.php:240
-msgid "Response from remote site was not understood."
-msgstr "Réponse du site distant incomprise."
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Entrez son adresse ou sa localisation web"
 
-#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
-msgid "Unexpected response from remote site: "
-msgstr "Réponse inattendue du site distant: "
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Exemple: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/dfrn_confirm.php:263
-msgid "Confirmation completed successfully."
-msgstr "Confirmation achevée avec succès."
+#: ../../include/contact_widgets.php:24
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invitation disponible"
+msgstr[1] "%d invitations disponibles"
 
-#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
-#: ../../mod/dfrn_confirm.php:286
-msgid "Remote site reported: "
-msgstr "Alerte du site distant: "
+#: ../../include/contact_widgets.php:30
+msgid "Find People"
+msgstr "Trouver des personnes"
 
-#: ../../mod/dfrn_confirm.php:277
-msgid "Temporary failure. Please wait and try again."
-msgstr "Échec temporaire. Merci de recommencer ultérieurement."
+#: ../../include/contact_widgets.php:31
+msgid "Enter name or interest"
+msgstr "Entrez un nom ou un centre d'intérêt"
 
-#: ../../mod/dfrn_confirm.php:284
-msgid "Introduction failed or was revoked."
-msgstr "Introduction échouée ou annulée."
+#: ../../include/contact_widgets.php:32
+msgid "Connect/Follow"
+msgstr "Connecter/Suivre"
 
-#: ../../mod/dfrn_confirm.php:429
-msgid "Unable to set contact photo."
-msgstr "Impossible de définir la photo du contact."
+#: ../../include/contact_widgets.php:33
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Exemples: Robert Morgenstein, Pêche"
 
-#: ../../mod/dfrn_confirm.php:486 ../../include/conversation.php:172
-#: ../../include/diaspora.php:620
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s est désormais lié à %2$s"
+#: ../../include/contact_widgets.php:34 ../../mod/contacts.php:724
+#: ../../mod/directory.php:63
+msgid "Find"
+msgstr "Trouver"
 
-#: ../../mod/dfrn_confirm.php:571
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Pas d'utilisateur trouvé pour '%s' "
+#: ../../include/contact_widgets.php:37
+msgid "Random Profile"
+msgstr "Profil au hasard"
 
-#: ../../mod/dfrn_confirm.php:581
-msgid "Our site encryption key is apparently messed up."
-msgstr "Notre clé de chiffrement de site est apparemment corrompue."
+#: ../../include/contact_widgets.php:71
+msgid "Networks"
+msgstr "Réseaux"
 
-#: ../../mod/dfrn_confirm.php:592
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "URL de site absente ou indéchiffrable."
+#: ../../include/contact_widgets.php:74
+msgid "All Networks"
+msgstr "Tous réseaux"
 
-#: ../../mod/dfrn_confirm.php:613
-msgid "Contact record was not found for you on our site."
-msgstr "Pas d'entrée pour ce contact sur notre site."
+#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
+msgid "Everything"
+msgstr "Tout"
 
-#: ../../mod/dfrn_confirm.php:627
+#: ../../include/contact_widgets.php:136
+msgid "Categories"
+msgstr "Catégories"
+
+#: ../../include/contact_widgets.php:200 ../../mod/contacts.php:439
 #, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contact en commun"
+msgstr[1] "%d contacts en commun"
 
-#: ../../mod/dfrn_confirm.php:647
-msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."
+#: ../../include/enotify.php:18
+msgid "Friendica Notification"
+msgstr "Notification Friendica"
 
-#: ../../mod/dfrn_confirm.php:658
-msgid "Unable to set your contact credentials on our system."
-msgstr "Impossible de vous définir des permissions sur notre système."
+#: ../../include/enotify.php:21
+msgid "Thank You,"
+msgstr "Merci, "
 
-#: ../../mod/dfrn_confirm.php:725
-msgid "Unable to update your contact profile details on our system"
-msgstr "Impossible de mettre les détails de votre profil à jour sur notre système"
+#: ../../include/enotify.php:23
+#, php-format
+msgid "%s Administrator"
+msgstr "L'administrateur de %s"
 
-#: ../../mod/dfrn_confirm.php:752 ../../mod/dfrn_request.php:717
-#: ../../include/items.php:4008
-msgid "[Name Withheld]"
-msgstr "[Nom non-publié]"
+#: ../../include/enotify.php:33 ../../include/delivery.php:467
+#: ../../include/notifier.php:796
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/dfrn_confirm.php:797
+#: ../../include/enotify.php:64
 #, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s a rejoint %2$s"
-
-#: ../../mod/profile.php:21 ../../boot.php:1458
-msgid "Requested profile is not available."
-msgstr "Le profil demandé n'est pas disponible."
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Conseils aux nouveaux venus"
+#: ../../include/enotify.php:68
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
 
-#: ../../mod/videos.php:125
-msgid "No videos selected"
-msgstr "Pas de vidéo sélectionné"
+#: ../../include/enotify.php:70
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
 
-#: ../../mod/videos.php:226 ../../mod/photos.php:1031
-msgid "Access to this item is restricted."
-msgstr "Accès restreint à cet élément."
+#: ../../include/enotify.php:71
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s vous a envoyé %2$s."
 
-#: ../../mod/videos.php:301 ../../include/text.php:1405
-msgid "View Video"
-msgstr "Regarder la vidéo"
+#: ../../include/enotify.php:71
+msgid "a private message"
+msgstr "un message privé"
 
-#: ../../mod/videos.php:308 ../../mod/photos.php:1808
-msgid "View Album"
-msgstr "Voir l'album"
+#: ../../include/enotify.php:72
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
 
-#: ../../mod/videos.php:317
-msgid "Recent Videos"
-msgstr "Vidéos récente"
+#: ../../include/enotify.php:124
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
 
-#: ../../mod/videos.php:319
-msgid "Upload New Videos"
-msgstr "Téléversé une nouvelle vidéo"
+#: ../../include/enotify.php:131
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../include/enotify.php:139
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggestion d'amitié/contact envoyée."
-
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggérer des amis/contacts"
+#: ../../include/enotify.php:149
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
 
-#: ../../mod/fsuggest.php:99
+#: ../../include/enotify.php:150
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggérer un ami/contact pour %s"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s a commenté un élément que vous suivez."
 
-#: ../../mod/lostpass.php:19
-msgid "No valid account found."
-msgstr "Impossible de trouver un compte valide."
+#: ../../include/enotify.php:153 ../../include/enotify.php:168
+#: ../../include/enotify.php:181 ../../include/enotify.php:194
+#: ../../include/enotify.php:212 ../../include/enotify.php:225
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
 
-#: ../../mod/lostpass.php:35
-msgid "Password reset request issued. Check your email."
-msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
+#: ../../include/enotify.php:160
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
 
-#: ../../mod/lostpass.php:42
+#: ../../include/enotify.php:162
 #, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
-"\t\tpassword. In order to confirm this request, please select the verification link\n"
-"\t\tbelow or paste it into your web browser address bar.\n"
-"\n"
-"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
-"\t\tprovided and ignore and/or delete this email.\n"
-"\n"
-"\t\tYour password will not be changed unless we can verify that you\n"
-"\t\tissued this request."
-msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s a publié sur votre mur à %2$s"
 
-#: ../../mod/lostpass.php:53
+#: ../../include/enotify.php:164
 #, php-format
-msgid ""
-"\n"
-"\t\tFollow this link to verify your identity:\n"
-"\n"
-"\t\t%1$s\n"
-"\n"
-"\t\tYou will then receive a follow-up message containing the new password.\n"
-"\t\tYou may change that password from your account settings page after logging in.\n"
-"\n"
-"\t\tThe login details are as follows:\n"
-"\n"
-"\t\tSite Location:\t%2$s\n"
-"\t\tLogin Name:\t%3$s"
-msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
 
-#: ../../mod/lostpass.php:72
+#: ../../include/enotify.php:175
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Requête de réinitialisation de mot de passe à %s"
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notification] %s vous a étiqueté"
 
-#: ../../mod/lostpass.php:92
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
+#: ../../include/enotify.php:176
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s vous a étiqueté sur %2$s"
 
-#: ../../mod/lostpass.php:109 ../../boot.php:1280
-msgid "Password Reset"
-msgstr "Réinitialiser le mot de passe"
+#: ../../include/enotify.php:177
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
 
-#: ../../mod/lostpass.php:110
-msgid "Your password has been reset as requested."
-msgstr "Votre mot de passe a bien été réinitialisé."
+#: ../../include/enotify.php:188
+#, php-format
+msgid "[Friendica:Notify] %s shared a new post"
+msgstr "[Friendica:Notification] %s partage une nouvelle publication"
 
-#: ../../mod/lostpass.php:111
-msgid "Your new password is"
-msgstr "Votre nouveau mot de passe est "
+#: ../../include/enotify.php:189
+#, php-format
+msgid "%1$s shared a new post at %2$s"
+msgstr "%1$s a partagé une nouvelle publication sur %2$s"
 
-#: ../../mod/lostpass.php:112
-msgid "Save or copy your new password - and then"
-msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
+#: ../../include/enotify.php:190
+#, php-format
+msgid "%1$s [url=%2$s]shared a post[/url]."
+msgstr "%1$s [url=%2$s]partage une publication[/url]."
 
-#: ../../mod/lostpass.php:113
-msgid "click here to login"
-msgstr "cliquez ici pour vous connecter"
+#: ../../include/enotify.php:202
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify] %1$s vous a sollicité"
 
-#: ../../mod/lostpass.php:114
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté."
+#: ../../include/enotify.php:203
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s vous a sollicité via %2$s"
 
-#: ../../mod/lostpass.php:125
+#: ../../include/enotify.php:204
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tDear %1$s,\n"
-"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
-"\t\t\t\tinformation for your records (or change your password immediately to\n"
-"\t\t\t\tsomething that you will remember).\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
 
-#: ../../mod/lostpass.php:131
+#: ../../include/enotify.php:219
 #, php-format
-msgid ""
-"\n"
-"\t\t\t\tYour login details are as follows:\n"
-"\n"
-"\t\t\t\tSite Location:\t%1$s\n"
-"\t\t\t\tLogin Name:\t%2$s\n"
-"\t\t\t\tPassword:\t%3$s\n"
-"\n"
-"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
-"\t\t\t"
-msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notification] %s a étiqueté votre publication"
 
-#: ../../mod/lostpass.php:147
+#: ../../include/enotify.php:220
 #, php-format
-msgid "Your password has been changed at %s"
-msgstr "Votre mot de passe a été modifié à %s"
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s a étiqueté votre publication sur %2$s"
 
-#: ../../mod/lostpass.php:159
-msgid "Forgot your Password?"
-msgstr "Mot de passe oublié?"
+#: ../../include/enotify.php:221
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
 
-#: ../../mod/lostpass.php:160
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
+#: ../../include/enotify.php:232
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notification] Introduction reçue"
 
-#: ../../mod/lostpass.php:161
-msgid "Nickname or Email: "
-msgstr "Pseudo ou Courriel: "
+#: ../../include/enotify.php:233
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
 
-#: ../../mod/lostpass.php:162
-msgid "Reset"
-msgstr "Réinitialiser"
+#: ../../include/enotify.php:234
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
 
-#: ../../mod/like.php:166 ../../include/conversation.php:137
-#: ../../include/diaspora.php:2103 ../../view/theme/diabook/theme.php:480
+#: ../../include/enotify.php:237 ../../include/enotify.php:279
 #, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s aime %3$s de %2$s"
+msgid "You may visit their profile at %s"
+msgstr "Vous pouvez visiter son profil sur %s"
 
-#: ../../mod/like.php:168 ../../include/conversation.php:140
+#: ../../include/enotify.php:239
 #, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s n'aime pas %3$s de %2$s"
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
 
-#: ../../mod/ping.php:240
-msgid "{0} wants to be your friend"
-msgstr "{0} souhaite être votre ami(e)"
+#: ../../include/enotify.php:247
+msgid "[Friendica:Notify] A new person is sharing with you"
+msgstr "[Notification Friendica] Une nouvelle personne partage avec vous"
 
-#: ../../mod/ping.php:245
-msgid "{0} sent you a message"
-msgstr "{0} vous a envoyé un message"
+#: ../../include/enotify.php:248 ../../include/enotify.php:249
+#, php-format
+msgid "%1$s is sharing with you at %2$s"
+msgstr ""
 
-#: ../../mod/ping.php:250
-msgid "{0} requested registration"
-msgstr "{0} a demandé à s'inscrire"
+#: ../../include/enotify.php:255
+msgid "[Friendica:Notify] You have a new follower"
+msgstr ""
 
-#: ../../mod/ping.php:256
+#: ../../include/enotify.php:256 ../../include/enotify.php:257
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} a commenté la publication de %s"
+msgid "You have a new follower at %2$s : %1$s"
+msgstr ""
 
-#: ../../mod/ping.php:261
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} a aimé la publication de %s"
+#: ../../include/enotify.php:270
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
 
-#: ../../mod/ping.php:266
+#: ../../include/enotify.php:271
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} n'a pas aimé la publication de %s"
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
 
-#: ../../mod/ping.php:271
+#: ../../include/enotify.php:272
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} est désormais ami(e) avec %s"
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
 
-#: ../../mod/ping.php:276
-msgid "{0} posted"
-msgstr "{0} a publié"
+#: ../../include/enotify.php:277
+msgid "Name:"
+msgstr "Nom :"
 
-#: ../../mod/ping.php:281
+#: ../../include/enotify.php:278
+msgid "Photo:"
+msgstr "Photo :"
+
+#: ../../include/enotify.php:281
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} a étiqueté la publication de %s avec #%s"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
 
-#: ../../mod/ping.php:287
-msgid "{0} mentioned you in a post"
-msgstr "{0} vous a mentionné dans une publication"
+#: ../../include/enotify.php:289 ../../include/enotify.php:302
+msgid "[Friendica:Notify] Connection accepted"
+msgstr ""
 
-#: ../../mod/viewcontacts.php:41
-msgid "No contacts."
-msgstr "Aucun contact."
+#: ../../include/enotify.php:290 ../../include/enotify.php:303
+#, php-format
+msgid "'%1$s' has acepted your connection request at %2$s"
+msgstr ""
 
-#: ../../mod/viewcontacts.php:78 ../../include/text.php:876
-msgid "View Contacts"
-msgstr "Voir les contacts"
+#: ../../include/enotify.php:291 ../../include/enotify.php:304
+#, php-format
+msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
+msgstr ""
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identifiant de demande invalide."
+#: ../../include/enotify.php:294
+msgid ""
+"You are now mutual friends and may exchange status updates, photos, and email\n"
+"\twithout restriction."
+msgstr ""
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Rejeter"
+#: ../../include/enotify.php:297 ../../include/enotify.php:311
+#, php-format
+msgid "Please visit %s  if you wish to make any changes to this relationship."
+msgstr ""
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Système"
+#: ../../include/enotify.php:307
+#, php-format
+msgid ""
+"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
+"communication - such as private messaging and some profile interactions. If "
+"this is a celebrity or community page, these settings were applied "
+"automatically."
+msgstr ""
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:145
-msgid "Network"
-msgstr "Réseau"
+#: ../../include/enotify.php:309
+#, php-format
+msgid ""
+"'%1$s' may choose to extend this into a two-way or more permissive "
+"relationship in the future. "
+msgstr ""
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:371
-msgid "Personal"
-msgstr "Personnel"
+#: ../../include/enotify.php:322
+msgid "[Friendica System:Notify] registration request"
+msgstr ""
 
-#: ../../mod/notifications.php:93 ../../include/nav.php:105
-#: ../../include/nav.php:148 ../../view/theme/diabook/theme.php:123
-msgid "Home"
-msgstr "Profil"
+#: ../../include/enotify.php:323
+#, php-format
+msgid "You've received a registration request from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:154
-msgid "Introductions"
-msgstr "Introductions"
+#: ../../include/enotify.php:324
+#, php-format
+msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
+msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s."
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Voir les demandes ignorées"
+#: ../../include/enotify.php:327
+#, php-format
+msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
+msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Cacher les demandes ignorées"
+#: ../../include/enotify.php:330
+#, php-format
+msgid "Please visit %s to approve or reject the request."
+msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Type de notification: "
+#: ../../include/api.php:304 ../../include/api.php:315
+#: ../../include/api.php:416 ../../include/api.php:1063
+#: ../../include/api.php:1065
+msgid "User not found."
+msgstr "Utilisateur non trouvé"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Suggestion d'amitié/contact"
+#: ../../include/api.php:770
+#, php-format
+msgid "Daily posting limit of %d posts reached. The post was rejected."
+msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée."
 
-#: ../../mod/notifications.php:152
+#: ../../include/api.php:789
 #, php-format
-msgid "suggested by %s"
-msgstr "suggéré(e) par %s"
+msgid "Weekly posting limit of %d posts reached. The post was rejected."
+msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Poster une nouvelle avtivité d'ami"
+#: ../../include/api.php:808
+#, php-format
+msgid "Monthly posting limit of %d posts reached. The post was rejected."
+msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "si possible"
+#: ../../include/api.php:1271
+msgid "There is no status with this id."
+msgstr "Il n'y a pas de statut avec cet id."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:1005
-msgid "Approve"
-msgstr "Approuver"
+#: ../../include/api.php:1341
+msgid "There is no conversation with this id."
+msgstr "Il n'y a pas de conversation avec cet id."
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Prétend que vous le connaissez: "
+#: ../../include/api.php:1613
+msgid "Invalid request."
+msgstr "Requête invalide."
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "oui"
+#: ../../include/api.php:1624
+msgid "Invalid item."
+msgstr "Item invalide."
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "non"
+#: ../../include/api.php:1634
+msgid "Invalid action. "
+msgstr "Action invalide."
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Approuver en tant que: "
+#: ../../include/api.php:1642
+msgid "DB error"
+msgstr ""
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Ami"
+#: ../../include/network.php:890
+msgid "view full size"
+msgstr "voir en pleine taille"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Initiateur du partage"
+#: ../../include/Scrape.php:608
+msgid " on Last.fm"
+msgstr "sur Last.fm"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Admirateur"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1133
+msgid "Full Name:"
+msgstr "Nom complet:"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Demande de connexion/relation"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nouvel abonné"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Aucune demande d'introduction."
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Anniversaire:"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:155
-msgid "Notifications"
-msgstr "Notifications"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Age:"
 
-#: ../../mod/notifications.php:258 ../../mod/notifications.php:387
-#: ../../mod/notifications.php:478
+#: ../../include/profile_advanced.php:43
 #, php-format
-msgid "%s liked %s's post"
-msgstr "%s a aimé la publication de %s"
+msgid "for %1$d %2$s"
+msgstr "depuis %1$d %2$s"
 
-#: ../../mod/notifications.php:268 ../../mod/notifications.php:397
-#: ../../mod/notifications.php:488
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s n'a pas aimé la publication de %s"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:714
+msgid "Sexual Preference:"
+msgstr "Préférence sexuelle:"
 
-#: ../../mod/notifications.php:283 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:503
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s est désormais ami(e) avec %s"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:716
+msgid "Hometown:"
+msgstr " Ville d'origine:"
 
-#: ../../mod/notifications.php:290 ../../mod/notifications.php:419
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a créé une nouvelle publication"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Étiquette:"
 
-#: ../../mod/notifications.php:291 ../../mod/notifications.php:420
-#: ../../mod/notifications.php:513
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s a commenté la publication de %s"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:717
+msgid "Political Views:"
+msgstr "Opinions politiques:"
 
-#: ../../mod/notifications.php:306
-msgid "No more network notifications."
-msgstr "Aucune notification du réseau."
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/notifications.php:310
-msgid "Network Notifications"
-msgstr "Notifications du réseau"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Passe-temps/Centres d'intérêt:"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:75
-msgid "No more system notifications."
-msgstr "Pas plus de notifications système."
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:721
+msgid "Likes:"
+msgstr "J'aime :"
 
-#: ../../mod/notifications.php:340 ../../mod/notify.php:79
-msgid "System Notifications"
-msgstr "Notifications du système"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:722
+msgid "Dislikes:"
+msgstr "Je n'aime pas :"
 
-#: ../../mod/notifications.php:435
-msgid "No more personal notifications."
-msgstr "Aucun notification personnelle."
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Coordonnées/Réseaux sociaux:"
 
-#: ../../mod/notifications.php:439
-msgid "Personal Notifications"
-msgstr "Notifications personnelles"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Goûts musicaux:"
 
-#: ../../mod/notifications.php:520
-msgid "No more home notifications."
-msgstr "Aucune notification de la page d'accueil."
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Lectures:"
 
-#: ../../mod/notifications.php:524
-msgid "Home Notifications"
-msgstr "Notifications de page d'accueil"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Télévision:"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Texte source (bbcode) :"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Cinéma/Danse/Culture/Divertissement:"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Texte source (Diaspora) à convertir en BBcode :"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amour/Romance:"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Source input: "
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Activité professionnelle/Occupation:"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (HTML brut)"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Études/Formation:"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
-
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
-
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
-
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
-
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
-
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
-
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Texte source (format Diaspora) :"
-
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb :"
-
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
 msgid "Nothing new here"
 msgstr "Rien de neuf ici"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
 msgid "Clear notifications"
 msgstr "Effacer les notifications"
 
-#: ../../mod/message.php:9 ../../include/nav.php:164
-msgid "New Message"
-msgstr "Nouveau message"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Mettre fin à cette session"
 
-#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
-msgid "No recipient selected."
-msgstr "Pas de destinataire sélectionné."
+#: ../../include/nav.php:79
+msgid "Your videos"
+msgstr "Vos vidéos"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossible de localiser les informations du contact."
+#: ../../include/nav.php:81
+msgid "Your personal notes"
+msgstr "Vos notes personnelles"
 
-#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
-msgid "Message could not be sent."
-msgstr "Impossible d'envoyer le message."
+#: ../../include/nav.php:92
+msgid "Sign in"
+msgstr "Se connecter"
 
-#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
-msgid "Message collection failure."
-msgstr "Récupération des messages infructueuse."
+#: ../../include/nav.php:105
+msgid "Home Page"
+msgstr "Page d'accueil"
 
-#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
-msgid "Message sent."
-msgstr "Message envoyé."
+#: ../../include/nav.php:109
+msgid "Create an account"
+msgstr "Créer un compte"
 
-#: ../../mod/message.php:182 ../../include/nav.php:161
-msgid "Messages"
-msgstr "Messages"
+#: ../../include/nav.php:114 ../../mod/help.php:36
+msgid "Help"
+msgstr "Aide"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Voulez-vous vraiment supprimer ce message ?"
+#: ../../include/nav.php:114
+msgid "Help and documentation"
+msgstr "Aide et documentation"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Message supprimé."
+#: ../../include/nav.php:117
+msgid "Apps"
+msgstr "Applications"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Conversation supprimée."
+#: ../../include/nav.php:117
+msgid "Addon applications, utilities, games"
+msgstr "Applications supplémentaires, utilitaires, jeux"
 
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
-msgid "Please enter a link URL:"
-msgstr "Entrez un lien web:"
+#: ../../include/nav.php:119 ../../include/text.php:968
+#: ../../include/text.php:969 ../../mod/search.php:99
+msgid "Search"
+msgstr "Recherche"
 
-#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
-msgid "Send Private Message"
-msgstr "Envoyer un message privé"
+#: ../../include/nav.php:119
+msgid "Search site content"
+msgstr "Rechercher dans le contenu du site"
 
-#: ../../mod/message.php:320 ../../mod/message.php:553
-#: ../../mod/wallmessage.php:144
-msgid "To:"
-msgstr "À:"
+#: ../../include/nav.php:129
+msgid "Conversations on this site"
+msgstr "Conversations ayant cours sur ce site"
 
-#: ../../mod/message.php:325 ../../mod/message.php:555
-#: ../../mod/wallmessage.php:145
-msgid "Subject:"
-msgstr "Sujet:"
+#: ../../include/nav.php:131
+msgid "Conversations on the network"
+msgstr ""
 
-#: ../../mod/message.php:329 ../../mod/message.php:558
-#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Votre message:"
+#: ../../include/nav.php:133
+msgid "Directory"
+msgstr "Annuaire"
 
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../mod/wallmessage.php:154 ../../mod/editpost.php:110
-#: ../../include/conversation.php:1091
-msgid "Upload photo"
-msgstr "Joindre photo"
+#: ../../include/nav.php:133
+msgid "People directory"
+msgstr "Annuaire des utilisateurs"
 
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../mod/wallmessage.php:155 ../../mod/editpost.php:114
-#: ../../include/conversation.php:1095
-msgid "Insert web link"
-msgstr "Insérer lien web"
+#: ../../include/nav.php:135
+msgid "Information"
+msgstr "Information"
 
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/editpost.php:124
-#: ../../mod/photos.php:1545 ../../object/Item.php:364
-#: ../../include/conversation.php:692 ../../include/conversation.php:1109
-msgid "Please wait"
-msgstr "Patientez"
+#: ../../include/nav.php:135
+msgid "Information about this friendica instance"
+msgstr "Information au sujet de cette instance de friendica"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Aucun message."
+#: ../../include/nav.php:145 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Réseau"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Émetteur inconnu - %s"
+#: ../../include/nav.php:145
+msgid "Conversations from your friends"
+msgstr "Conversations de vos amis"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Vous et %s"
+#: ../../include/nav.php:146
+msgid "Network Reset"
+msgstr "Réinitialiser le réseau"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s et vous"
+#: ../../include/nav.php:146
+msgid "Load Network page with no filters"
+msgstr "Chargement des pages du réseau sans filtre"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Effacer conversation"
+#: ../../include/nav.php:154 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Introductions"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../include/nav.php:154
+msgid "Friend Requests"
+msgstr "Demande d'amitié"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d message"
-msgstr[1] "%d messages"
+#: ../../include/nav.php:155 ../../mod/notifications.php:224
+msgid "Notifications"
+msgstr "Notifications"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Message indisponible."
+#: ../../include/nav.php:156
+msgid "See all notifications"
+msgstr "Voir toute notification"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Effacer message"
+#: ../../include/nav.php:157
+msgid "Mark all system notifications seen"
+msgstr "Marquer toutes les notifications système comme 'vues'"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
+#: ../../include/nav.php:161 ../../mod/message.php:182
+msgid "Messages"
+msgstr "Messages"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Répondre"
+#: ../../include/nav.php:161
+msgid "Private mail"
+msgstr "Messages privés"
 
-#: ../../mod/update_display.php:22 ../../mod/update_community.php:18
-#: ../../mod/update_notes.php:37 ../../mod/update_profile.php:41
-#: ../../mod/update_network.php:25
-msgid "[Embedded content - reload page to view]"
-msgstr "[contenu incorporé - rechargez la page pour le voir]"
+#: ../../include/nav.php:162
+msgid "Inbox"
+msgstr "Messages entrants"
 
-#: ../../mod/crepair.php:106
-msgid "Contact settings applied."
-msgstr "Réglages du contact appliqués."
+#: ../../include/nav.php:163
+msgid "Outbox"
+msgstr "Messages sortants"
 
-#: ../../mod/crepair.php:108
-msgid "Contact update failed."
-msgstr "Impossible d'appliquer les réglages."
+#: ../../include/nav.php:164 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nouveau message"
 
-#: ../../mod/crepair.php:139
-msgid "Repair Contact Settings"
-msgstr "Réglages de réparation des contacts"
+#: ../../include/nav.php:167
+msgid "Manage"
+msgstr "Gérer"
 
-#: ../../mod/crepair.php:141
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
+#: ../../include/nav.php:167
+msgid "Manage other pages"
+msgstr "Gérer les autres pages"
 
-#: ../../mod/crepair.php:142
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "une photo"
+#: ../../include/nav.php:170 ../../mod/settings.php:67
+msgid "Delegations"
+msgstr "Délégations"
 
-#: ../../mod/crepair.php:148
-msgid "Return to contact editor"
-msgstr "Retour à l'éditeur de contact"
+#: ../../include/nav.php:170 ../../mod/delegate.php:130
+msgid "Delegate Page Management"
+msgstr "Déléguer la gestion de la page"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "No mirroring"
-msgstr ""
+#: ../../include/nav.php:172
+msgid "Account settings"
+msgstr "Compte"
 
-#: ../../mod/crepair.php:159
-msgid "Mirror as forwarded posting"
-msgstr ""
+#: ../../include/nav.php:175
+msgid "Manage/Edit Profiles"
+msgstr "Gérer/Éditer les profiles"
 
-#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
-msgid "Mirror as my own posting"
-msgstr ""
+#: ../../include/nav.php:177
+msgid "Manage/edit friends and contacts"
+msgstr "Gérer/éditer les amitiés et contacts"
 
-#: ../../mod/crepair.php:165 ../../mod/admin.php:1003 ../../mod/admin.php:1015
-#: ../../mod/admin.php:1016 ../../mod/admin.php:1029
-#: ../../mod/settings.php:616 ../../mod/settings.php:642
-msgid "Name"
-msgstr "Nom"
-
-#: ../../mod/crepair.php:166
-msgid "Account Nickname"
-msgstr "Pseudo du compte"
-
-#: ../../mod/crepair.php:167
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
+#: ../../include/nav.php:184 ../../mod/admin.php:130
+msgid "Admin"
+msgstr "Admin"
 
-#: ../../mod/crepair.php:168
-msgid "Account URL"
-msgstr "URL du compte"
+#: ../../include/nav.php:184
+msgid "Site setup and configuration"
+msgstr "Démarrage et configuration du site"
 
-#: ../../mod/crepair.php:169
-msgid "Friend Request URL"
-msgstr "Echec du téléversement de l'image."
+#: ../../include/nav.php:188
+msgid "Navigation"
+msgstr "Navigation"
 
-#: ../../mod/crepair.php:170
-msgid "Friend Confirm URL"
-msgstr "Accès public refusé."
+#: ../../include/nav.php:188
+msgid "Site map"
+msgstr "Carte du site"
 
-#: ../../mod/crepair.php:171
-msgid "Notification Endpoint URL"
-msgstr "Aucune photo sélectionnée"
+#: ../../include/plugin.php:455 ../../include/plugin.php:457
+msgid "Click here to upgrade."
+msgstr "Cliquez ici pour mettre à jour."
 
-#: ../../mod/crepair.php:172
-msgid "Poll/Feed URL"
-msgstr "Téléverser des photos"
+#: ../../include/plugin.php:463
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Cette action dépasse les limites définies par votre abonnement."
 
-#: ../../mod/crepair.php:173
-msgid "New photo from this URL"
-msgstr "Nouvelle photo depuis cette URL"
+#: ../../include/plugin.php:468
+msgid "This action is not available under your subscription plan."
+msgstr "Cette action n'est pas disponible avec votre abonnement."
 
-#: ../../mod/crepair.php:174
-msgid "Remote Self"
-msgstr ""
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:507
+msgid "Disallowed profile URL."
+msgstr "URL de profil interdite."
 
-#: ../../mod/crepair.php:176
-msgid "Mirror postings from this contact"
-msgstr ""
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL de connexion manquante."
 
-#: ../../mod/crepair.php:176
+#: ../../include/follow.php:59
 msgid ""
-"Mark this contact as remote_self, this will cause friendica to repost new "
-"entries from this contact."
-msgstr ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
 
-#: ../../mod/bookmarklet.php:12 ../../boot.php:1266 ../../include/nav.php:92
-msgid "Login"
-msgstr "Connexion"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
 
-#: ../../mod/bookmarklet.php:41
-msgid "The post was created"
-msgstr ""
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accès refusé."
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Recherche de personnes"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Aucune URL de navigation ne correspond à cette adresse."
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Aucune correspondance"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
 
-#: ../../mod/fbrowser.php:25 ../../boot.php:2126 ../../include/nav.php:78
-#: ../../view/theme/diabook/theme.php:126
-msgid "Photos"
-msgstr "Photos"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Fichiers"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Contacts qui n’appartiennent à aucun groupe"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
 
-#: ../../mod/admin.php:57
-msgid "Theme settings updated."
-msgstr "Réglages du thème sauvés."
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Impossible de récupérer les informations du contact."
 
-#: ../../mod/admin.php:104 ../../mod/admin.php:619
-msgid "Site"
-msgstr "Site"
+#: ../../include/follow.php:258
+msgid "following"
+msgstr "following"
 
-#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
-msgid "Users"
-msgstr "Utilisateurs"
+#: ../../include/uimport.php:94
+msgid "Error decoding account file"
+msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
 
-#: ../../mod/admin.php:106 ../../mod/admin.php:1102 ../../mod/admin.php:1155
-#: ../../mod/settings.php:57
-msgid "Plugins"
-msgstr "Extensions"
+#: ../../include/uimport.php:100
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
 
-#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
-msgid "Themes"
-msgstr "Thèmes"
+#: ../../include/uimport.php:116 ../../include/uimport.php:127
+msgid "Error! Cannot check nickname"
+msgstr "Erreur! Pseudo invalide"
 
-#: ../../mod/admin.php:108
-msgid "DB updates"
-msgstr "Mise-à-jour de la base"
+#: ../../include/uimport.php:120 ../../include/uimport.php:131
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
 
-#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
-msgid "Logs"
-msgstr "Journaux"
+#: ../../include/uimport.php:153
+msgid "User creation error"
+msgstr "Erreur de création d'utilisateur"
 
-#: ../../mod/admin.php:124
-msgid "probe address"
-msgstr ""
+#: ../../include/uimport.php:171
+msgid "User profile creation error"
+msgstr "Erreur de création du profil utilisateur"
 
-#: ../../mod/admin.php:125
-msgid "check webfinger"
-msgstr ""
+#: ../../include/uimport.php:220
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contacts non importés"
+msgstr[1] "%d contacts non importés"
 
-#: ../../mod/admin.php:130 ../../include/nav.php:184
-msgid "Admin"
-msgstr "Admin"
+#: ../../include/uimport.php:290
+msgid "Done. You can now login with your username and password"
+msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
 
-#: ../../mod/admin.php:131
-msgid "Plugin Features"
-msgstr "Propriétés des extensions"
+#: ../../include/event.php:11 ../../include/bb2diaspora.php:133
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/admin.php:133
-msgid "diagnostics"
-msgstr ""
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:139
+msgid "Starts:"
+msgstr "Débute:"
 
-#: ../../mod/admin.php:134
-msgid "User registrations waiting for confirmation"
-msgstr "Inscriptions en attente de confirmation"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:147
+msgid "Finishes:"
+msgstr "Finit:"
 
-#: ../../mod/admin.php:193 ../../mod/admin.php:952
-msgid "Normal Account"
-msgstr "Compte normal"
+#: ../../include/Contact.php:119
+msgid "stopped following"
+msgstr "retiré de la liste de suivi"
 
-#: ../../mod/admin.php:194 ../../mod/admin.php:953
-msgid "Soapbox Account"
-msgstr "Compte \"boîte à savon\""
+#: ../../include/Contact.php:232 ../../include/conversation.php:881
+msgid "Poke"
+msgstr "Sollicitations (pokes)"
 
-#: ../../mod/admin.php:195 ../../mod/admin.php:954
-msgid "Community/Celebrity Account"
-msgstr "Compte de communauté/célébrité"
+#: ../../include/Contact.php:233 ../../include/conversation.php:875
+msgid "View Status"
+msgstr "Voir les statuts"
 
-#: ../../mod/admin.php:196 ../../mod/admin.php:955
-msgid "Automatic Friend Account"
-msgstr "Compte auto-amical"
+#: ../../include/Contact.php:234 ../../include/conversation.php:876
+msgid "View Profile"
+msgstr "Voir le profil"
 
-#: ../../mod/admin.php:197
-msgid "Blog Account"
-msgstr "Compte de blog"
+#: ../../include/Contact.php:235 ../../include/conversation.php:877
+msgid "View Photos"
+msgstr "Voir les photos"
 
-#: ../../mod/admin.php:198
-msgid "Private Forum"
-msgstr "Forum privé"
+#: ../../include/Contact.php:236 ../../include/Contact.php:259
+#: ../../include/conversation.php:878
+msgid "Network Posts"
+msgstr "Publications du réseau"
 
-#: ../../mod/admin.php:217
-msgid "Message queues"
-msgstr "Files d'attente des messages"
+#: ../../include/Contact.php:237 ../../include/Contact.php:259
+#: ../../include/conversation.php:879
+msgid "Edit Contact"
+msgstr "Éditer le contact"
 
-#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
-#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
-#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
-msgid "Administration"
-msgstr "Administration"
+#: ../../include/Contact.php:238
+msgid "Drop Contact"
+msgstr "Supprimer le contact"
 
-#: ../../mod/admin.php:223
-msgid "Summary"
-msgstr "Résumé"
+#: ../../include/Contact.php:239 ../../include/Contact.php:259
+#: ../../include/conversation.php:880
+msgid "Send PM"
+msgstr "Message privé"
 
-#: ../../mod/admin.php:225
-msgid "Registered users"
-msgstr "Utilisateurs inscrits"
+#: ../../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 "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."
 
-#: ../../mod/admin.php:227
-msgid "Pending registrations"
-msgstr "Inscriptions en attente"
+#: ../../include/dbstructure.php:31
+#, php-format
+msgid ""
+"The error message is\n"
+"[pre]%s[/pre]"
+msgstr "Le message d’erreur est\n[pre]%s[/pre]"
 
-#: ../../mod/admin.php:228
-msgid "Version"
-msgstr "Versio"
+#: ../../include/dbstructure.php:150
+msgid "Errors encountered creating database tables."
+msgstr "Des erreurs ont été signalées lors de la création des tables."
 
-#: ../../mod/admin.php:232
-msgid "Active plugins"
-msgstr "Extensions activés"
+#: ../../include/dbstructure.php:208
+msgid "Errors encountered performing database changes."
+msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données."
 
-#: ../../mod/admin.php:255
-msgid "Can not parse base url. Must have at least <scheme>://<domain>"
-msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Divers"
 
-#: ../../mod/admin.php:516
-msgid "Site settings updated."
-msgstr "Réglages du site mis-à-jour."
+#: ../../include/datetime.php:153 ../../include/datetime.php:290
+msgid "year"
+msgstr "an"
 
-#: ../../mod/admin.php:545 ../../mod/settings.php:828
-msgid "No special theme for mobile devices"
-msgstr "Pas de thème particulier pour les terminaux mobiles"
+#: ../../include/datetime.php:158 ../../include/datetime.php:291
+msgid "month"
+msgstr "mois"
 
-#: ../../mod/admin.php:562
-msgid "No community page"
-msgstr ""
+#: ../../include/datetime.php:163 ../../include/datetime.php:293
+msgid "day"
+msgstr "jour"
 
-#: ../../mod/admin.php:563
-msgid "Public postings from users of this site"
-msgstr ""
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "jamais"
 
-#: ../../mod/admin.php:564
-msgid "Global community page"
-msgstr ""
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "il y a moins d'une seconde"
 
-#: ../../mod/admin.php:570
-msgid "At post arrival"
-msgstr "A l'arrivé d'une publication"
+#: ../../include/datetime.php:290
+msgid "years"
+msgstr "ans"
 
-#: ../../mod/admin.php:571 ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Fréquemment"
+#: ../../include/datetime.php:291
+msgid "months"
+msgstr "mois"
 
-#: ../../mod/admin.php:572 ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Toutes les heures"
+#: ../../include/datetime.php:292
+msgid "week"
+msgstr "semaine"
 
-#: ../../mod/admin.php:573 ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Deux fois par jour"
+#: ../../include/datetime.php:292
+msgid "weeks"
+msgstr "semaines"
 
-#: ../../mod/admin.php:574 ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Chaque jour"
+#: ../../include/datetime.php:293
+msgid "days"
+msgstr "jours"
 
-#: ../../mod/admin.php:579
-msgid "Multi user instance"
-msgstr "Instance multi-utilisateurs"
+#: ../../include/datetime.php:294
+msgid "hour"
+msgstr "heure"
 
-#: ../../mod/admin.php:602
-msgid "Closed"
-msgstr "Fermé"
+#: ../../include/datetime.php:294
+msgid "hours"
+msgstr "heures"
 
-#: ../../mod/admin.php:603
-msgid "Requires approval"
-msgstr "Demande une apptrobation"
+#: ../../include/datetime.php:295
+msgid "minute"
+msgstr "minute"
 
-#: ../../mod/admin.php:604
-msgid "Open"
-msgstr "Ouvert"
+#: ../../include/datetime.php:295
+msgid "minutes"
+msgstr "minutes"
 
-#: ../../mod/admin.php:608
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
+#: ../../include/datetime.php:296
+msgid "second"
+msgstr "seconde"
 
-#: ../../mod/admin.php:609
-msgid "Force all links to use SSL"
-msgstr "Forcer tous les liens à utiliser SSL"
+#: ../../include/datetime.php:296
+msgid "seconds"
+msgstr "secondes"
 
-#: ../../mod/admin.php:610
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
+#: ../../include/datetime.php:305
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s auparavant"
 
-#: ../../mod/admin.php:620 ../../mod/admin.php:1156 ../../mod/admin.php:1358
-#: ../../mod/admin.php:1445 ../../mod/settings.php:614
-#: ../../mod/settings.php:724 ../../mod/settings.php:798
-#: ../../mod/settings.php:880 ../../mod/settings.php:1113
-msgid "Save Settings"
-msgstr "Sauvegarder les paramétres"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[pas de sujet]"
 
-#: ../../mod/admin.php:621 ../../mod/register.php:255
-msgid "Registration"
-msgstr "Inscription"
+#: ../../include/delivery.php:456 ../../include/notifier.php:786
+msgid "(no subject)"
+msgstr "(sans titre)"
 
-#: ../../mod/admin.php:622
-msgid "File upload"
-msgstr "Téléversement de fichier"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Inconnu | Non-classé"
 
-#: ../../mod/admin.php:623
-msgid "Policies"
-msgstr "Politiques"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Bloquer immédiatement"
 
-#: ../../mod/admin.php:624
-msgid "Advanced"
-msgstr "Avancé"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Douteux, spammeur, accro à l'auto-promotion"
 
-#: ../../mod/admin.php:625
-msgid "Performance"
-msgstr "Performance"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Connu de moi, mais sans opinion"
 
-#: ../../mod/admin.php:626
-msgid ""
-"Relocate - WARNING: advanced function. Could make this server unreachable."
-msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, probablement inoffensif"
 
-#: ../../mod/admin.php:629
-msgid "Site name"
-msgstr "Nom du site"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Réputé, a toute ma confiance"
 
-#: ../../mod/admin.php:630
-msgid "Host name"
-msgstr "Nom de la machine hôte"
+#: ../../include/contact_selectors.php:56 ../../mod/admin.php:571
+msgid "Frequently"
+msgstr "Fréquemment"
 
-#: ../../mod/admin.php:631
-msgid "Sender Email"
-msgstr ""
+#: ../../include/contact_selectors.php:57 ../../mod/admin.php:572
+msgid "Hourly"
+msgstr "Toutes les heures"
 
-#: ../../mod/admin.php:632
-msgid "Banner/Logo"
-msgstr "Bannière/Logo"
+#: ../../include/contact_selectors.php:58 ../../mod/admin.php:573
+msgid "Twice daily"
+msgstr "Deux fois par jour"
 
-#: ../../mod/admin.php:633
-msgid "Shortcut icon"
-msgstr ""
+#: ../../include/contact_selectors.php:59 ../../mod/admin.php:574
+msgid "Daily"
+msgstr "Chaque jour"
 
-#: ../../mod/admin.php:634
-msgid "Touch icon"
-msgstr ""
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Chaque semaine"
 
-#: ../../mod/admin.php:635
-msgid "Additional Info"
-msgstr "Informations supplémentaires"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Chaque mois"
 
-#: ../../mod/admin.php:635
-msgid ""
-"For public servers: you can add additional information here that will be "
-"listed at dir.friendica.com/siteinfo."
-msgstr "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo."
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:836
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:636
-msgid "System language"
-msgstr "Langue du système"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/admin.php:637
-msgid "System theme"
-msgstr "Thème du système"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/admin.php:637
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:1003
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016 ../../mod/admin.php:1031
+msgid "Email"
+msgstr "Courriel"
 
-#: ../../mod/admin.php:638
-msgid "Mobile system theme"
-msgstr "Thème mobile"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:741
+#: ../../mod/dfrn_request.php:838
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:638
-msgid "Theme for mobile devices"
-msgstr "Thème pour les terminaux mobiles"
+#: ../../include/contact_selectors.php:81 ../../mod/newmember.php:49
+#: ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/admin.php:639
-msgid "SSL link policy"
-msgstr "Politique SSL pour les liens"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/admin.php:639
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/admin.php:640
-msgid "Force SSL"
-msgstr "SSL obligatoire"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/admin.php:640
-msgid ""
-"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
-" to endless loops."
-msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies."
-
-#: ../../mod/admin.php:641
-msgid "Old style 'Share'"
-msgstr "Anciens style 'Partage'"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/admin.php:641
-msgid "Deactivates the bbcode element 'share' for repeating items."
-msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles."
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:642
-msgid "Hide help entry from navigation menu"
-msgstr "Cacher l'aide du menu de navigation"
+#: ../../include/contact_selectors.php:88
+msgid "pump.io"
+msgstr "pump.io"
 
-#: ../../mod/admin.php:642
-msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
-msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
+#: ../../include/contact_selectors.php:89
+msgid "Twitter"
+msgstr "Twitter"
 
-#: ../../mod/admin.php:643
-msgid "Single user instance"
-msgstr "Instance mono-utilisateur"
+#: ../../include/contact_selectors.php:90
+msgid "Diaspora Connector"
+msgstr "Connecteur Diaspora"
 
-#: ../../mod/admin.php:643
-msgid "Make this instance multi-user or single-user for the named user"
-msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."
+#: ../../include/contact_selectors.php:91
+msgid "Statusnet"
+msgstr "Statusnet"
 
-#: ../../mod/admin.php:644
-msgid "Maximum image size"
-msgstr "Taille maximale des images"
+#: ../../include/contact_selectors.php:92
+msgid "App.net"
+msgstr "App.net"
 
-#: ../../mod/admin.php:644
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:486
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s est désormais lié à %2$s"
 
-#: ../../mod/admin.php:645
-msgid "Maximum image length"
-msgstr "Longueur maximale des images"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Notification de partage du réseau Diaspora"
 
-#: ../../mod/admin.php:645
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."
+#: ../../include/diaspora.php:2444
+msgid "Attachments:"
+msgstr "Pièces jointes : "
 
-#: ../../mod/admin.php:646
-msgid "JPEG image quality"
-msgstr "Qualité JPEG des images"
+#: ../../include/conversation.php:140 ../../mod/like.php:168
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s n'aime pas %3$s de %2$s"
 
-#: ../../mod/admin.php:646
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
+#: ../../include/conversation.php:206
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s a sollicité %2$s"
 
-#: ../../mod/admin.php:648
-msgid "Register policy"
-msgstr "Politique d'inscription"
+#: ../../include/conversation.php:226 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s est d'humeur %2$s"
 
-#: ../../mod/admin.php:649
-msgid "Maximum Daily Registrations"
-msgstr "Inscriptions maximum par jour"
+#: ../../include/conversation.php:265 ../../mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s a étiqueté %3$s de %2$s avec %4$s"
 
-#: ../../mod/admin.php:649
-msgid ""
-"If registration is permitted above, this sets the maximum number of new user"
-" registrations to accept per day.  If register is set to closed, this "
-"setting has no effect."
-msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
+#: ../../include/conversation.php:290
+msgid "post/item"
+msgstr "publication/élément"
 
-#: ../../mod/admin.php:650
-msgid "Register text"
-msgstr "Texte d'inscription"
+#: ../../include/conversation.php:291
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s a marqué le %3$s de %2$s comme favori"
 
-#: ../../mod/admin.php:650
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sera affiché de manière bien visible sur la page d'accueil."
+#: ../../include/conversation.php:612 ../../object/Item.php:129
+#: ../../mod/photos.php:1653 ../../mod/content.php:437
+#: ../../mod/content.php:740
+msgid "Select"
+msgstr "Sélectionner"
 
-#: ../../mod/admin.php:651
-msgid "Accounts abandoned after x days"
-msgstr "Les comptes sont abandonnés après x jours"
+#: ../../include/conversation.php:613 ../../object/Item.php:130
+#: ../../mod/group.php:171 ../../mod/settings.php:682
+#: ../../mod/contacts.php:733 ../../mod/admin.php:1007
+#: ../../mod/photos.php:1654 ../../mod/content.php:438
+#: ../../mod/content.php:741
+msgid "Delete"
+msgstr "Supprimer"
 
-#: ../../mod/admin.php:651
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
+#: ../../include/conversation.php:653 ../../object/Item.php:326
+#: ../../object/Item.php:327 ../../mod/content.php:471
+#: ../../mod/content.php:852 ../../mod/content.php:853
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
 
-#: ../../mod/admin.php:652
-msgid "Allowed friend domains"
-msgstr "Domaines autorisés"
+#: ../../include/conversation.php:665 ../../object/Item.php:316
+msgid "Categories:"
+msgstr "Catégories:"
 
-#: ../../mod/admin.php:652
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
+#: ../../include/conversation.php:666 ../../object/Item.php:317
+msgid "Filed under:"
+msgstr "Rangé sous:"
 
-#: ../../mod/admin.php:653
-msgid "Allowed email domains"
-msgstr "Domaines courriel autorisés"
+#: ../../include/conversation.php:673 ../../object/Item.php:340
+#: ../../mod/content.php:481 ../../mod/content.php:864
+#, php-format
+msgid "%s from %s"
+msgstr "%s de %s"
 
-#: ../../mod/admin.php:653
-msgid ""
-"Comma separated list of domains which are allowed in email addresses for "
-"registrations to this site. Wildcards are accepted. Empty to allow any "
-"domains"
-msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
+#: ../../include/conversation.php:689 ../../mod/content.php:497
+msgid "View in context"
+msgstr "Voir dans le contexte"
 
-#: ../../mod/admin.php:654
-msgid "Block public"
-msgstr "Interdire la publication globale"
+#: ../../include/conversation.php:691 ../../include/conversation.php:1108
+#: ../../object/Item.php:364 ../../mod/wallmessage.php:156
+#: ../../mod/editpost.php:124 ../../mod/photos.php:1545
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/content.php:499 ../../mod/content.php:883
+msgid "Please wait"
+msgstr "Patientez"
 
-#: ../../mod/admin.php:654
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
+#: ../../include/conversation.php:771
+msgid "remove"
+msgstr "enlever"
 
-#: ../../mod/admin.php:655
-msgid "Force publish"
-msgstr "Forcer la publication globale"
+#: ../../include/conversation.php:775
+msgid "Delete Selected Items"
+msgstr "Supprimer les éléments sélectionnés"
 
-#: ../../mod/admin.php:655
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
+#: ../../include/conversation.php:874
+msgid "Follow Thread"
+msgstr "Suivre le fil"
 
-#: ../../mod/admin.php:656
-msgid "Global directory update URL"
-msgstr "URL de mise-à-jour de l'annuaire global"
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s likes this."
+msgstr "%s aime ça."
 
-#: ../../mod/admin.php:656
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."
+#: ../../include/conversation.php:943
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s n'aime pas ça."
 
-#: ../../mod/admin.php:657
-msgid "Allow threaded items"
-msgstr "autoriser le suivi des éléments par fil conducteur"
+#: ../../include/conversation.php:948
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d personnes</span> aiment ça"
 
-#: ../../mod/admin.php:657
-msgid "Allow infinite level threading for items on this site."
-msgstr "Permettre une imbrication infinie des commentaires."
+#: ../../include/conversation.php:951
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
 
-#: ../../mod/admin.php:658
-msgid "Private posts by default for new users"
-msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
+#: ../../include/conversation.php:965
+msgid "and"
+msgstr "et"
 
-#: ../../mod/admin.php:658
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
+#: ../../include/conversation.php:971
+#, php-format
+msgid ", and %d other people"
+msgstr ", et %d autres personnes"
 
-#: ../../mod/admin.php:659
-msgid "Don't include post content in email notifications"
-msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s like this."
+msgstr "%s aiment ça."
 
-#: ../../mod/admin.php:659
-msgid ""
-"Don't include the content of a post/comment/private message/etc. in the "
-"email notifications that are sent out from this site, as a privacy measure."
-msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
+#: ../../include/conversation.php:973
+#, php-format
+msgid "%s don't like this."
+msgstr "%s n'aiment pas ça."
 
-#: ../../mod/admin.php:660
-msgid "Disallow public access to addons listed in the apps menu."
-msgstr "Interdire l’accès public pour les greffons listées dans le menu apps."
+#: ../../include/conversation.php:1000 ../../include/conversation.php:1018
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visible par <strong>tout le monde</strong>"
 
-#: ../../mod/admin.php:660
-msgid ""
-"Checking this box will restrict addons listed in the apps menu to members "
-"only."
-msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres."
+#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+msgid "Please enter a link URL:"
+msgstr "Entrez un lien web:"
 
-#: ../../mod/admin.php:661
-msgid "Don't embed private images in posts"
-msgstr "Ne pas miniaturiser les images privées dans les publications"
+#: ../../include/conversation.php:1002 ../../include/conversation.php:1020
+msgid "Please enter a video link/URL:"
+msgstr "Entrez un lien/URL video :"
 
-#: ../../mod/admin.php:661
-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 "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps."
+#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
+msgid "Please enter an audio link/URL:"
+msgstr "Entrez un lien/URL audio :"
 
-#: ../../mod/admin.php:662
-msgid "Allow Users to set remote_self"
-msgstr "Autoriser les utilisateurs à définir remote_self"
+#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
+msgid "Tag term:"
+msgstr "Terme d'étiquette:"
 
-#: ../../mod/admin.php:662
-msgid ""
-"With checking this, every user is allowed to mark every contact as a "
-"remote_self in the repair contact dialog. Setting this flag on a contact "
-"causes mirroring every posting of that contact in the users stream."
-msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs."
+#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Sauver dans le Dossier:"
 
-#: ../../mod/admin.php:663
-msgid "Block multiple registrations"
-msgstr "Interdire les inscriptions multiples"
+#: ../../include/conversation.php:1006 ../../include/conversation.php:1024
+msgid "Where are you right now?"
+msgstr "Où êtes-vous présentemment?"
 
-#: ../../mod/admin.php:663
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
+#: ../../include/conversation.php:1007
+msgid "Delete item(s)?"
+msgstr "Supprimer les élément(s) ?"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support"
-msgstr "Support OpenID"
+#: ../../include/conversation.php:1050
+msgid "Post to Email"
+msgstr "Publier aux courriels"
 
-#: ../../mod/admin.php:664
-msgid "OpenID support for registration and logins."
-msgstr "Supporter OpenID pour les inscriptions et connexions."
+#: ../../include/conversation.php:1055
+#, php-format
+msgid "Connectors disabled, since \"%s\" is enabled."
+msgstr ""
 
-#: ../../mod/admin.php:665
-msgid "Fullname check"
-msgstr "Vérification du \"Prénom Nom\""
+#: ../../include/conversation.php:1056 ../../mod/settings.php:1033
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Cacher les détails du profil aux visiteurs inconnus?"
 
-#: ../../mod/admin.php:665
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"
+#: ../../include/conversation.php:1089 ../../mod/photos.php:1544
+msgid "Share"
+msgstr "Partager"
 
-#: ../../mod/admin.php:666
-msgid "UTF-8 Regular expressions"
-msgstr "Regex UTF-8"
+#: ../../include/conversation.php:1090 ../../mod/wallmessage.php:154
+#: ../../mod/editpost.php:110 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Joindre photo"
 
-#: ../../mod/admin.php:666
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
+#: ../../include/conversation.php:1091 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "envoi image"
 
-#: ../../mod/admin.php:667
-msgid "Community Page Style"
-msgstr ""
+#: ../../include/conversation.php:1092 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Joindre fichier"
 
-#: ../../mod/admin.php:667
-msgid ""
-"Type of community page to show. 'Global community' shows every public "
-"posting from an open distributed network that arrived on this server."
-msgstr ""
+#: ../../include/conversation.php:1093 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "ajout fichier"
 
-#: ../../mod/admin.php:668
-msgid "Posts per user on community page"
-msgstr ""
+#: ../../include/conversation.php:1094 ../../mod/wallmessage.php:155
+#: ../../mod/editpost.php:114 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "Insérer lien web"
 
-#: ../../mod/admin.php:668
-msgid ""
-"The maximum number of posts per user on the community page. (Not valid for "
-"'Global Community')"
-msgstr ""
+#: ../../include/conversation.php:1095 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "lien web"
 
-#: ../../mod/admin.php:669
-msgid "Enable OStatus support"
-msgstr "Activer le support d'OStatus"
+#: ../../include/conversation.php:1096 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Insérer un lien video"
 
-#: ../../mod/admin.php:669
-msgid ""
-"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."
+#: ../../include/conversation.php:1097 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "lien vidéo"
 
-#: ../../mod/admin.php:670
-msgid "OStatus conversation completion interval"
-msgstr "Achèvement de l'intervalle de conversation OStatus "
+#: ../../include/conversation.php:1098 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Insérer un lien audio"
 
-#: ../../mod/admin.php:670
-msgid ""
-"How often shall the poller check for new entries in OStatus conversations? "
-"This can be a very ressource task."
-msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."
+#: ../../include/conversation.php:1099 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "lien audio"
 
-#: ../../mod/admin.php:671
-msgid "Enable Diaspora support"
-msgstr "Activer le support de Diaspora"
+#: ../../include/conversation.php:1100 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Définir votre localisation"
 
-#: ../../mod/admin.php:671
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fournir une compatibilité Diaspora intégrée."
+#: ../../include/conversation.php:1101 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "spéc. localisation"
 
-#: ../../mod/admin.php:672
-msgid "Only allow Friendica contacts"
-msgstr "N'autoriser que les contacts Friendica"
+#: ../../include/conversation.php:1102 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Effacer la localisation du navigateur"
 
-#: ../../mod/admin.php:672
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
+#: ../../include/conversation.php:1103 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "supp. localisation"
 
-#: ../../mod/admin.php:673
-msgid "Verify SSL"
-msgstr "Vérifier SSL"
+#: ../../include/conversation.php:1105 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Définir un titre"
 
-#: ../../mod/admin.php:673
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
-msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
+#: ../../include/conversation.php:1107 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "Catégories (séparées par des virgules)"
 
-#: ../../mod/admin.php:674
-msgid "Proxy user"
-msgstr "Utilisateur du proxy"
+#: ../../include/conversation.php:1109 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Réglages des permissions"
 
-#: ../../mod/admin.php:675
-msgid "Proxy URL"
-msgstr "URL du proxy"
+#: ../../include/conversation.php:1110
+msgid "permissions"
+msgstr "permissions"
 
-#: ../../mod/admin.php:676
-msgid "Network timeout"
-msgstr "Dépassement du délai d'attente du réseau"
+#: ../../include/conversation.php:1118 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "CC: adresses de courriel"
 
-#: ../../mod/admin.php:676
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
+#: ../../include/conversation.php:1119 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Publication publique"
 
-#: ../../mod/admin.php:677
-msgid "Delivery interval"
-msgstr "Intervalle de transmission"
+#: ../../include/conversation.php:1121 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Exemple: bob@exemple.com, mary@exemple.com"
 
-#: ../../mod/admin.php:677
-msgid ""
-"Delay background delivery processes by this many seconds to reduce system "
-"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
-"for large dedicated servers."
-msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."
+#: ../../include/conversation.php:1125 ../../object/Item.php:687
+#: ../../mod/editpost.php:145 ../../mod/photos.php:1566
+#: ../../mod/photos.php:1610 ../../mod/photos.php:1698
+#: ../../mod/content.php:719
+msgid "Preview"
+msgstr "Aperçu"
 
-#: ../../mod/admin.php:678
-msgid "Poll interval"
-msgstr "Intervalle de réception"
+#: ../../include/conversation.php:1134
+msgid "Post to Groups"
+msgstr "Publier aux groupes"
 
-#: ../../mod/admin.php:678
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."
+#: ../../include/conversation.php:1135
+msgid "Post to Contacts"
+msgstr "Publier aux contacts"
 
-#: ../../mod/admin.php:679
-msgid "Maximum Load Average"
-msgstr "Plafond de la charge moyenne"
+#: ../../include/conversation.php:1136
+msgid "Private post"
+msgstr "Message privé"
 
-#: ../../mod/admin.php:679
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
+#: ../../include/text.php:297
+msgid "newer"
+msgstr "Plus récent"
 
-#: ../../mod/admin.php:681
-msgid "Use MySQL full text engine"
-msgstr "Utiliser le moteur de recherche plein texte de MySQL"
+#: ../../include/text.php:299
+msgid "older"
+msgstr "Plus ancien"
 
-#: ../../mod/admin.php:681
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."
+#: ../../include/text.php:304
+msgid "prev"
+msgstr "précédent"
 
-#: ../../mod/admin.php:682
-msgid "Suppress Language"
-msgstr "Supprimer un langage"
+#: ../../include/text.php:306
+msgid "first"
+msgstr "premier"
 
-#: ../../mod/admin.php:682
-msgid "Suppress language information in meta information about a posting."
-msgstr "Supprimer les informations de langue dans les métadonnées des publications."
+#: ../../include/text.php:338
+msgid "last"
+msgstr "dernier"
 
-#: ../../mod/admin.php:683
-msgid "Suppress Tags"
-msgstr ""
+#: ../../include/text.php:341
+msgid "next"
+msgstr "suivant"
 
-#: ../../mod/admin.php:683
-msgid "Suppress showing a list of hashtags at the end of the posting."
+#: ../../include/text.php:396
+msgid "Loading more entries..."
 msgstr ""
 
-#: ../../mod/admin.php:684
-msgid "Path to item cache"
-msgstr "Chemin vers le cache des objets."
+#: ../../include/text.php:397
+msgid "The end"
+msgstr ""
 
-#: ../../mod/admin.php:685
-msgid "Cache duration in seconds"
-msgstr "Durée du cache en secondes"
+#: ../../include/text.php:870
+msgid "No contacts"
+msgstr "Aucun contact"
 
-#: ../../mod/admin.php:685
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day). To disable the item cache, set the value to -1."
-msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
-
-#: ../../mod/admin.php:686
-msgid "Maximum numbers of comments per post"
-msgstr "Nombre maximum de commentaires par publication"
+#: ../../include/text.php:879
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contact"
+msgstr[1] "%d contacts"
 
-#: ../../mod/admin.php:686
-msgid "How much comments should be shown for each post? Default value is 100."
-msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
+#: ../../include/text.php:891 ../../mod/viewcontacts.php:78
+msgid "View Contacts"
+msgstr "Voir les contacts"
 
-#: ../../mod/admin.php:687
-msgid "Path for lock file"
-msgstr "Chemin vers le ficher de verrouillage"
+#: ../../include/text.php:971 ../../mod/editpost.php:109
+#: ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Sauver"
 
-#: ../../mod/admin.php:688
-msgid "Temp path"
-msgstr "Chemin des fichiers temporaires"
+#: ../../include/text.php:1020
+msgid "poke"
+msgstr "titiller"
 
-#: ../../mod/admin.php:689
-msgid "Base path to installation"
-msgstr "Chemin de base de l'installation"
+#: ../../include/text.php:1020
+msgid "poked"
+msgstr "a titillé"
 
-#: ../../mod/admin.php:690
-msgid "Disable picture proxy"
-msgstr "Désactiver le proxy image "
+#: ../../include/text.php:1021
+msgid "ping"
+msgstr "attirer l'attention"
 
-#: ../../mod/admin.php:690
-msgid ""
-"The picture proxy increases performance and privacy. It shouldn't be used on"
-" systems with very low bandwith."
-msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."
+#: ../../include/text.php:1021
+msgid "pinged"
+msgstr "a attiré l'attention de"
 
-#: ../../mod/admin.php:691
-msgid "Enable old style pager"
-msgstr ""
+#: ../../include/text.php:1022
+msgid "prod"
+msgstr "aiguillonner"
 
-#: ../../mod/admin.php:691
-msgid ""
-"The old style pager has page numbers but slows down massively the page "
-"speed."
-msgstr ""
+#: ../../include/text.php:1022
+msgid "prodded"
+msgstr "a aiguillonné"
 
-#: ../../mod/admin.php:692
-msgid "Only search in tags"
-msgstr ""
+#: ../../include/text.php:1023
+msgid "slap"
+msgstr "gifler"
 
-#: ../../mod/admin.php:692
-msgid "On large systems the text search can slow down the system extremely."
-msgstr ""
+#: ../../include/text.php:1023
+msgid "slapped"
+msgstr "a giflé"
 
-#: ../../mod/admin.php:694
-msgid "New base url"
-msgstr "Nouvelle URL de base"
+#: ../../include/text.php:1024
+msgid "finger"
+msgstr "tripoter"
 
-#: ../../mod/admin.php:711
-msgid "Update has been marked successful"
-msgstr "Mise-à-jour validée comme 'réussie'"
+#: ../../include/text.php:1024
+msgid "fingered"
+msgstr "a tripoté"
 
-#: ../../mod/admin.php:719
-#, php-format
-msgid "Database structure update %s was successfully applied."
-msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
+#: ../../include/text.php:1025
+msgid "rebuff"
+msgstr "rabrouer"
 
-#: ../../mod/admin.php:722
-#, php-format
-msgid "Executing of database structure update %s failed with error: %s"
-msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
+#: ../../include/text.php:1025
+msgid "rebuffed"
+msgstr "a rabroué"
 
-#: ../../mod/admin.php:734
-#, php-format
-msgid "Executing %s failed with error: %s"
-msgstr "L'exécution %s a échoué avec l'erreur: %s"
+#: ../../include/text.php:1039
+msgid "happy"
+msgstr "heureuse"
 
-#: ../../mod/admin.php:737
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Mise-à-jour %s appliquée avec succès."
+#: ../../include/text.php:1040
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/admin.php:741
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
+#: ../../include/text.php:1041
+msgid "mellow"
+msgstr "suave"
 
-#: ../../mod/admin.php:743
-#, php-format
-msgid "There was no additional update function %s that needed to be called."
-msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
+#: ../../include/text.php:1042
+msgid "tired"
+msgstr "fatiguée"
 
-#: ../../mod/admin.php:762
-msgid "No failed updates."
-msgstr "Pas de mises-à-jour échouées."
+#: ../../include/text.php:1043
+msgid "perky"
+msgstr "guillerette"
 
-#: ../../mod/admin.php:763
-msgid "Check database structure"
-msgstr "Vérifier la structure de la base de données"
+#: ../../include/text.php:1044
+msgid "angry"
+msgstr "colérique"
 
-#: ../../mod/admin.php:768
-msgid "Failed Updates"
-msgstr "Mises-à-jour échouées"
+#: ../../include/text.php:1045
+msgid "stupified"
+msgstr "stupéfaite"
 
-#: ../../mod/admin.php:769
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
+#: ../../include/text.php:1046
+msgid "puzzled"
+msgstr "perplexe"
 
-#: ../../mod/admin.php:770
-msgid "Mark success (if update was manually applied)"
-msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
+#: ../../include/text.php:1047
+msgid "interested"
+msgstr "intéressée"
 
-#: ../../mod/admin.php:771
-msgid "Attempt to execute this update step automatically"
-msgstr "Tenter d'éxecuter cette étape automatiquement"
+#: ../../include/text.php:1048
+msgid "bitter"
+msgstr "amère"
 
-#: ../../mod/admin.php:803
-#, 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\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte."
+#: ../../include/text.php:1049
+msgid "cheerful"
+msgstr "entraînante"
 
-#: ../../mod/admin.php:806
-#, 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\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s."
+#: ../../include/text.php:1050
+msgid "alive"
+msgstr "vivante"
 
-#: ../../mod/admin.php:838 ../../include/user.php:413
-#, php-format
-msgid "Registration details for %s"
-msgstr "Détails d'inscription pour %s"
+#: ../../include/text.php:1051
+msgid "annoyed"
+msgstr "ennuyée"
 
-#: ../../mod/admin.php:850
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utilisateur a (dé)bloqué"
-msgstr[1] "%s utilisateurs ont (dé)bloqué"
+#: ../../include/text.php:1052
+msgid "anxious"
+msgstr "anxieuse"
 
-#: ../../mod/admin.php:857
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utilisateur supprimé"
-msgstr[1] "%s utilisateurs supprimés"
+#: ../../include/text.php:1053
+msgid "cranky"
+msgstr "excentrique"
 
-#: ../../mod/admin.php:896
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utilisateur '%s' supprimé"
+#: ../../include/text.php:1054
+msgid "disturbed"
+msgstr "dérangée"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utilisateur '%s' débloqué"
+#: ../../include/text.php:1055
+msgid "frustrated"
+msgstr "frustrée"
 
-#: ../../mod/admin.php:904
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utilisateur '%s' bloqué"
+#: ../../include/text.php:1056
+msgid "motivated"
+msgstr "motivée"
 
-#: ../../mod/admin.php:999
-msgid "Add User"
-msgstr "Ajouter l'utilisateur"
+#: ../../include/text.php:1057
+msgid "relaxed"
+msgstr "détendue"
 
-#: ../../mod/admin.php:1000
-msgid "select all"
-msgstr "tout sélectionner"
+#: ../../include/text.php:1058
+msgid "surprised"
+msgstr "surprise"
 
-#: ../../mod/admin.php:1001
-msgid "User registrations waiting for confirm"
-msgstr "Inscriptions d'utilisateurs en attente de confirmation"
+#: ../../include/text.php:1228
+msgid "Monday"
+msgstr "Lundi"
 
-#: ../../mod/admin.php:1002
-msgid "User waiting for permanent deletion"
-msgstr "Utilisateur en attente de suppression définitive"
+#: ../../include/text.php:1228
+msgid "Tuesday"
+msgstr "Mardi"
 
-#: ../../mod/admin.php:1003
-msgid "Request date"
-msgstr "Date de la demande"
+#: ../../include/text.php:1228
+msgid "Wednesday"
+msgstr "Mercredi"
 
-#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
-#: ../../mod/admin.php:1031 ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "Courriel"
-
-#: ../../mod/admin.php:1004
-msgid "No registrations."
-msgstr "Pas d'inscriptions."
+#: ../../include/text.php:1228
+msgid "Thursday"
+msgstr "Jeudi"
 
-#: ../../mod/admin.php:1006
-msgid "Deny"
-msgstr "Rejetter"
+#: ../../include/text.php:1228
+msgid "Friday"
+msgstr "Vendredi"
 
-#: ../../mod/admin.php:1010
-msgid "Site admin"
-msgstr "Administration du Site"
+#: ../../include/text.php:1228
+msgid "Saturday"
+msgstr "Samedi"
 
-#: ../../mod/admin.php:1011
-msgid "Account expired"
-msgstr "Compte expiré"
+#: ../../include/text.php:1228
+msgid "Sunday"
+msgstr "Dimanche"
 
-#: ../../mod/admin.php:1014
-msgid "New User"
-msgstr "Nouvel utilisateur"
+#: ../../include/text.php:1232
+msgid "January"
+msgstr "Janvier"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Register date"
-msgstr "Date d'inscription"
+#: ../../include/text.php:1232
+msgid "February"
+msgstr "Février"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last login"
-msgstr "Dernière connexion"
+#: ../../include/text.php:1232
+msgid "March"
+msgstr "Mars"
 
-#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
-msgid "Last item"
-msgstr "Dernier élément"
+#: ../../include/text.php:1232
+msgid "April"
+msgstr "Avril"
 
-#: ../../mod/admin.php:1015
-msgid "Deleted since"
-msgstr "Supprimé depuis"
+#: ../../include/text.php:1232
+msgid "May"
+msgstr "Mai"
 
-#: ../../mod/admin.php:1016 ../../mod/settings.php:36
-msgid "Account"
-msgstr "Compte"
+#: ../../include/text.php:1232
+msgid "June"
+msgstr "Juin"
 
-#: ../../mod/admin.php:1018
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
+#: ../../include/text.php:1232
+msgid "July"
+msgstr "Juillet"
 
-#: ../../mod/admin.php:1019
-msgid ""
-"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
-"site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
+#: ../../include/text.php:1232
+msgid "August"
+msgstr "Août"
 
-#: ../../mod/admin.php:1029
-msgid "Name of the new user."
-msgstr "Nom du nouvel utilisateur."
+#: ../../include/text.php:1232
+msgid "September"
+msgstr "Septembre"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname"
-msgstr "Pseudo"
+#: ../../include/text.php:1232
+msgid "October"
+msgstr "Octobre"
 
-#: ../../mod/admin.php:1030
-msgid "Nickname of the new user."
-msgstr "Pseudo du nouvel utilisateur."
+#: ../../include/text.php:1232
+msgid "November"
+msgstr "Novembre"
 
-#: ../../mod/admin.php:1031
-msgid "Email address of the new user."
-msgstr "Adresse mail du nouvel utilisateur."
+#: ../../include/text.php:1232
+msgid "December"
+msgstr "Décembre"
 
-#: ../../mod/admin.php:1064
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Extension %s désactivée."
+#: ../../include/text.php:1422 ../../mod/videos.php:301
+msgid "View Video"
+msgstr "Regarder la vidéo"
 
-#: ../../mod/admin.php:1068
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Extension %s activée."
+#: ../../include/text.php:1454
+msgid "bytes"
+msgstr "octets"
 
-#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
-msgid "Disable"
-msgstr "Désactiver"
+#: ../../include/text.php:1478 ../../include/text.php:1490
+msgid "Click to open/close"
+msgstr "Cliquer pour ouvrir/fermer"
 
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
-msgid "Enable"
-msgstr "Activer"
+#: ../../include/text.php:1664 ../../include/text.php:1674
+#: ../../mod/events.php:335
+msgid "link to source"
+msgstr "lien original"
 
-#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
-msgid "Toggle"
-msgstr "Activer/Désactiver"
+#: ../../include/text.php:1731
+msgid "Select an alternate language"
+msgstr "Choisir une langue alternative"
 
-#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
-msgid "Author: "
-msgstr "Auteur: "
+#: ../../include/text.php:1987
+msgid "activity"
+msgstr "activité"
 
-#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
-msgid "Maintainer: "
-msgstr "Mainteneur: "
+#: ../../include/text.php:1989 ../../object/Item.php:389
+#: ../../object/Item.php:402 ../../mod/content.php:605
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commentaire"
 
-#: ../../mod/admin.php:1254
-msgid "No themes found."
-msgstr "Aucun thème trouvé."
+#: ../../include/text.php:1990
+msgid "post"
+msgstr "publication"
 
-#: ../../mod/admin.php:1316
-msgid "Screenshot"
-msgstr "Capture d'écran"
+#: ../../include/text.php:2158
+msgid "Item filed"
+msgstr "Élément classé"
 
-#: ../../mod/admin.php:1362
-msgid "[Experimental]"
-msgstr "[Expérimental]"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Déconnecté."
 
-#: ../../mod/admin.php:1363
-msgid "[Unsupported]"
-msgstr "[Non supporté]"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Échec de connexion."
 
-#: ../../mod/admin.php:1390
-msgid "Log settings updated."
-msgstr "Réglages des journaux mis-à-jour."
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
 
-#: ../../mod/admin.php:1446
-msgid "Clear"
-msgstr "Effacer"
+#: ../../include/auth.php:128 ../../include/user.php:67
+msgid "The error message was:"
+msgstr "Le message d'erreur était :"
 
-#: ../../mod/admin.php:1452
-msgid "Enable Debugging"
-msgstr "Activer le déboggage"
+#: ../../include/bbcode.php:433 ../../include/bbcode.php:1066
+#: ../../include/bbcode.php:1067
+msgid "Image/photo"
+msgstr "Image/photo"
 
-#: ../../mod/admin.php:1453
-msgid "Log file"
-msgstr "Fichier de journaux"
+#: ../../include/bbcode.php:531
+#, php-format
+msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
+msgstr ""
 
-#: ../../mod/admin.php:1453
+#: ../../include/bbcode.php:565
+#, php-format
 msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
+"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"_blank\">post</a>"
+msgstr ""
 
-#: ../../mod/admin.php:1454
-msgid "Log level"
-msgstr "Niveau de journalisaton"
+#: ../../include/bbcode.php:1030 ../../include/bbcode.php:1050
+msgid "$1 wrote:"
+msgstr "$1 a écrit:"
 
-#: ../../mod/admin.php:1504
-msgid "Close"
-msgstr "Fermer"
+#: ../../include/bbcode.php:1075 ../../include/bbcode.php:1076
+msgid "Encrypted content"
+msgstr "Contenu chiffré"
 
-#: ../../mod/admin.php:1510
-msgid "FTP Host"
-msgstr "Hôte FTP"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Bienvenue "
 
-#: ../../mod/admin.php:1511
-msgid "FTP Path"
-msgstr "Chemin FTP"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Merci d'illustrer votre profil d'une image."
 
-#: ../../mod/admin.php:1512
-msgid "FTP User"
-msgstr "Utilisateur FTP"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Bienvenue à nouveau, "
 
-#: ../../mod/admin.php:1513
-msgid "FTP Password"
-msgstr "Mot de passe FTP"
+#: ../../include/security.php:366
+msgid ""
+"The form security token was not correct. This probably happened because the "
+"form has been opened for too long (>3 hours) before submitting it."
+msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
 
-#: ../../mod/network.php:142
-msgid "Search Results For:"
-msgstr "Résultats pour:"
+#: ../../include/oembed.php:213
+msgid "Embedded content"
+msgstr "Contenu incorporé"
 
-#: ../../mod/network.php:185 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Retirer le terme"
+#: ../../include/oembed.php:222
+msgid "Embedding disabled"
+msgstr "Incorporation désactivée"
 
-#: ../../mod/network.php:194 ../../mod/search.php:30
-#: ../../include/features.php:42
-msgid "Saved Searches"
-msgstr "Recherches"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Masculin"
 
-#: ../../mod/network.php:195 ../../include/group.php:275
-msgid "add"
-msgstr "ajouter"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Féminin"
 
-#: ../../mod/network.php:356
-msgid "Commented Order"
-msgstr "Tri par commentaires"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Actuellement masculin"
 
-#: ../../mod/network.php:359
-msgid "Sort by Comment Date"
-msgstr "Trier par date de commentaire"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Actuellement féminin"
 
-#: ../../mod/network.php:362
-msgid "Posted Order"
-msgstr "Tri des publications"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Principalement masculin"
 
-#: ../../mod/network.php:365
-msgid "Sort by Post Date"
-msgstr "Trier par date de publication"
-
-#: ../../mod/network.php:374
-msgid "Posts that mention or involve you"
-msgstr "Publications qui vous concernent"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Principalement féminin"
 
-#: ../../mod/network.php:380
-msgid "New"
-msgstr "Nouveau"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgenre"
 
-#: ../../mod/network.php:383
-msgid "Activity Stream - by date"
-msgstr "Flux d'activités - par date"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Inter-sexe"
 
-#: ../../mod/network.php:389
-msgid "Shared Links"
-msgstr "Liens partagés"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuel"
 
-#: ../../mod/network.php:392
-msgid "Interesting Links"
-msgstr "Liens intéressants"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodite"
 
-#: ../../mod/network.php:398
-msgid "Starred"
-msgstr "Mis en avant"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutre"
 
-#: ../../mod/network.php:401
-msgid "Favourite Posts"
-msgstr "Publications favorites"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non-spécifique"
 
-#: ../../mod/network.php:463
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
-msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Autre"
 
-#: ../../mod/network.php:466
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indécis"
 
-#: ../../mod/network.php:520 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Groupe inexistant"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Hommes"
 
-#: ../../mod/network.php:537 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Groupe vide"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmes"
 
-#: ../../mod/network.php:544 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Groupe: "
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../mod/network.php:554
-msgid "Contact: "
-msgstr "Contact: "
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbienne"
 
-#: ../../mod/network.php:556
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Sans préférence"
 
-#: ../../mod/network.php:561
-msgid "Invalid contact."
-msgstr "Contact invalide."
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuel"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amis de %s"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Auto-sexuel"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Pas d'amis à afficher."
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Vous devez donner un nom et un horaire de début à l'événement."
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vierge"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Déviant"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Editer l'événement"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fétichiste"
 
-#: ../../mod/events.php:335 ../../include/text.php:1647
-#: ../../include/text.php:1657
-msgid "link to source"
-msgstr "lien original"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../mod/events.php:370 ../../boot.php:2143 ../../include/nav.php:80
-#: ../../view/theme/diabook/theme.php:127
-msgid "Events"
-msgstr "Événements"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Non-sexuel"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Créer un nouvel événement"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Célibataire"
 
-#: ../../mod/events.php:372
-msgid "Previous"
-msgstr "Précédent"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Esseulé"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-msgid "Next"
-msgstr "Suivant"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponible"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "heures:minutes"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Indisponible"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Détails de l'événement"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "Attiré par quelqu'un"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Le format est %s %s. La date de début et le nom sont nécessaires."
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "Entiché"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Début de l'événement:"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dans une relation"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Requis"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infidèle"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Date/heure de fin inconnue ou sans objet"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Accro au sexe"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Fin de l'événement:"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:289
+#: ../../include/user.php:293
+msgid "Friends"
+msgstr "Amis"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Ajuster à la zone horaire du visiteur"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amis par intérêt"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Description:"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:136 ../../boot.php:1648
-#: ../../include/bb2diaspora.php:170 ../../include/event.php:40
-msgid "Location:"
-msgstr "Localisation:"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Fiancé"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titre :"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Marié"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Partager cet événement"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "Se croit marié"
 
-#: ../../mod/content.php:437 ../../mod/content.php:740
-#: ../../mod/photos.php:1653 ../../object/Item.php:129
-#: ../../include/conversation.php:613
-msgid "Select"
-msgstr "Sélectionner"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partenaire"
 
-#: ../../mod/content.php:471 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../object/Item.php:326
-#: ../../object/Item.php:327 ../../include/conversation.php:654
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Voir le profil de %s @ %s"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "En cohabitation"
 
-#: ../../mod/content.php:481 ../../mod/content.php:864
-#: ../../object/Item.php:340 ../../include/conversation.php:674
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:690
-msgid "View in context"
-msgstr "Voir dans le contexte"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Heureux"
 
-#: ../../mod/content.php:603 ../../object/Item.php:387
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commentaire"
-msgstr[1] "%d commentaires"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Pas intéressé"
 
-#: ../../mod/content.php:605 ../../object/Item.php:389
-#: ../../object/Item.php:402 ../../include/text.php:1972
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commentaire"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Échangiste"
 
-#: ../../mod/content.php:606 ../../boot.php:751 ../../object/Item.php:390
-#: ../../include/contact_widgets.php:205
-msgid "show more"
-msgstr "montrer plus"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Trahi(e)"
+
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Séparé"
+
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instable"
+
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorcé"
+
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "Se croit divorcé"
+
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Veuf/Veuve"
+
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incertain"
+
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "C'est compliqué"
+
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "S'en désintéresse"
+
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Me demander"
+
+#: ../../include/user.php:40
+msgid "An invitation is required."
+msgstr "Une invitation est requise."
+
+#: ../../include/user.php:45
+msgid "Invitation could not be verified."
+msgstr "L'invitation fournie n'a pu être validée."
+
+#: ../../include/user.php:53
+msgid "Invalid OpenID url"
+msgstr "Adresse OpenID invalide"
+
+#: ../../include/user.php:74
+msgid "Please enter the required information."
+msgstr "Entrez les informations requises."
+
+#: ../../include/user.php:88
+msgid "Please use a shorter name."
+msgstr "Utilisez un nom plus court."
+
+#: ../../include/user.php:90
+msgid "Name too short."
+msgstr "Nom trop court."
+
+#: ../../include/user.php:105
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
+
+#: ../../include/user.php:110
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
+
+#: ../../include/user.php:113
+msgid "Not a valid email address."
+msgstr "Ceci n'est pas une adresse courriel valide."
+
+#: ../../include/user.php:126
+msgid "Cannot use that email."
+msgstr "Impossible d'utiliser ce courriel."
+
+#: ../../include/user.php:132
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
+
+#: ../../include/user.php:138 ../../include/user.php:236
+msgid "Nickname is already registered. Please choose another."
+msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
+
+#: ../../include/user.php:148
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
+
+#: ../../include/user.php:164
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
+
+#: ../../include/user.php:222
+msgid "An error occurred during registration. Please try again."
+msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+
+#: ../../include/user.php:257
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
+
+#: ../../include/user.php:377
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
+"\t"
+msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t"
+
+#: ../../include/user.php:381
+#, php-format
+msgid ""
+"\n"
+"\t\tThe login details are as follows:\n"
+"\t\t\tSite Location:\t%3$s\n"
+"\t\t\tLogin Name:\t%1$s\n"
+"\t\t\tPassword:\t%5$s\n"
+"\n"
+"\t\tYou may change your password from your account \"Settings\" page after logging\n"
+"\t\tin.\n"
+"\n"
+"\t\tPlease take a few moments to review the other account settings on that page.\n"
+"\n"
+"\t\tYou may also wish to add some basic information to your default profile\n"
+"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
+"\n"
+"\t\tWe recommend setting your full name, adding a profile photo,\n"
+"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
+"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
+"\t\tthan that.\n"
+"\n"
+"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
+"\t\tIf you are new and do not know anybody here, they may help\n"
+"\t\tyou to make some new and interesting friends.\n"
+"\n"
+"\n"
+"\t\tThank you and welcome to %2$s."
+msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s."
+
+#: ../../include/user.php:413 ../../mod/admin.php:838
+#, php-format
+msgid "Registration details for %s"
+msgstr "Détails d'inscription pour %s"
+
+#: ../../include/acl_selectors.php:333
+msgid "Visible to everybody"
+msgstr "Visible par tout le monde"
+
+#: ../../object/Item.php:94
+msgid "This entry was edited"
+msgstr "Cette entrée à été édité"
 
-#: ../../mod/content.php:620 ../../mod/photos.php:1359
-#: ../../object/Item.php:116
+#: ../../object/Item.php:116 ../../mod/photos.php:1359
+#: ../../mod/content.php:620
 msgid "Private Message"
 msgstr "Message privé"
 
-#: ../../mod/content.php:684 ../../mod/photos.php:1542
-#: ../../object/Item.php:231
+#: ../../object/Item.php:120 ../../mod/settings.php:681
+#: ../../mod/content.php:728
+msgid "Edit"
+msgstr "Éditer"
+
+#: ../../object/Item.php:133 ../../mod/content.php:763
+msgid "save to folder"
+msgstr "sauver vers dossier"
+
+#: ../../object/Item.php:195 ../../mod/content.php:753
+msgid "add star"
+msgstr "mett en avant"
+
+#: ../../object/Item.php:196 ../../mod/content.php:754
+msgid "remove star"
+msgstr "ne plus mettre en avant"
+
+#: ../../object/Item.php:197 ../../mod/content.php:755
+msgid "toggle star status"
+msgstr "mettre en avant"
+
+#: ../../object/Item.php:200 ../../mod/content.php:758
+msgid "starred"
+msgstr "mis en avant"
+
+#: ../../object/Item.php:208
+msgid "ignore thread"
+msgstr "ignorer le fil"
+
+#: ../../object/Item.php:209
+msgid "unignore thread"
+msgstr "Ne plus ignorer le fil"
+
+#: ../../object/Item.php:210
+msgid "toggle ignore status"
+msgstr "Ignorer le statut"
+
+#: ../../object/Item.php:213
+msgid "ignored"
+msgstr "ignoré"
+
+#: ../../object/Item.php:220 ../../mod/content.php:759
+msgid "add tag"
+msgstr "ajouter une étiquette"
+
+#: ../../object/Item.php:231 ../../mod/photos.php:1542
+#: ../../mod/content.php:684
 msgid "I like this (toggle)"
-msgstr "J'aime (bascule)"
+msgstr "J'aime"
 
-#: ../../mod/content.php:684 ../../object/Item.php:231
+#: ../../object/Item.php:231 ../../mod/content.php:684
 msgid "like"
 msgstr "aime"
 
-#: ../../mod/content.php:685 ../../mod/photos.php:1543
-#: ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/photos.php:1543
+#: ../../mod/content.php:685
 msgid "I don't like this (toggle)"
-msgstr "Je n'aime pas (bascule)"
+msgstr "Je n'aime pas"
 
-#: ../../mod/content.php:685 ../../object/Item.php:232
+#: ../../object/Item.php:232 ../../mod/content.php:685
 msgid "dislike"
 msgstr "n'aime pas"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "Share this"
 msgstr "Partager"
 
-#: ../../mod/content.php:687 ../../object/Item.php:234
+#: ../../object/Item.php:234 ../../mod/content.php:687
 msgid "share"
 msgstr "partager"
 
-#: ../../mod/content.php:707 ../../mod/photos.php:1562
+#: ../../object/Item.php:328 ../../mod/content.php:854
+msgid "to"
+msgstr "à"
+
+#: ../../object/Item.php:329
+msgid "via"
+msgstr "via"
+
+#: ../../object/Item.php:330 ../../mod/content.php:855
+msgid "Wall-to-Wall"
+msgstr "Inter-mur"
+
+#: ../../object/Item.php:331 ../../mod/content.php:856
+msgid "via Wall-To-Wall:"
+msgstr "en Inter-mur:"
+
+#: ../../object/Item.php:387 ../../mod/content.php:603
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commentaire"
+msgstr[1] "%d commentaires"
+
+#: ../../object/Item.php:675 ../../mod/photos.php:1562
 #: ../../mod/photos.php:1606 ../../mod/photos.php:1694
-#: ../../object/Item.php:675
+#: ../../mod/content.php:707
 msgid "This is you"
 msgstr "C'est vous"
 
-#: ../../mod/content.php:709 ../../mod/photos.php:1564
-#: ../../mod/photos.php:1608 ../../mod/photos.php:1696 ../../boot.php:750
-#: ../../object/Item.php:361 ../../object/Item.php:677
-msgid "Comment"
-msgstr "Commenter"
-
-#: ../../mod/content.php:711 ../../object/Item.php:679
+#: ../../object/Item.php:679 ../../mod/content.php:711
 msgid "Bold"
 msgstr "Gras"
 
-#: ../../mod/content.php:712 ../../object/Item.php:680
+#: ../../object/Item.php:680 ../../mod/content.php:712
 msgid "Italic"
 msgstr "Italique"
 
-#: ../../mod/content.php:713 ../../object/Item.php:681
+#: ../../object/Item.php:681 ../../mod/content.php:713
 msgid "Underline"
 msgstr "Souligné"
 
-#: ../../mod/content.php:714 ../../object/Item.php:682
+#: ../../object/Item.php:682 ../../mod/content.php:714
 msgid "Quote"
 msgstr "Citation"
 
-#: ../../mod/content.php:715 ../../object/Item.php:683
+#: ../../object/Item.php:683 ../../mod/content.php:715
 msgid "Code"
 msgstr "Code"
 
-#: ../../mod/content.php:716 ../../object/Item.php:684
+#: ../../object/Item.php:684 ../../mod/content.php:716
 msgid "Image"
 msgstr "Image"
 
-#: ../../mod/content.php:717 ../../object/Item.php:685
+#: ../../object/Item.php:685 ../../mod/content.php:717
 msgid "Link"
 msgstr "Lien"
 
-#: ../../mod/content.php:718 ../../object/Item.php:686
+#: ../../object/Item.php:686 ../../mod/content.php:718
 msgid "Video"
 msgstr "Vidéo"
 
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1566 ../../mod/photos.php:1610
-#: ../../mod/photos.php:1698 ../../object/Item.php:687
-#: ../../include/conversation.php:1126
-msgid "Preview"
-msgstr "Aperçu"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Elément non disponible."
 
-#: ../../mod/content.php:728 ../../mod/settings.php:676
-#: ../../object/Item.php:120
-msgid "Edit"
-msgstr "Éditer"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Element introuvable."
 
-#: ../../mod/content.php:753 ../../object/Item.php:195
-msgid "add star"
-msgstr "mett en avant"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
 
-#: ../../mod/content.php:754 ../../object/Item.php:196
-msgid "remove star"
-msgstr "ne plus mettre en avant"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Pas de destinataire sélectionné."
 
-#: ../../mod/content.php:755 ../../object/Item.php:197
-msgid "toggle star status"
-msgstr "mettre en avant"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Impossible de vérifier votre localisation."
 
-#: ../../mod/content.php:758 ../../object/Item.php:200
-msgid "starred"
-msgstr "mis en avant"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Impossible d'envoyer le message."
 
-#: ../../mod/content.php:759 ../../object/Item.php:220
-msgid "add tag"
-msgstr "ajouter une étiquette"
-
-#: ../../mod/content.php:763 ../../object/Item.php:133
-msgid "save to folder"
-msgstr "sauver vers dossier"
-
-#: ../../mod/content.php:854 ../../object/Item.php:328
-msgid "to"
-msgstr "à"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "Récupération des messages infructueuse."
 
-#: ../../mod/content.php:855 ../../object/Item.php:330
-msgid "Wall-to-Wall"
-msgstr "Inter-mur"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Message envoyé."
 
-#: ../../mod/content.php:856 ../../object/Item.php:331
-msgid "via Wall-To-Wall:"
-msgstr "en Inter-mur:"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Pas de destinataire."
 
-#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
-msgid "Remove My Account"
-msgstr "Supprimer mon compte"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Envoyer un message privé"
 
-#: ../../mod/removeme.php:47
+#: ../../mod/wallmessage.php:143
+#, php-format
 msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
-
-#: ../../mod/removeme.php:48
-msgid "Please enter your password for verification:"
-msgstr "Merci de saisir votre mot de passe pour vérification:"
+"If you wish for %s to respond, please check that the privacy settings on "
+"your site allow private mail from unknown senders."
+msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
 
-#: ../../mod/install.php:117
-msgid "Friendica Communications Server - Setup"
-msgstr "Serveur de communications Friendica - Configuration"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "À:"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Impossible de se connecter à la base."
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Sujet:"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossible de créer une table."
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Votre message:"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "La base de données de votre site Friendica a bien été installée."
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Groupe créé."
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossible de créer le groupe."
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:525
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Référez-vous au fichier \"INSTALL.txt\"."
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Groupe introuvable."
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Vérifications système"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Groupe renommé."
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Vérifier à nouveau"
+#: ../../mod/group.php:87
+msgid "Save Group"
+msgstr "Sauvegarder le groupe"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Connexion à la base de données"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Créez un groupe de contacts/amis."
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nom du groupe: "
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Groupe enlevé."
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossible d'enlever le groupe."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Serveur de base de données"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Éditeur de groupe"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nom d'utilisateur de la base"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membres"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Mot de passe de la base"
+#: ../../mod/group.php:194 ../../mod/contacts.php:586
+msgid "All Contacts"
+msgstr "Tous les contacts"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nom de la base"
+#: ../../mod/group.php:224 ../../mod/profperm.php:105
+msgid "Click on a contact to add or remove."
+msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Adresse électronique de l'administrateur du site"
+#: ../../mod/delegate.php:101
+msgid "No potential page delegates located."
+msgstr "Pas de délégataire potentiel."
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
+#: ../../mod/delegate.php:132
 msgid ""
-"Your account email address must match this in order to use the web admin "
-"panel."
-msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
-
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
+"Delegates are able to manage all aspects of this account/page except for "
+"basic account settings. Please do not delegate your personal account to "
+"anybody that you do not trust completely."
+msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Réglages du site"
+#: ../../mod/delegate.php:133
+msgid "Existing Page Managers"
+msgstr "Gestionnaires existants"
 
-#: ../../mod/install.php:321
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
+#: ../../mod/delegate.php:135
+msgid "Existing Page Delegates"
+msgstr "Délégataires existants"
 
-#: ../../mod/install.php:322
-msgid ""
-"If you don't have a command line version of PHP installed on server, you "
-"will not be able to run background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../mod/delegate.php:137
+msgid "Potential Delegates"
+msgstr "Délégataires potentiels"
 
-#: ../../mod/install.php:326
-msgid "PHP executable path"
-msgstr "Chemin vers l'exécutable de PHP"
+#: ../../mod/delegate.php:139 ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../mod/install.php:326
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
+#: ../../mod/delegate.php:140
+msgid "Add"
+msgstr "Ajouter"
 
-#: ../../mod/install.php:331
-msgid "Command line PHP"
-msgstr "Version \"ligne de commande\" de PHP"
+#: ../../mod/delegate.php:141
+msgid "No entries."
+msgstr "Aucune entrée."
 
-#: ../../mod/install.php:340
-msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
-msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Identifiant de demande invalide."
 
-#: ../../mod/install.php:341
-msgid "Found PHP version: "
-msgstr "Version de PHP:"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:215
+msgid "Discard"
+msgstr "Rejeter"
 
-#: ../../mod/install.php:343
-msgid "PHP cli binary"
-msgstr "PHP cli binary"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:214 ../../mod/contacts.php:455
+#: ../../mod/contacts.php:519 ../../mod/contacts.php:731
+msgid "Ignore"
+msgstr "Ignorer"
 
-#: ../../mod/install.php:354
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Système"
 
-#: ../../mod/install.php:355
-msgid "This is required for message delivery to work."
-msgstr "Ceci est requis pour que la livraison des messages fonctionne."
+#: ../../mod/notifications.php:88 ../../mod/network.php:371
+msgid "Personal"
+msgstr "Personnel"
 
-#: ../../mod/install.php:357
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Voir les demandes ignorées"
 
-#: ../../mod/install.php:378
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Cacher les demandes ignorées"
 
-#: ../../mod/install.php:379
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:199
+msgid "Notification type: "
+msgstr "Type de notification: "
 
-#: ../../mod/install.php:381
-msgid "Generate encryption keys"
-msgstr "Générer les clés de chiffrement"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Suggestion d'amitié/contact"
 
-#: ../../mod/install.php:388
-msgid "libCurl PHP module"
-msgstr "Module libCurl de PHP"
-
-#: ../../mod/install.php:389
-msgid "GD graphics PHP module"
-msgstr "Module GD (graphiques) de PHP"
-
-#: ../../mod/install.php:390
-msgid "OpenSSL PHP module"
-msgstr "Module OpenSSL de PHP"
-
-#: ../../mod/install.php:391
-msgid "mysqli PHP module"
-msgstr "Module Mysqli de PHP"
-
-#: ../../mod/install.php:392
-msgid "mb_string PHP module"
-msgstr "Module mb_string de PHP"
-
-#: ../../mod/install.php:397 ../../mod/install.php:399
-msgid "Apache mod_rewrite module"
-msgstr "Module mod_rewrite Apache"
-
-#: ../../mod/install.php:397
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
-
-#: ../../mod/install.php:405
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"libCURL\" est requis mais pas installé."
-
-#: ../../mod/install.php:409
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
-
-#: ../../mod/install.php:413
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"openssl\" est requis mais pas installé."
-
-#: ../../mod/install.php:417
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Erreur: Le module PHP \"mysqli\" est requis mais pas installé."
-
-#: ../../mod/install.php:421
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Erreur: le module PHP mb_string est requis mais pas installé."
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "suggéré(e) par %s"
 
-#: ../../mod/install.php:438
-msgid ""
-"The web installer needs to be able to create a file called \".htconfig.php\""
-" in the top folder of your web server and it is unable to do so."
-msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:208
+#: ../../mod/contacts.php:525
+msgid "Hide this contact from others"
+msgstr "Cacher ce contact aux autres"
 
-#: ../../mod/install.php:439
-msgid ""
-"This is most often a permission setting, as the web server may not be able "
-"to write files in your folder - even if you can."
-msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "Post a new friend activity"
+msgstr "Poster une nouvelle avtivité d'ami"
 
-#: ../../mod/install.php:440
-msgid ""
-"At the end of this procedure, we will give you a text to save in a file "
-"named .htconfig.php in your Friendica top folder."
-msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:209
+msgid "if applicable"
+msgstr "si possible"
 
-#: ../../mod/install.php:441
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:212
+#: ../../mod/admin.php:1005
+msgid "Approve"
+msgstr "Approuver"
 
-#: ../../mod/install.php:444
-msgid ".htconfig.php is writable"
-msgstr "Fichier .htconfig.php accessible en écriture"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Prétend que vous le connaissez: "
 
-#: ../../mod/install.php:454
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "oui"
 
-#: ../../mod/install.php:455
-msgid ""
-"In order to store these compiled templates, the web server needs to have "
-"write access to the directory view/smarty3/ under the Friendica top level "
-"folder."
-msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "non"
 
-#: ../../mod/install.php:456
+#: ../../mod/notifications.php:182
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
+"Shall your connection be bidirectional or not? \"Friend\" implies that you "
+"allow to read and you subscribe to their posts. \"Fan/Admirer\" means that "
+"you allow to read but you do not want to read theirs. Approve as: "
+msgstr ""
 
-#: ../../mod/install.php:457
+#: ../../mod/notifications.php:185
 msgid ""
-"Note: as a security measure, you should give the web server write access to "
-"view/smarty3/ only--not the template files (.tpl) that it contains."
-msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
+"Shall your connection be bidirectional or not? \"Friend\" implies that you "
+"allow to read and you subscribe to their posts. \"Sharer\" means that you "
+"allow to read but you do not want to read theirs. Approve as: "
+msgstr ""
 
-#: ../../mod/install.php:460
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 est autorisé à l écriture"
+#: ../../mod/notifications.php:193
+msgid "Friend"
+msgstr "Ami"
 
-#: ../../mod/install.php:472
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
+#: ../../mod/notifications.php:194
+msgid "Sharer"
+msgstr "Initiateur du partage"
 
-#: ../../mod/install.php:474
-msgid "Url rewrite is working"
-msgstr "La réécriture d'URL fonctionne."
+#: ../../mod/notifications.php:194
+msgid "Fan/Admirer"
+msgstr "Fan/Admirateur"
 
-#: ../../mod/install.php:484
-msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
+#: ../../mod/notifications.php:200
+msgid "Friend/Connect Request"
+msgstr "Demande de connexion/relation"
 
-#: ../../mod/install.php:523
-msgid "<h1>What next</h1>"
-msgstr "<h1>Ensuite</h1>"
+#: ../../mod/notifications.php:200
+msgid "New Follower"
+msgstr "Nouvel abonné"
 
-#: ../../mod/install.php:524
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'."
+#: ../../mod/notifications.php:221
+msgid "No introductions."
+msgstr "Aucune demande d'introduction."
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#: ../../mod/notifications.php:262 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:482
 #, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message."
-
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Impossible de vérifier votre localisation."
-
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Pas de destinataire."
+msgid "%s liked %s's post"
+msgstr "%s a aimé la publication de %s"
 
-#: ../../mod/wallmessage.php:143
+#: ../../mod/notifications.php:272 ../../mod/notifications.php:401
+#: ../../mod/notifications.php:492
 #, php-format
-msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus."
-
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Aide:"
-
-#: ../../mod/help.php:84 ../../include/nav.php:114
-msgid "Help"
-msgstr "Aide"
-
-#: ../../mod/help.php:90 ../../index.php:256
-msgid "Not Found"
-msgstr "Non trouvé"
-
-#: ../../mod/help.php:93 ../../index.php:259
-msgid "Page not found."
-msgstr "Page introuvable."
+msgid "%s disliked %s's post"
+msgstr "%s n'a pas aimé la publication de %s"
 
-#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:416
+#: ../../mod/notifications.php:507
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s accueille %2$s"
+msgid "%s is now friends with %s"
+msgstr "%s est désormais ami(e) avec %s"
 
-#: ../../mod/home.php:35
+#: ../../mod/notifications.php:294 ../../mod/notifications.php:423
 #, php-format
-msgid "Welcome to %s"
-msgstr "Bienvenue sur %s"
-
-#: ../../mod/wall_attach.php:75
-msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
-msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
-
-#: ../../mod/wall_attach.php:75
-msgid "Or - did you try to upload an empty file?"
-msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?"
+msgid "%s created a new post"
+msgstr "%s a créé une nouvelle publication"
 
-#: ../../mod/wall_attach.php:81
+#: ../../mod/notifications.php:295 ../../mod/notifications.php:424
+#: ../../mod/notifications.php:517
 #, php-format
-msgid "File exceeds size limit of %d"
-msgstr "La taille du fichier dépasse la limite de %d"
+msgid "%s commented on %s's post"
+msgstr "%s a commenté la publication de %s"
 
-#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
-msgid "File upload failed."
-msgstr "Le téléversement a échoué."
+#: ../../mod/notifications.php:310
+msgid "No more network notifications."
+msgstr "Aucune notification du réseau."
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Correpondance de profils"
+#: ../../mod/notifications.php:314
+msgid "Network Notifications"
+msgstr "Notifications du réseau"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
+#: ../../mod/notifications.php:340 ../../mod/notify.php:75
+msgid "No more system notifications."
+msgstr "Pas plus de notifications système."
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "s'intéresse à:"
+#: ../../mod/notifications.php:344 ../../mod/notify.php:79
+msgid "System Notifications"
+msgstr "Notifications du système"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:90 ../../boot.php:1568
-#: ../../include/contact_widgets.php:10
-msgid "Connect"
-msgstr "Relier"
+#: ../../mod/notifications.php:439
+msgid "No more personal notifications."
+msgstr "Aucun notification personnelle."
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "lien"
+#: ../../mod/notifications.php:443
+msgid "Personal Notifications"
+msgstr "Notifications personnelles"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Indisponible."
+#: ../../mod/notifications.php:524
+msgid "No more home notifications."
+msgstr "Aucune notification de la page d'accueil."
 
-#: ../../mod/community.php:32 ../../include/nav.php:129
-#: ../../include/nav.php:131 ../../view/theme/diabook/theme.php:129
-msgid "Community"
-msgstr "Communauté"
+#: ../../mod/notifications.php:528
+msgid "Home Notifications"
+msgstr "Notifications de page d'accueil"
 
-#: ../../mod/community.php:62 ../../mod/community.php:71
-#: ../../mod/search.php:168 ../../mod/search.php:192
-msgid "No results."
-msgstr "Aucun résultat."
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Aucun profil"
 
-#: ../../mod/settings.php:29 ../../mod/photos.php:80
+#: ../../mod/settings.php:34 ../../mod/photos.php:80
 msgid "everybody"
 msgstr "tout le monde"
 
-#: ../../mod/settings.php:41
+#: ../../mod/settings.php:41 ../../mod/admin.php:1016
+msgid "Account"
+msgstr "Compte"
+
+#: ../../mod/settings.php:46
 msgid "Additional features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:46
+#: ../../mod/settings.php:51
 msgid "Display"
 msgstr "Afficher"
 
-#: ../../mod/settings.php:52 ../../mod/settings.php:780
+#: ../../mod/settings.php:57 ../../mod/settings.php:785
 msgid "Social Networks"
 msgstr "Réseaux sociaux"
 
-#: ../../mod/settings.php:62 ../../include/nav.php:170
-msgid "Delegations"
-msgstr "Délégations"
+#: ../../mod/settings.php:62 ../../mod/admin.php:106 ../../mod/admin.php:1102
+#: ../../mod/admin.php:1155
+msgid "Plugins"
+msgstr "Extensions"
 
-#: ../../mod/settings.php:67
+#: ../../mod/settings.php:72
 msgid "Connected apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:72 ../../mod/uexport.php:85
+#: ../../mod/settings.php:77 ../../mod/uexport.php:85
 msgid "Export personal data"
 msgstr "Exporter"
 
-#: ../../mod/settings.php:77
+#: ../../mod/settings.php:82
 msgid "Remove account"
 msgstr "Supprimer le compte"
 
-#: ../../mod/settings.php:129
+#: ../../mod/settings.php:134
 msgid "Missing some important data!"
 msgstr "Il manque certaines informations importantes!"
 
-#: ../../mod/settings.php:238
+#: ../../mod/settings.php:137 ../../mod/settings.php:645
+#: ../../mod/contacts.php:729
+msgid "Update"
+msgstr "Mises-à-jour"
+
+#: ../../mod/settings.php:243
 msgid "Failed to connect with email account using the settings provided."
 msgstr "Impossible de se connecter au compte courriel configuré."
 
-#: ../../mod/settings.php:243
+#: ../../mod/settings.php:248
 msgid "Email settings updated."
 msgstr "Réglages de courriel mis-à-jour."
 
-#: ../../mod/settings.php:258
+#: ../../mod/settings.php:263
 msgid "Features updated"
 msgstr "Fonctionnalités mises à jour"
 
-#: ../../mod/settings.php:321
+#: ../../mod/settings.php:326
 msgid "Relocate message has been send to your contacts"
 msgstr "Un message de relocalisation a été envoyé à vos contacts."
 
-#: ../../mod/settings.php:335
+#: ../../mod/settings.php:340
 msgid "Passwords do not match. Password unchanged."
 msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
 
-#: ../../mod/settings.php:340
+#: ../../mod/settings.php:345
 msgid "Empty passwords are not allowed. Password unchanged."
 msgstr "Les mots de passe vides sont interdits. Aucun changement appliqué."
 
-#: ../../mod/settings.php:348
+#: ../../mod/settings.php:353
 msgid "Wrong password."
 msgstr "Mauvais mot de passe."
 
-#: ../../mod/settings.php:359
+#: ../../mod/settings.php:364
 msgid "Password changed."
 msgstr "Mots de passe changés."
 
-#: ../../mod/settings.php:361
+#: ../../mod/settings.php:366
 msgid "Password update failed. Please try again."
 msgstr "Le changement de mot de passe a échoué. Merci de recommencer."
 
-#: ../../mod/settings.php:428
+#: ../../mod/settings.php:433
 msgid " Please use a shorter name."
 msgstr " Merci d'utiliser un nom plus court."
 
-#: ../../mod/settings.php:430
+#: ../../mod/settings.php:435
 msgid " Name too short."
 msgstr " Nom trop court."
 
-#: ../../mod/settings.php:439
+#: ../../mod/settings.php:444
 msgid "Wrong Password"
 msgstr "Mauvais mot de passe"
 
-#: ../../mod/settings.php:444
+#: ../../mod/settings.php:449
 msgid " Not valid email."
 msgstr " Email invalide."
 
-#: ../../mod/settings.php:450
+#: ../../mod/settings.php:455
 msgid " Cannot change to that email."
 msgstr " Impossible de changer pour cet email."
 
-#: ../../mod/settings.php:506
+#: ../../mod/settings.php:511
 msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut."
 
-#: ../../mod/settings.php:510
+#: ../../mod/settings.php:515
 msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut."
 
-#: ../../mod/settings.php:540
+#: ../../mod/settings.php:545
 msgid "Settings updated."
 msgstr "Réglages mis à jour."
 
-#: ../../mod/settings.php:613 ../../mod/settings.php:639
-#: ../../mod/settings.php:675
+#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:680
 msgid "Add application"
 msgstr "Ajouter une application"
 
-#: ../../mod/settings.php:617 ../../mod/settings.php:643
+#: ../../mod/settings.php:619 ../../mod/settings.php:729
+#: ../../mod/settings.php:803 ../../mod/settings.php:885
+#: ../../mod/settings.php:1118 ../../mod/admin.php:620
+#: ../../mod/admin.php:1156 ../../mod/admin.php:1358 ../../mod/admin.php:1445
+msgid "Save Settings"
+msgstr "Sauvegarder les paramétres"
+
+#: ../../mod/settings.php:621 ../../mod/settings.php:647
+#: ../../mod/admin.php:1003 ../../mod/admin.php:1015 ../../mod/admin.php:1016
+#: ../../mod/admin.php:1029 ../../mod/crepair.php:165
+msgid "Name"
+msgstr "Nom"
+
+#: ../../mod/settings.php:622 ../../mod/settings.php:648
 msgid "Consumer Key"
 msgstr "Clé utilisateur"
 
-#: ../../mod/settings.php:618 ../../mod/settings.php:644
+#: ../../mod/settings.php:623 ../../mod/settings.php:649
 msgid "Consumer Secret"
 msgstr "Secret utilisateur"
 
-#: ../../mod/settings.php:619 ../../mod/settings.php:645
+#: ../../mod/settings.php:624 ../../mod/settings.php:650
 msgid "Redirect"
 msgstr "Rediriger"
 
-#: ../../mod/settings.php:620 ../../mod/settings.php:646
+#: ../../mod/settings.php:625 ../../mod/settings.php:651
 msgid "Icon url"
 msgstr "URL de l'icône"
 
-#: ../../mod/settings.php:631
+#: ../../mod/settings.php:636
 msgid "You can't edit this application."
 msgstr "Vous ne pouvez pas éditer cette application."
 
-#: ../../mod/settings.php:674
+#: ../../mod/settings.php:679
 msgid "Connected Apps"
 msgstr "Applications connectées"
 
-#: ../../mod/settings.php:678
+#: ../../mod/settings.php:683
 msgid "Client key starts with"
 msgstr "La clé cliente commence par"
 
-#: ../../mod/settings.php:679
+#: ../../mod/settings.php:684
 msgid "No name"
 msgstr "Sans nom"
 
-#: ../../mod/settings.php:680
+#: ../../mod/settings.php:685
 msgid "Remove authorization"
 msgstr "Révoquer l'autorisation"
 
-#: ../../mod/settings.php:692
+#: ../../mod/settings.php:697
 msgid "No Plugin settings configured"
 msgstr "Pas de réglages d'extensions configurés"
 
-#: ../../mod/settings.php:700
+#: ../../mod/settings.php:705
 msgid "Plugin Settings"
 msgstr "Extensions"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "Off"
 msgstr "Éteint"
 
-#: ../../mod/settings.php:714
+#: ../../mod/settings.php:719
 msgid "On"
 msgstr "Allumé"
 
-#: ../../mod/settings.php:722
+#: ../../mod/settings.php:727
 msgid "Additional Features"
 msgstr "Fonctions supplémentaires"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 #, php-format
 msgid "Built-in support for %s connectivity is %s"
 msgstr "Le support natif pour la connectivité %s est %s"
 
-#: ../../mod/settings.php:736 ../../mod/dfrn_request.php:838
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
-
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "enabled"
 msgstr "activé"
 
-#: ../../mod/settings.php:736 ../../mod/settings.php:737
+#: ../../mod/settings.php:741 ../../mod/settings.php:742
 msgid "disabled"
 msgstr "désactivé"
 
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:742
 msgid "StatusNet"
 msgstr "StatusNet"
 
-#: ../../mod/settings.php:773
+#: ../../mod/settings.php:778
 msgid "Email access is disabled on this site."
 msgstr "L'accès courriel est désactivé sur ce site."
 
-#: ../../mod/settings.php:785
+#: ../../mod/settings.php:790
 msgid "Email/Mailbox Setup"
 msgstr "Réglages de courriel/boîte à lettre"
 
-#: ../../mod/settings.php:786
+#: ../../mod/settings.php:791
 msgid ""
 "If you wish to communicate with email contacts using this service "
 "(optional), please specify how to connect to your mailbox."
 msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte."
 
-#: ../../mod/settings.php:787
+#: ../../mod/settings.php:792
 msgid "Last successful email check:"
 msgstr "Dernière vérification réussie des courriels:"
 
-#: ../../mod/settings.php:789
+#: ../../mod/settings.php:794
 msgid "IMAP server name:"
 msgstr "Nom du serveur IMAP:"
 
-#: ../../mod/settings.php:790
+#: ../../mod/settings.php:795
 msgid "IMAP port:"
 msgstr "Port IMAP:"
 
-#: ../../mod/settings.php:791
+#: ../../mod/settings.php:796
 msgid "Security:"
 msgstr "Sécurité:"
 
-#: ../../mod/settings.php:791 ../../mod/settings.php:796
+#: ../../mod/settings.php:796 ../../mod/settings.php:801
 msgid "None"
 msgstr "Aucun(e)"
 
-#: ../../mod/settings.php:792
+#: ../../mod/settings.php:797
 msgid "Email login name:"
 msgstr "Nom de connexion:"
 
-#: ../../mod/settings.php:793
+#: ../../mod/settings.php:798
 msgid "Email password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:794
+#: ../../mod/settings.php:799
 msgid "Reply-to address:"
 msgstr "Adresse de réponse:"
 
-#: ../../mod/settings.php:795
+#: ../../mod/settings.php:800
 msgid "Send public posts to all email contacts:"
 msgstr "Envoyer les publications publiques à tous les contacts courriels:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Action after import:"
 msgstr "Action après import:"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Mark as seen"
 msgstr "Marquer comme vu"
 
-#: ../../mod/settings.php:796
+#: ../../mod/settings.php:801
 msgid "Move to folder"
 msgstr "Déplacer vers"
 
-#: ../../mod/settings.php:797
+#: ../../mod/settings.php:802
 msgid "Move to folder:"
 msgstr "Déplacer vers:"
 
-#: ../../mod/settings.php:878
+#: ../../mod/settings.php:833 ../../mod/admin.php:545
+msgid "No special theme for mobile devices"
+msgstr "Pas de thème particulier pour les terminaux mobiles"
+
+#: ../../mod/settings.php:883
 msgid "Display Settings"
 msgstr "Affichage"
 
-#: ../../mod/settings.php:884 ../../mod/settings.php:899
+#: ../../mod/settings.php:889 ../../mod/settings.php:904
 msgid "Display Theme:"
 msgstr "Thème d'affichage:"
 
-#: ../../mod/settings.php:885
+#: ../../mod/settings.php:890
 msgid "Mobile Theme:"
 msgstr "Thème mobile:"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Update browser every xx seconds"
 msgstr "Mettre-à-jour l'affichage toutes les xx secondes"
 
-#: ../../mod/settings.php:886
+#: ../../mod/settings.php:891
 msgid "Minimum of 10 seconds, no maximum"
 msgstr "Délai minimum de 10 secondes, pas de maximum"
 
-#: ../../mod/settings.php:887
+#: ../../mod/settings.php:892
 msgid "Number of items to display per page:"
 msgstr "Nombre d’éléments par page:"
 
-#: ../../mod/settings.php:887 ../../mod/settings.php:888
+#: ../../mod/settings.php:892 ../../mod/settings.php:893
 msgid "Maximum of 100 items"
 msgstr "Maximum de 100 éléments"
 
-#: ../../mod/settings.php:888
+#: ../../mod/settings.php:893
 msgid "Number of items to display per page when viewed from mobile device:"
 msgstr "Nombre d'éléments a afficher par page pour un appareil mobile"
 
-#: ../../mod/settings.php:889
+#: ../../mod/settings.php:894
 msgid "Don't show emoticons"
 msgstr "Ne pas afficher les émoticônes (smileys grahiques)"
 
-#: ../../mod/settings.php:890
+#: ../../mod/settings.php:895
 msgid "Don't show notices"
 msgstr "Ne plus afficher les avis"
 
-#: ../../mod/settings.php:891
+#: ../../mod/settings.php:896
 msgid "Infinite scroll"
 msgstr "Défilement infini"
 
-#: ../../mod/settings.php:892
+#: ../../mod/settings.php:897
 msgid "Automatic updates only at the top of the network page"
 msgstr ""
 
-#: ../../mod/settings.php:969
+#: ../../mod/settings.php:974
 msgid "User Types"
 msgstr "Types d'utilisateurs"
 
-#: ../../mod/settings.php:970
+#: ../../mod/settings.php:975
 msgid "Community Types"
 msgstr "Genre de communautés"
 
-#: ../../mod/settings.php:971
+#: ../../mod/settings.php:976
 msgid "Normal Account Page"
 msgstr "Compte normal"
 
-#: ../../mod/settings.php:972
+#: ../../mod/settings.php:977
 msgid "This account is a normal personal profile"
 msgstr "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)"
 
-#: ../../mod/settings.php:975
+#: ../../mod/settings.php:980
 msgid "Soapbox Page"
 msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/settings.php:976
+#: ../../mod/settings.php:981
 msgid "Automatically approve all connection/friend requests as read-only fans"
 msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'"
 
-#: ../../mod/settings.php:979
+#: ../../mod/settings.php:984
 msgid "Community Forum/Celebrity Account"
 msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/settings.php:980
+#: ../../mod/settings.php:985
 msgid ""
 "Automatically approve all connection/friend requests as read-write fans"
 msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'"
 
-#: ../../mod/settings.php:983
+#: ../../mod/settings.php:988
 msgid "Automatic Friend Page"
 msgstr "Compte d'\"amitié automatique\""
 
-#: ../../mod/settings.php:984
+#: ../../mod/settings.php:989
 msgid "Automatically approve all connection/friend requests as friends"
 msgstr "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis"
 
-#: ../../mod/settings.php:987
+#: ../../mod/settings.php:992
 msgid "Private Forum [Experimental]"
 msgstr "Forum privé [expérimental]"
 
-#: ../../mod/settings.php:988
+#: ../../mod/settings.php:993
 msgid "Private forum - approved members only"
 msgstr "Forum privé - modéré en inscription"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "OpenID:"
 msgstr "OpenID:"
 
-#: ../../mod/settings.php:1000
+#: ../../mod/settings.php:1005
 msgid "(Optional) Allow this OpenID to login to this account."
 msgstr "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte."
 
-#: ../../mod/settings.php:1010
+#: ../../mod/settings.php:1015
 msgid "Publish your default profile in your local site directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire local de ce site?"
 
-#: ../../mod/settings.php:1010 ../../mod/settings.php:1016
-#: ../../mod/settings.php:1024 ../../mod/settings.php:1028
-#: ../../mod/settings.php:1033 ../../mod/settings.php:1039
-#: ../../mod/settings.php:1045 ../../mod/settings.php:1051
-#: ../../mod/settings.php:1081 ../../mod/settings.php:1082
-#: ../../mod/settings.php:1083 ../../mod/settings.php:1084
-#: ../../mod/settings.php:1085 ../../mod/dfrn_request.php:830
-#: ../../mod/register.php:234 ../../mod/profiles.php:661
-#: ../../mod/profiles.php:665 ../../mod/api.php:106
+#: ../../mod/settings.php:1015 ../../mod/settings.php:1021
+#: ../../mod/settings.php:1029 ../../mod/settings.php:1033
+#: ../../mod/settings.php:1038 ../../mod/settings.php:1044
+#: ../../mod/settings.php:1050 ../../mod/settings.php:1056
+#: ../../mod/settings.php:1086 ../../mod/settings.php:1087
+#: ../../mod/settings.php:1088 ../../mod/settings.php:1089
+#: ../../mod/settings.php:1090 ../../mod/register.php:234
+#: ../../mod/dfrn_request.php:830 ../../mod/api.php:106
+#: ../../mod/profiles.php:661 ../../mod/profiles.php:665
 msgid "No"
 msgstr "Non"
 
-#: ../../mod/settings.php:1016
+#: ../../mod/settings.php:1021
 msgid "Publish your default profile in the global social directory?"
 msgstr "Publier votre profil par défaut sur l'annuaire social global?"
 
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1029
 msgid "Hide your contact/friend list from viewers of your default profile?"
 msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?"
 
-#: ../../mod/settings.php:1028 ../../include/conversation.php:1057
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Cacher les détails du profil aux visiteurs inconnus?"
-
-#: ../../mod/settings.php:1028
+#: ../../mod/settings.php:1033
 msgid ""
 "If enabled, posting public messages to Diaspora and other networks isn't "
 "possible."
 msgstr ""
 
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1038
 msgid "Allow friends to post to your profile page?"
 msgstr "Autoriser vos amis à publier sur votre profil?"
 
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1044
 msgid "Allow friends to tag your posts?"
 msgstr "Autoriser vos amis à étiqueter vos publications?"
 
-#: ../../mod/settings.php:1045
+#: ../../mod/settings.php:1050
 msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?"
 
-#: ../../mod/settings.php:1051
+#: ../../mod/settings.php:1056
 msgid "Permit unknown people to send you private mail?"
 msgstr "Autoriser les messages privés d'inconnus?"
 
-#: ../../mod/settings.php:1059
+#: ../../mod/settings.php:1064
 msgid "Profile is <strong>not published</strong>."
 msgstr "Ce profil n'est <strong>pas publié</strong>."
 
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1067 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "ou"
+
+#: ../../mod/settings.php:1072
 msgid "Your Identity Address is"
 msgstr "L'adresse de votre identité est"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 msgid "Automatically expire posts after this many days:"
 msgstr "Les publications expirent automatiquement après (en jours) :"
 
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1083
 msgid "If empty, posts will not expire. Expired posts will be deleted"
 msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées"
 
-#: ../../mod/settings.php:1079
+#: ../../mod/settings.php:1084
 msgid "Advanced expiration settings"
 msgstr "Réglages avancés de l'expiration"
 
-#: ../../mod/settings.php:1080
+#: ../../mod/settings.php:1085
 msgid "Advanced Expiration"
 msgstr "Expiration (avancé)"
 
-#: ../../mod/settings.php:1081
+#: ../../mod/settings.php:1086
 msgid "Expire posts:"
 msgstr "Faire expirer les publications:"
 
-#: ../../mod/settings.php:1082
+#: ../../mod/settings.php:1087
 msgid "Expire personal notes:"
 msgstr "Faire expirer les notes personnelles:"
 
-#: ../../mod/settings.php:1083
+#: ../../mod/settings.php:1088
 msgid "Expire starred posts:"
 msgstr "Faire expirer les publications marqués:"
 
-#: ../../mod/settings.php:1084
+#: ../../mod/settings.php:1089
 msgid "Expire photos:"
 msgstr "Faire expirer les photos:"
 
-#: ../../mod/settings.php:1085
+#: ../../mod/settings.php:1090
 msgid "Only expire posts by others:"
 msgstr "Faire expirer seulement les publications des autres:"
 
-#: ../../mod/settings.php:1111
+#: ../../mod/settings.php:1116
 msgid "Account Settings"
 msgstr "Compte"
 
-#: ../../mod/settings.php:1119
+#: ../../mod/settings.php:1124
 msgid "Password Settings"
 msgstr "Réglages de mot de passe"
 
-#: ../../mod/settings.php:1120
+#: ../../mod/settings.php:1125
 msgid "New Password:"
 msgstr "Nouveau mot de passe:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Confirm:"
 msgstr "Confirmer:"
 
-#: ../../mod/settings.php:1121
+#: ../../mod/settings.php:1126
 msgid "Leave password fields blank unless changing"
 msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer"
 
-#: ../../mod/settings.php:1122
+#: ../../mod/settings.php:1127
 msgid "Current Password:"
 msgstr "Mot de passe actuel:"
 
-#: ../../mod/settings.php:1122 ../../mod/settings.php:1123
+#: ../../mod/settings.php:1127 ../../mod/settings.php:1128
 msgid "Your current password to confirm the changes"
 msgstr "Votre mot de passe actuel pour confirmer les modifications"
 
-#: ../../mod/settings.php:1123
+#: ../../mod/settings.php:1128
 msgid "Password:"
 msgstr "Mot de passe:"
 
-#: ../../mod/settings.php:1127
+#: ../../mod/settings.php:1132
 msgid "Basic Settings"
 msgstr "Réglages basiques"
 
-#: ../../mod/settings.php:1128 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Nom complet:"
-
-#: ../../mod/settings.php:1129
+#: ../../mod/settings.php:1134
 msgid "Email Address:"
 msgstr "Adresse courriel:"
 
-#: ../../mod/settings.php:1130
+#: ../../mod/settings.php:1135
 msgid "Your Timezone:"
 msgstr "Votre fuseau horaire:"
 
-#: ../../mod/settings.php:1131
+#: ../../mod/settings.php:1136
 msgid "Default Post Location:"
 msgstr "Emplacement de publication par défaut:"
 
-#: ../../mod/settings.php:1132
+#: ../../mod/settings.php:1137
 msgid "Use Browser Location:"
 msgstr "Utiliser la localisation géographique du navigateur:"
 
-#: ../../mod/settings.php:1135
+#: ../../mod/settings.php:1140
 msgid "Security and Privacy Settings"
 msgstr "Réglages de sécurité et vie privée"
 
-#: ../../mod/settings.php:1137
+#: ../../mod/settings.php:1142
 msgid "Maximum Friend Requests/Day:"
 msgstr "Nombre maximal de requêtes d'amitié/jour:"
 
-#: ../../mod/settings.php:1137 ../../mod/settings.php:1167
+#: ../../mod/settings.php:1142 ../../mod/settings.php:1172
 msgid "(to prevent spam abuse)"
 msgstr "(pour limiter l'impact du spam)"
 
-#: ../../mod/settings.php:1138
+#: ../../mod/settings.php:1143
 msgid "Default Post Permissions"
 msgstr "Permissions de publication par défaut"
 
-#: ../../mod/settings.php:1139
+#: ../../mod/settings.php:1144
 msgid "(click to open/close)"
 msgstr "(cliquer pour ouvrir/fermer)"
 
-#: ../../mod/settings.php:1148 ../../mod/photos.php:1146
+#: ../../mod/settings.php:1153 ../../mod/photos.php:1146
 #: ../../mod/photos.php:1519
 msgid "Show to Groups"
 msgstr "Montrer aux groupes"
 
-#: ../../mod/settings.php:1149 ../../mod/photos.php:1147
+#: ../../mod/settings.php:1154 ../../mod/photos.php:1147
 #: ../../mod/photos.php:1520
 msgid "Show to Contacts"
 msgstr "Montrer aux Contacts"
 
-#: ../../mod/settings.php:1150
+#: ../../mod/settings.php:1155
 msgid "Default Private Post"
 msgstr "Message privé par défaut"
 
-#: ../../mod/settings.php:1151
+#: ../../mod/settings.php:1156
 msgid "Default Public Post"
 msgstr "Message publique par défaut"
 
-#: ../../mod/settings.php:1155
+#: ../../mod/settings.php:1160
 msgid "Default Permissions for New Posts"
 msgstr "Permissions par défaut pour les nouvelles publications"
 
-#: ../../mod/settings.php:1167
+#: ../../mod/settings.php:1172
 msgid "Maximum private messages per day from unknown people:"
 msgstr "Maximum de messages privés d'inconnus par jour:"
 
-#: ../../mod/settings.php:1170
+#: ../../mod/settings.php:1175
 msgid "Notification Settings"
 msgstr "Réglages de notification"
 
-#: ../../mod/settings.php:1171
+#: ../../mod/settings.php:1176
 msgid "By default post a status message when:"
 msgstr "Par défaut, poster un statut quand:"
 
-#: ../../mod/settings.php:1172
+#: ../../mod/settings.php:1177
 msgid "accepting a friend request"
 msgstr "j'accepte un ami"
 
-#: ../../mod/settings.php:1173
+#: ../../mod/settings.php:1178
 msgid "joining a forum/community"
 msgstr "joignant un forum/une communauté"
 
-#: ../../mod/settings.php:1174
+#: ../../mod/settings.php:1179
 msgid "making an <em>interesting</em> profile change"
 msgstr "je fais une modification <em>intéressante</em> de mon profil"
 
-#: ../../mod/settings.php:1175
+#: ../../mod/settings.php:1180
 msgid "Send a notification email when:"
 msgstr "Envoyer un courriel de notification quand:"
 
-#: ../../mod/settings.php:1176
+#: ../../mod/settings.php:1181
 msgid "You receive an introduction"
 msgstr "Vous recevez une introduction"
 
-#: ../../mod/settings.php:1177
+#: ../../mod/settings.php:1182
 msgid "Your introductions are confirmed"
 msgstr "Vos introductions sont confirmées"
 
-#: ../../mod/settings.php:1178
+#: ../../mod/settings.php:1183
 msgid "Someone writes on your profile wall"
 msgstr "Quelqu'un écrit sur votre mur"
 
-#: ../../mod/settings.php:1179
+#: ../../mod/settings.php:1184
 msgid "Someone writes a followup comment"
 msgstr "Quelqu'un vous commente"
 
-#: ../../mod/settings.php:1180
+#: ../../mod/settings.php:1185
 msgid "You receive a private message"
 msgstr "Vous recevez un message privé"
 
-#: ../../mod/settings.php:1181
+#: ../../mod/settings.php:1186
 msgid "You receive a friend suggestion"
 msgstr "Vous avez reçu une suggestion d'ami"
 
-#: ../../mod/settings.php:1182
+#: ../../mod/settings.php:1187
 msgid "You are tagged in a post"
 msgstr "Vous avez été étiquetté dans une publication"
 
-#: ../../mod/settings.php:1183
+#: ../../mod/settings.php:1188
 msgid "You are poked/prodded/etc. in a post"
 msgstr "Vous avez été sollicité dans une publication"
 
-#: ../../mod/settings.php:1185
+#: ../../mod/settings.php:1190
 msgid "Text-only notification emails"
 msgstr ""
 
-#: ../../mod/settings.php:1187
+#: ../../mod/settings.php:1192
 msgid "Send text only notification emails, without the html part"
 msgstr ""
 
-#: ../../mod/settings.php:1189
+#: ../../mod/settings.php:1194
 msgid "Advanced Account/Page Type Settings"
 msgstr "Paramètres avancés de compte/page"
 
-#: ../../mod/settings.php:1190
+#: ../../mod/settings.php:1195
 msgid "Change the behaviour of this account for special situations"
 msgstr "Modifier le comportement de ce compte dans certaines situations"
 
-#: ../../mod/settings.php:1193
+#: ../../mod/settings.php:1198
 msgid "Relocate"
 msgstr "Relocaliser"
 
-#: ../../mod/settings.php:1194
+#: ../../mod/settings.php:1199
 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 vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton."
 
-#: ../../mod/settings.php:1195
+#: ../../mod/settings.php:1200
 msgid "Resend relocate message to contacts"
 msgstr "Renvoyer un message de relocalisation aux contacts."
 
-#: ../../mod/dfrn_request.php:95
-msgid "This introduction has already been accepted."
-msgstr "Cette introduction a déjà été acceptée."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amis communs"
 
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Pas de contacts en commun."
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informations de confidentialité indisponibles."
 
-#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
-msgid "Warning: profile location has no profile photo."
-msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visible par:"
 
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#: ../../mod/contacts.php:112
 #, php-format
-msgid "%d required parameter was not found at the given location"
-msgid_plural "%d required parameters were not found at the given location"
-msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
-msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
+msgid "%d contact edited."
+msgid_plural "%d contacts edited"
+msgstr[0] "%d contact édité"
+msgstr[1] "%d contacts édités."
 
-#: ../../mod/dfrn_request.php:172
-msgid "Introduction complete."
-msgstr "Phase d'introduction achevée."
+#: ../../mod/contacts.php:143 ../../mod/contacts.php:276
+msgid "Could not access contact record."
+msgstr "Impossible d'accéder à l'enregistrement du contact."
 
-#: ../../mod/dfrn_request.php:214
-msgid "Unrecoverable protocol error."
-msgstr "Erreur de protocole non-récupérable."
+#: ../../mod/contacts.php:157
+msgid "Could not locate selected profile."
+msgstr "Impossible de localiser le profil séléctionné."
 
-#: ../../mod/dfrn_request.php:242
-msgid "Profile unavailable."
-msgstr "Profil indisponible."
+#: ../../mod/contacts.php:190
+msgid "Contact updated."
+msgstr "Contact mis-à-jour."
 
-#: ../../mod/dfrn_request.php:267
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
+#: ../../mod/contacts.php:192 ../../mod/dfrn_request.php:576
+msgid "Failed to update contact record."
+msgstr "Échec de mise-à-jour du contact."
 
-#: ../../mod/dfrn_request.php:268
-msgid "Spam protection measures have been invoked."
-msgstr "Des mesures de protection contre le spam ont été déclenchées."
+#: ../../mod/contacts.php:291
+msgid "Contact has been blocked"
+msgstr "Le contact a été bloqué"
 
-#: ../../mod/dfrn_request.php:269
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
+#: ../../mod/contacts.php:291
+msgid "Contact has been unblocked"
+msgstr "Le contact n'est plus bloqué"
 
-#: ../../mod/dfrn_request.php:331
-msgid "Invalid locator"
-msgstr "Localisateur invalide"
+#: ../../mod/contacts.php:302
+msgid "Contact has been ignored"
+msgstr "Le contact a été ignoré"
 
-#: ../../mod/dfrn_request.php:340
-msgid "Invalid email address."
-msgstr "Adresse courriel invalide."
+#: ../../mod/contacts.php:302
+msgid "Contact has been unignored"
+msgstr "Le contact n'est plus ignoré"
 
-#: ../../mod/dfrn_request.php:367
-msgid "This account has not been configured for email. Request failed."
-msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."
+#: ../../mod/contacts.php:314
+msgid "Contact has been archived"
+msgstr "Contact archivé"
 
-#: ../../mod/dfrn_request.php:463
-msgid "Unable to resolve your name at the provided location."
-msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
+#: ../../mod/contacts.php:314
+msgid "Contact has been unarchived"
+msgstr "Contact désarchivé"
 
-#: ../../mod/dfrn_request.php:476
-msgid "You have already introduced yourself here."
-msgstr "Vous vous êtes déjà présenté ici."
+#: ../../mod/contacts.php:339 ../../mod/contacts.php:727
+msgid "Do you really want to delete this contact?"
+msgstr "Voulez-vous vraiment supprimer ce contact?"
 
-#: ../../mod/dfrn_request.php:480
+#: ../../mod/contacts.php:356
+msgid "Contact has been removed."
+msgstr "Ce contact a été retiré."
+
+#: ../../mod/contacts.php:394
 #, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Il semblerait que vous soyez déjà ami avec %s."
+msgid "You are mutual friends with %s"
+msgstr "Vous êtes ami (et réciproquement) avec %s"
 
-#: ../../mod/dfrn_request.php:501
-msgid "Invalid profile URL."
-msgstr "URL de profil invalide."
+#: ../../mod/contacts.php:398
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Vous partagez avec %s"
 
-#: ../../mod/dfrn_request.php:507 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "URL de profil interdite."
+#: ../../mod/contacts.php:403
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s partage avec vous"
 
-#: ../../mod/dfrn_request.php:597
-msgid "Your introduction has been sent."
-msgstr "Votre introduction a été envoyée."
+#: ../../mod/contacts.php:423
+msgid "Private communications are not available for this contact."
+msgstr "Les communications privées ne sont pas disponibles pour ce contact."
 
-#: ../../mod/dfrn_request.php:650
-msgid "Please login to confirm introduction."
-msgstr "Connectez-vous pour confirmer l'introduction."
+#: ../../mod/contacts.php:426 ../../mod/admin.php:569
+msgid "Never"
+msgstr "Jamais"
 
-#: ../../mod/dfrn_request.php:660
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil."
+#: ../../mod/contacts.php:430
+msgid "(Update was successful)"
+msgstr "(Mise à jour effectuée avec succès)"
 
-#: ../../mod/dfrn_request.php:671
-msgid "Hide this contact"
-msgstr "Cacher ce contact"
+#: ../../mod/contacts.php:430
+msgid "(Update was not successful)"
+msgstr "(Mise à jour échouée)"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bienvenue chez vous, %s."
+#: ../../mod/contacts.php:432
+msgid "Suggest friends"
+msgstr "Suggérer amitié/contact"
 
-#: ../../mod/dfrn_request.php:675
+#: ../../mod/contacts.php:436
 #, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
-
-#: ../../mod/dfrn_request.php:676
-msgid "Confirm"
-msgstr "Confirmer"
+msgid "Network type: %s"
+msgstr "Type de réseau %s"
 
-#: ../../mod/dfrn_request.php:804
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"
+#: ../../mod/contacts.php:444
+msgid "View all contacts"
+msgstr "Voir tous les contacts"
 
-#: ../../mod/dfrn_request.php:824
-msgid ""
-"If you are not yet a member of the free social web, <a "
-"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
-" Friendica site and join us today</a>."
-msgstr "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>."
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1009
+msgid "Unblock"
+msgstr "Débloquer"
 
-#: ../../mod/dfrn_request.php:827
-msgid "Friend/Connection Request"
-msgstr "Requête de relation/amitié"
+#: ../../mod/contacts.php:449 ../../mod/contacts.php:518
+#: ../../mod/contacts.php:730 ../../mod/admin.php:1008
+msgid "Block"
+msgstr "Bloquer"
 
-#: ../../mod/dfrn_request.php:828
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../mod/contacts.php:452
+msgid "Toggle Blocked status"
+msgstr "(dés)activer l'état \"bloqué\""
 
-#: ../../mod/dfrn_request.php:829
-msgid "Please answer the following:"
-msgstr "Merci de répondre à ce qui suit:"
+#: ../../mod/contacts.php:455 ../../mod/contacts.php:519
+#: ../../mod/contacts.php:731
+msgid "Unignore"
+msgstr "Ne plus ignorer"
 
-#: ../../mod/dfrn_request.php:830
-#, php-format
-msgid "Does %s know you?"
-msgstr "Est-ce que %s vous connaît?"
+#: ../../mod/contacts.php:458
+msgid "Toggle Ignored status"
+msgstr "(dés)activer l'état \"ignoré\""
 
-#: ../../mod/dfrn_request.php:834
-msgid "Add a personal note:"
-msgstr "Ajouter une note personnelle:"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Unarchive"
+msgstr "Désarchiver"
 
-#: ../../mod/dfrn_request.php:836 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/contacts.php:462 ../../mod/contacts.php:732
+msgid "Archive"
+msgstr "Archiver"
 
-#: ../../mod/dfrn_request.php:837
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../mod/contacts.php:465
+msgid "Toggle Archive status"
+msgstr "(dés)activer l'état \"archivé\""
 
-#: ../../mod/dfrn_request.php:839
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora."
+#: ../../mod/contacts.php:468
+msgid "Repair"
+msgstr "Réparer"
 
-#: ../../mod/dfrn_request.php:840
-msgid "Your Identity Address:"
-msgstr "Votre adresse d'identité:"
+#: ../../mod/contacts.php:471
+msgid "Advanced Contact Settings"
+msgstr "Réglages avancés du contact"
 
-#: ../../mod/dfrn_request.php:843
-msgid "Submit Request"
-msgstr "Envoyer la requête"
+#: ../../mod/contacts.php:477
+msgid "Communications lost with this contact!"
+msgstr "Communications perdues avec ce contact !"
 
-#: ../../mod/register.php:90
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
+#: ../../mod/contacts.php:480
+msgid "Fetch further information for feeds"
+msgstr "Chercher plus d'informations pour les flux"
 
-#: ../../mod/register.php:96
-#, php-format
-msgid ""
-"Failed to send email message. Here your accout details:<br> login: %s<br> "
-"password: %s<br><br>You can change your password after login."
-msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté."
+#: ../../mod/contacts.php:481
+msgid "Disabled"
+msgstr "Désactivé"
 
-#: ../../mod/register.php:105
-msgid "Your registration can not be processed."
-msgstr "Votre inscription ne peut être traitée."
+#: ../../mod/contacts.php:481
+msgid "Fetch information"
+msgstr "Récupérer informations"
 
-#: ../../mod/register.php:148
-msgid "Your registration is pending approval by the site owner."
-msgstr "Votre inscription attend une validation du propriétaire du site."
+#: ../../mod/contacts.php:481
+msgid "Fetch information and keywords"
+msgstr "Récupérer informations"
 
-#: ../../mod/register.php:186 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
+#: ../../mod/contacts.php:490
+msgid "Contact Editor"
+msgstr "Éditeur de contact"
 
-#: ../../mod/register.php:214
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
+#: ../../mod/contacts.php:493
+msgid "Profile Visibility"
+msgstr "Visibilité du profil"
 
-#: ../../mod/register.php:215
+#: ../../mod/contacts.php:494
+#, php-format
 msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée."
 
-#: ../../mod/register.php:216
-msgid "Your OpenID (optional): "
-msgstr "Votre OpenID (facultatif): "
+#: ../../mod/contacts.php:495
+msgid "Contact Information / Notes"
+msgstr "Informations de contact / Notes"
 
-#: ../../mod/register.php:230
-msgid "Include your profile in member directory?"
-msgstr "Inclure votre profil dans l'annuaire des membres?"
+#: ../../mod/contacts.php:496
+msgid "Edit contact notes"
+msgstr "Éditer les notes des contacts"
 
-#: ../../mod/register.php:251
-msgid "Membership on this site is by invitation only."
-msgstr "L'inscription à ce site se fait uniquement sur invitation."
+#: ../../mod/contacts.php:501 ../../mod/contacts.php:695
+#: ../../mod/nogroup.php:40 ../../mod/viewcontacts.php:64
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visiter le profil de %s [%s]"
 
-#: ../../mod/register.php:252
-msgid "Your invitation ID: "
-msgstr "Votre ID d'invitation: "
+#: ../../mod/contacts.php:502
+msgid "Block/Unblock contact"
+msgstr "Bloquer/débloquer ce contact"
 
-#: ../../mod/register.php:263
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Votre nom complet (p.ex. Michel Dupont): "
+#: ../../mod/contacts.php:503
+msgid "Ignore contact"
+msgstr "Ignorer ce contact"
 
-#: ../../mod/register.php:264
-msgid "Your Email Address: "
-msgstr "Votre adresse courriel: "
+#: ../../mod/contacts.php:504
+msgid "Repair URL settings"
+msgstr "Réglages de réparation des URL"
 
-#: ../../mod/register.php:265
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be "
-"'<strong>nickname@$sitename</strong>'."
-msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@$sitename&lt;/strong&gt;'."
+#: ../../mod/contacts.php:505
+msgid "View conversations"
+msgstr "Voir les conversations"
 
-#: ../../mod/register.php:266
-msgid "Choose a nickname: "
-msgstr "Choisir un pseudo: "
+#: ../../mod/contacts.php:507
+msgid "Delete contact"
+msgstr "Effacer ce contact"
 
-#: ../../mod/register.php:269 ../../boot.php:1241 ../../include/nav.php:109
-msgid "Register"
-msgstr "S'inscrire"
+#: ../../mod/contacts.php:511
+msgid "Last update:"
+msgstr "Dernière mise-à-jour :"
 
-#: ../../mod/register.php:275 ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Importer"
+#: ../../mod/contacts.php:513
+msgid "Update public posts"
+msgstr "Mettre à jour les publications publiques:"
 
-#: ../../mod/register.php:276
-msgid "Import your profile to this friendica instance"
-msgstr "Importer votre profile dans cette instance de friendica"
+#: ../../mod/contacts.php:515 ../../mod/admin.php:1503
+msgid "Update now"
+msgstr "Mettre à jour"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "Système indisponible pour cause de maintenance"
+#: ../../mod/contacts.php:522
+msgid "Currently blocked"
+msgstr "Actuellement bloqué"
 
-#: ../../mod/search.php:99 ../../include/text.php:953
-#: ../../include/text.php:954 ../../include/nav.php:119
-msgid "Search"
-msgstr "Recherche"
+#: ../../mod/contacts.php:523
+msgid "Currently ignored"
+msgstr "Actuellement ignoré"
 
-#: ../../mod/directory.php:51 ../../view/theme/diabook/theme.php:525
-msgid "Global Directory"
-msgstr "Annuaire global"
+#: ../../mod/contacts.php:524
+msgid "Currently archived"
+msgstr "Actuellement archivé"
 
-#: ../../mod/directory.php:59
-msgid "Find on this site"
-msgstr "Trouver sur ce site"
+#: ../../mod/contacts.php:525
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles"
 
-#: ../../mod/directory.php:62
-msgid "Site Directory"
-msgstr "Annuaire local"
+#: ../../mod/contacts.php:526
+msgid "Notification for new posts"
+msgstr "Notification des nouvelles publications"
 
-#: ../../mod/directory.php:113 ../../mod/profiles.php:750
-msgid "Age: "
-msgstr "Age: "
+#: ../../mod/contacts.php:526
+msgid "Send a notification of every new post of this contact"
+msgstr "Envoyer une notification de chaque nouveau message en provenance de ce contact"
 
-#: ../../mod/directory.php:116
-msgid "Gender: "
-msgstr "Genre: "
+#: ../../mod/contacts.php:529
+msgid "Blacklisted keywords"
+msgstr "Mots-clés sur la liste noire"
 
-#: ../../mod/directory.php:138 ../../boot.php:1650
-#: ../../include/profile_advanced.php:17
-msgid "Gender:"
-msgstr "Genre:"
+#: ../../mod/contacts.php:529
+msgid ""
+"Comma separated list of keywords that should not be converted to hashtags, "
+"when \"Fetch information and keywords\" is selected"
+msgstr "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné."
 
-#: ../../mod/directory.php:140 ../../boot.php:1653
-#: ../../include/profile_advanced.php:37
-msgid "Status:"
-msgstr "Statut:"
+#: ../../mod/contacts.php:580
+msgid "Suggestions"
+msgstr "Suggestions"
 
-#: ../../mod/directory.php:142 ../../boot.php:1655
-#: ../../include/profile_advanced.php:48
-msgid "Homepage:"
-msgstr "Page personnelle:"
+#: ../../mod/contacts.php:583
+msgid "Suggest potential friends"
+msgstr "Suggérer des amis potentiels"
 
-#: ../../mod/directory.php:144 ../../boot.php:1657
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "À propos:"
+#: ../../mod/contacts.php:589
+msgid "Show all contacts"
+msgstr "Montrer tous les contacts"
 
-#: ../../mod/directory.php:189
-msgid "No entries (some entries may be hidden)."
-msgstr "Aucune entrée (certaines peuvent être cachées)."
+#: ../../mod/contacts.php:592
+msgid "Unblocked"
+msgstr "Non-bloqués"
 
-#: ../../mod/delegate.php:101
-msgid "No potential page delegates located."
-msgstr "Pas de délégataire potentiel."
+#: ../../mod/contacts.php:595
+msgid "Only show unblocked contacts"
+msgstr "Ne montrer que les contacts non-bloqués"
 
-#: ../../mod/delegate.php:130 ../../include/nav.php:170
-msgid "Delegate Page Management"
-msgstr "Déléguer la gestion de la page"
+#: ../../mod/contacts.php:599
+msgid "Blocked"
+msgstr "Bloqués"
 
-#: ../../mod/delegate.php:132
-msgid ""
-"Delegates are able to manage all aspects of this account/page except for "
-"basic account settings. Please do not delegate your personal account to "
-"anybody that you do not trust completely."
-msgstr "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue."
+#: ../../mod/contacts.php:602
+msgid "Only show blocked contacts"
+msgstr "Ne montrer que les contacts bloqués"
 
-#: ../../mod/delegate.php:133
-msgid "Existing Page Managers"
-msgstr "Gestionnaires existants"
+#: ../../mod/contacts.php:606
+msgid "Ignored"
+msgstr "Ignorés"
 
-#: ../../mod/delegate.php:135
-msgid "Existing Page Delegates"
-msgstr "Délégataires existants"
+#: ../../mod/contacts.php:609
+msgid "Only show ignored contacts"
+msgstr "Ne montrer que les contacts ignorés"
 
-#: ../../mod/delegate.php:137
-msgid "Potential Delegates"
-msgstr "Délégataires potentiels"
+#: ../../mod/contacts.php:613
+msgid "Archived"
+msgstr "Archivés"
 
-#: ../../mod/delegate.php:140
-msgid "Add"
-msgstr "Ajouter"
+#: ../../mod/contacts.php:616
+msgid "Only show archived contacts"
+msgstr "Ne montrer que les contacts archivés"
 
-#: ../../mod/delegate.php:141
-msgid "No entries."
-msgstr "Aucune entrée."
+#: ../../mod/contacts.php:620
+msgid "Hidden"
+msgstr "Cachés"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amis communs"
+#: ../../mod/contacts.php:623
+msgid "Only show hidden contacts"
+msgstr "Ne montrer que les contacts masqués"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Pas de contacts en commun."
+#: ../../mod/contacts.php:671
+msgid "Mutual Friendship"
+msgstr "Relation réciproque"
+
+#: ../../mod/contacts.php:675
+msgid "is a fan of yours"
+msgstr "Vous suit"
+
+#: ../../mod/contacts.php:679
+msgid "you are a fan of"
+msgstr "Vous le/la suivez"
+
+#: ../../mod/contacts.php:696 ../../mod/nogroup.php:41
+msgid "Edit contact"
+msgstr "Éditer le contact"
+
+#: ../../mod/contacts.php:722
+msgid "Search your contacts"
+msgstr "Rechercher dans vos contacts"
+
+#: ../../mod/contacts.php:723 ../../mod/directory.php:61
+msgid "Finding: "
+msgstr "Trouvé: "
+
+#: ../../mod/wall_attach.php:75
+msgid "Sorry, maybe your upload is bigger than the PHP configuration allows"
+msgstr "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise"
+
+#: ../../mod/wall_attach.php:75
+msgid "Or - did you try to upload an empty file?"
+msgstr "Ou — auriez-vous essayé de télécharger un fichier vide ?"
+
+#: ../../mod/wall_attach.php:81
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "La taille du fichier dépasse la limite de %d"
+
+#: ../../mod/wall_attach.php:122 ../../mod/wall_attach.php:133
+msgid "File upload failed."
+msgstr "Le téléversement a échoué."
+
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:25
+#: ../../mod/update_notes.php:37 ../../mod/update_display.php:22
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr "[contenu incorporé - rechargez la page pour le voir]"
 
 #: ../../mod/uexport.php:77
 msgid "Export account"
@@ -4647,3236 +4548,3388 @@ msgid ""
 "of your account (photos are not exported)"
 msgstr "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos)."
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s est d'humeur %2$s"
+#: ../../mod/register.php:90
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Inscription réussie. Vérifiez vos emails pour la suite des instructions."
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Humeur"
+#: ../../mod/register.php:96
+#, php-format
+msgid ""
+"Failed to send email message. Here your accout details:<br> login: %s<br> "
+"password: %s<br><br>You can change your password after login."
+msgstr "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté."
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Spécifiez votre humeur du moment, et informez vos amis"
+#: ../../mod/register.php:105
+msgid "Your registration can not be processed."
+msgstr "Votre inscription ne peut être traitée."
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
+#: ../../mod/register.php:148
+msgid "Your registration is pending approval by the site owner."
+msgstr "Votre inscription attend une validation du propriétaire du site."
 
-#: ../../mod/suggest.php:68 ../../include/contact_widgets.php:35
-#: ../../view/theme/diabook/theme.php:527
-msgid "Friend Suggestions"
-msgstr "Suggestions d'amitiés/contacts"
+#: ../../mod/register.php:186 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain."
 
-#: ../../mod/suggest.php:74
+#: ../../mod/register.php:214
 msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\"."
 
-#: ../../mod/suggest.php:92
-msgid "Ignore/Hide"
-msgstr "Ignorer/cacher"
+#: ../../mod/register.php:215
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste."
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil supprimé."
+#: ../../mod/register.php:216
+msgid "Your OpenID (optional): "
+msgstr "Votre OpenID (facultatif): "
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/register.php:230
+msgid "Include your profile in member directory?"
+msgstr "Inclure votre profil dans l'annuaire des membres?"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Nouveau profil créé."
+#: ../../mod/register.php:251
+msgid "Membership on this site is by invitation only."
+msgstr "L'inscription à ce site se fait uniquement sur invitation."
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Ce profil ne peut être cloné."
+#: ../../mod/register.php:252
+msgid "Your invitation ID: "
+msgstr "Votre ID d'invitation: "
 
-#: ../../mod/profiles.php:189
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: ../../mod/register.php:255 ../../mod/admin.php:621
+msgid "Registration"
+msgstr "Inscription"
 
-#: ../../mod/profiles.php:340
-msgid "Marital Status"
-msgstr "Statut marital"
+#: ../../mod/register.php:263
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Votre nom complet (p.ex. Michel Dupont): "
 
-#: ../../mod/profiles.php:344
-msgid "Romantic Partner"
-msgstr "Partenaire/conjoint"
+#: ../../mod/register.php:264
+msgid "Your Email Address: "
+msgstr "Votre adresse courriel: "
 
-#: ../../mod/profiles.php:348
-msgid "Likes"
-msgstr "Derniers \"J'aime\""
+#: ../../mod/register.php:265
+msgid ""
+"Choose a profile nickname. This must begin with a text character. Your "
+"profile address on this site will then be "
+"'<strong>nickname@$sitename</strong>'."
+msgstr "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@$sitename&lt;/strong&gt;'."
 
-#: ../../mod/profiles.php:352
-msgid "Dislikes"
-msgstr "Derniers \"Je n'aime pas\""
+#: ../../mod/register.php:266
+msgid "Choose a nickname: "
+msgstr "Choisir un pseudo: "
 
-#: ../../mod/profiles.php:356
-msgid "Work/Employment"
-msgstr "Travail/Occupation"
+#: ../../mod/register.php:275 ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importer"
 
-#: ../../mod/profiles.php:359
-msgid "Religion"
-msgstr "Religion"
+#: ../../mod/register.php:276
+msgid "Import your profile to this friendica instance"
+msgstr "Importer votre profile dans cette instance de friendica"
 
-#: ../../mod/profiles.php:363
-msgid "Political Views"
-msgstr "Tendance politique"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Publication réussie."
 
-#: ../../mod/profiles.php:367
-msgid "Gender"
-msgstr "Sexe"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Système indisponible pour cause de maintenance"
 
-#: ../../mod/profiles.php:371
-msgid "Sexual Preference"
-msgstr "Préférence sexuelle"
+#: ../../mod/profile.php:155 ../../mod/display.php:332
+msgid "Access to this profile has been restricted."
+msgstr "L'accès au profil a été restreint."
 
-#: ../../mod/profiles.php:375
-msgid "Homepage"
-msgstr "Site internet"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Conseils aux nouveaux venus"
 
-#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
-msgid "Interests"
-msgstr "Centres d'intérêt"
+#: ../../mod/videos.php:115 ../../mod/dfrn_request.php:762
+#: ../../mod/viewcontacts.php:19 ../../mod/photos.php:920
+#: ../../mod/search.php:89 ../../mod/community.php:18
+#: ../../mod/display.php:212 ../../mod/directory.php:33
+msgid "Public access denied."
+msgstr "Accès public refusé."
 
-#: ../../mod/profiles.php:383
-msgid "Address"
-msgstr "Adresse"
+#: ../../mod/videos.php:125
+msgid "No videos selected"
+msgstr "Pas de vidéo sélectionné"
 
-#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
-msgid "Location"
-msgstr "Localisation"
+#: ../../mod/videos.php:226 ../../mod/photos.php:1031
+msgid "Access to this item is restricted."
+msgstr "Accès restreint à cet élément."
 
-#: ../../mod/profiles.php:473
-msgid "Profile updated."
-msgstr "Profil mis à jour."
+#: ../../mod/videos.php:308 ../../mod/photos.php:1808
+msgid "View Album"
+msgstr "Voir l'album"
 
-#: ../../mod/profiles.php:568
-msgid " and "
-msgstr " et "
+#: ../../mod/videos.php:317
+msgid "Recent Videos"
+msgstr "Vidéos récente"
 
-#: ../../mod/profiles.php:576
-msgid "public profile"
-msgstr "profil public"
+#: ../../mod/videos.php:319
+msgid "Upload New Videos"
+msgstr "Téléversé une nouvelle vidéo"
 
-#: ../../mod/profiles.php:579
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gérer les identités et/ou les pages"
 
-#: ../../mod/profiles.php:580
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr "Visiter le %2$s de %1$s"
-
-#: ../../mod/profiles.php:583
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
-
-#: ../../mod/profiles.php:658
-msgid "Hide contacts and friends:"
-msgstr "Cacher mes contacts et amis:"
+#: ../../mod/manage.php:107
+msgid ""
+"Toggle between different identities or community/group pages which share "
+"your account details or which you have been granted \"manage\" permissions"
+msgstr "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer."
 
-#: ../../mod/profiles.php:663
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Cacher ma liste d'amis/contacts des visiteurs de ce profil?"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Choisir une identité à gérer: "
 
-#: ../../mod/profiles.php:685
-msgid "Edit Profile Details"
-msgstr "Éditer les détails du profil"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Élément introuvable"
 
-#: ../../mod/profiles.php:687
-msgid "Change Profile Photo"
-msgstr "Changer la photo du profil"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Éditer la publication"
 
-#: ../../mod/profiles.php:688
-msgid "View this profile"
-msgstr "Voir ce profil"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Recherche de personnes"
 
-#: ../../mod/profiles.php:689
-msgid "Create a new profile using these settings"
-msgstr "Créer un nouveau profil en utilisant ces réglages"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Aucune correspondance"
 
-#: ../../mod/profiles.php:690
-msgid "Clone this profile"
-msgstr "Cloner ce profil"
+#: ../../mod/regmod.php:55
+msgid "Account approved."
+msgstr "Inscription validée."
 
-#: ../../mod/profiles.php:691
-msgid "Delete this profile"
-msgstr "Supprimer ce profil"
+#: ../../mod/regmod.php:92
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Inscription révoquée pour %s"
 
-#: ../../mod/profiles.php:692
-msgid "Basic information"
-msgstr "Information de base"
+#: ../../mod/regmod.php:104
+msgid "Please login."
+msgstr "Merci de vous connecter."
 
-#: ../../mod/profiles.php:693
-msgid "Profile picture"
-msgstr "Image de profil"
+#: ../../mod/dfrn_request.php:95
+msgid "This introduction has already been accepted."
+msgstr "Cette introduction a déjà été acceptée."
 
-#: ../../mod/profiles.php:695
-msgid "Preferences"
-msgstr "Préférences"
+#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:518
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "L'emplacement du profil est invalide ou ne contient pas de profil valide."
 
-#: ../../mod/profiles.php:696
-msgid "Status information"
-msgstr "Information sur le statut"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:523
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Attention: l'emplacement du profil n'a pas de nom identifiable."
 
-#: ../../mod/profiles.php:697
-msgid "Additional information"
-msgstr "Information additionnelle"
+#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:525
+msgid "Warning: profile location has no profile photo."
+msgstr "Attention: l'emplacement du profil n'a pas de photo de profil."
 
-#: ../../mod/profiles.php:700
-msgid "Profile Name:"
-msgstr "Nom du profil:"
+#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:528
+#, php-format
+msgid "%d required parameter was not found at the given location"
+msgid_plural "%d required parameters were not found at the given location"
+msgstr[0] "%d paramètre requis n'a pas été trouvé à l'endroit indiqué"
+msgstr[1] "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué"
 
-#: ../../mod/profiles.php:701
-msgid "Your Full Name:"
-msgstr "Votre nom complet:"
+#: ../../mod/dfrn_request.php:172
+msgid "Introduction complete."
+msgstr "Phase d'introduction achevée."
 
-#: ../../mod/profiles.php:702
-msgid "Title/Description:"
-msgstr "Titre/Description:"
+#: ../../mod/dfrn_request.php:214
+msgid "Unrecoverable protocol error."
+msgstr "Erreur de protocole non-récupérable."
 
-#: ../../mod/profiles.php:703
-msgid "Your Gender:"
-msgstr "Votre genre:"
+#: ../../mod/dfrn_request.php:242
+msgid "Profile unavailable."
+msgstr "Profil indisponible."
 
-#: ../../mod/profiles.php:704
+#: ../../mod/dfrn_request.php:267
 #, php-format
-msgid "Birthday (%s):"
-msgstr "Anniversaire (%s):"
-
-#: ../../mod/profiles.php:705
-msgid "Street Address:"
-msgstr "Adresse postale:"
+msgid "%s has received too many connection requests today."
+msgstr "%s a reçu trop de demandes d'introduction aujourd'hui."
 
-#: ../../mod/profiles.php:706
-msgid "Locality/City:"
-msgstr "Ville/Localité:"
+#: ../../mod/dfrn_request.php:268
+msgid "Spam protection measures have been invoked."
+msgstr "Des mesures de protection contre le spam ont été déclenchées."
 
-#: ../../mod/profiles.php:707
-msgid "Postal/Zip Code:"
-msgstr "Code postal:"
+#: ../../mod/dfrn_request.php:269
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Les relations sont encouragées à attendre 24 heures pour recommencer."
 
-#: ../../mod/profiles.php:708
-msgid "Country:"
-msgstr "Pays:"
+#: ../../mod/dfrn_request.php:331
+msgid "Invalid locator"
+msgstr "Localisateur invalide"
 
-#: ../../mod/profiles.php:709
-msgid "Region/State:"
-msgstr "Région/État:"
+#: ../../mod/dfrn_request.php:340
+msgid "Invalid email address."
+msgstr "Adresse courriel invalide."
 
-#: ../../mod/profiles.php:710
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Statut marital:"
+#: ../../mod/dfrn_request.php:367
+msgid "This account has not been configured for email. Request failed."
+msgstr "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée."
 
-#: ../../mod/profiles.php:711
-msgid "Who: (if applicable)"
-msgstr "Qui: (si pertinent)"
+#: ../../mod/dfrn_request.php:463
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossible de résoudre votre nom à l'emplacement fourni."
 
-#: ../../mod/profiles.php:712
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/dfrn_request.php:476
+msgid "You have already introduced yourself here."
+msgstr "Vous vous êtes déjà présenté ici."
 
-#: ../../mod/profiles.php:713
-msgid "Since [date]:"
-msgstr "Depuis [date] :"
+#: ../../mod/dfrn_request.php:480
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Il semblerait que vous soyez déjà ami avec %s."
 
-#: ../../mod/profiles.php:714 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Préférence sexuelle:"
+#: ../../mod/dfrn_request.php:501
+msgid "Invalid profile URL."
+msgstr "URL de profil invalide."
 
-#: ../../mod/profiles.php:715
-msgid "Homepage URL:"
-msgstr "Page personnelle:"
+#: ../../mod/dfrn_request.php:597
+msgid "Your introduction has been sent."
+msgstr "Votre introduction a été envoyée."
 
-#: ../../mod/profiles.php:716 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr " Ville d'origine:"
+#: ../../mod/dfrn_request.php:650
+msgid "Please login to confirm introduction."
+msgstr "Connectez-vous pour confirmer l'introduction."
 
-#: ../../mod/profiles.php:717 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Opinions politiques:"
+#: ../../mod/dfrn_request.php:660
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil."
 
-#: ../../mod/profiles.php:718
-msgid "Religious Views:"
-msgstr "Opinions religieuses:"
+#: ../../mod/dfrn_request.php:671
+msgid "Hide this contact"
+msgstr "Cacher ce contact"
 
-#: ../../mod/profiles.php:719
-msgid "Public Keywords:"
-msgstr "Mots-clés publics:"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bienvenue chez vous, %s."
 
-#: ../../mod/profiles.php:720
-msgid "Private Keywords:"
-msgstr "Mots-clés privés:"
+#: ../../mod/dfrn_request.php:675
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Merci de confirmer votre demande d'introduction auprès de %s."
 
-#: ../../mod/profiles.php:721 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "J'aime :"
+#: ../../mod/dfrn_request.php:804
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:"
 
-#: ../../mod/profiles.php:722 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "Je n'aime pas :"
+#: ../../mod/dfrn_request.php:824
+msgid ""
+"If you are not yet a member of the free social web, <a "
+"href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public"
+" Friendica site and join us today</a>."
+msgstr "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>."
 
-#: ../../mod/profiles.php:723
-msgid "Example: fishing photography software"
-msgstr "Exemple: football dessin programmation"
+#: ../../mod/dfrn_request.php:827
+msgid "Friend/Connection Request"
+msgstr "Requête de relation/amitié"
 
-#: ../../mod/profiles.php:724
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
+#: ../../mod/dfrn_request.php:828
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../mod/profiles.php:725
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
+#: ../../mod/dfrn_request.php:829
+msgid "Please answer the following:"
+msgstr "Merci de répondre à ce qui suit:"
 
-#: ../../mod/profiles.php:726
-msgid "Tell us about yourself..."
-msgstr "Parlez-nous de vous..."
+#: ../../mod/dfrn_request.php:830
+#, php-format
+msgid "Does %s know you?"
+msgstr "Est-ce que %s vous connaît?"
 
-#: ../../mod/profiles.php:727
-msgid "Hobbies/Interests"
-msgstr "Passe-temps/Centres d'intérêt"
+#: ../../mod/dfrn_request.php:834
+msgid "Add a personal note:"
+msgstr "Ajouter une note personnelle:"
 
-#: ../../mod/profiles.php:728
-msgid "Contact information and Social Networks"
-msgstr "Coordonnées/Réseaux sociaux"
+#: ../../mod/dfrn_request.php:837
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../mod/profiles.php:729
-msgid "Musical interests"
-msgstr "Goûts musicaux"
+#: ../../mod/dfrn_request.php:839
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora."
 
-#: ../../mod/profiles.php:730
-msgid "Books, literature"
-msgstr "Lectures"
+#: ../../mod/dfrn_request.php:840
+msgid "Your Identity Address:"
+msgstr "Votre adresse d'identité:"
 
-#: ../../mod/profiles.php:731
-msgid "Television"
-msgstr "Télévision"
+#: ../../mod/dfrn_request.php:843
+msgid "Submit Request"
+msgstr "Envoyer la requête"
 
-#: ../../mod/profiles.php:732
-msgid "Film/dance/culture/entertainment"
-msgstr "Cinéma/Danse/Culture/Divertissement"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Fichiers"
 
-#: ../../mod/profiles.php:733
-msgid "Love/romance"
-msgstr "Amour/Romance"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoriser l'application à se connecter"
 
-#: ../../mod/profiles.php:734
-msgid "Work/employment"
-msgstr "Activité professionnelle/Occupation"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
 
-#: ../../mod/profiles.php:735
-msgid "School/education"
-msgstr "Études/Formation"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Merci de vous connecter pour continuer."
 
-#: ../../mod/profiles.php:740
+#: ../../mod/api.php:104
 msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
 
-#: ../../mod/profiles.php:803
-msgid "Edit/Manage Profiles"
-msgstr "Editer/gérer les profils"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Voulez-vous vraiment supprimer cette suggestion ?"
 
-#: ../../mod/profiles.php:804 ../../boot.php:1611 ../../boot.php:1637
-msgid "Change profile photo"
-msgstr "Changer de photo de profil"
+#: ../../mod/suggest.php:74
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h."
 
-#: ../../mod/profiles.php:805 ../../boot.php:1612
-msgid "Create New Profile"
-msgstr "Créer un nouveau profil"
+#: ../../mod/suggest.php:92
+msgid "Ignore/Hide"
+msgstr "Ignorer/cacher"
 
-#: ../../mod/profiles.php:816 ../../boot.php:1622
-msgid "Profile Image"
-msgstr "Image du profil"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contacts qui n’appartiennent à aucun groupe"
 
-#: ../../mod/profiles.php:818 ../../boot.php:1625
-msgid "visible to everybody"
-msgstr "visible par tous"
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/crepair.php:133 ../../mod/dfrn_confirm.php:120
+msgid "Contact not found."
+msgstr "Contact introuvable."
 
-#: ../../mod/profiles.php:819 ../../boot.php:1626
-msgid "Edit visibility"
-msgstr "Changer la visibilité"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggestion d'amitié/contact envoyée."
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Élément introuvable"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggérer des amis/contacts"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Éditer la publication"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggérer un ami/contact pour %s"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1092
-msgid "upload photo"
-msgstr "envoi image"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "lien"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1093
-msgid "Attach file"
-msgstr "Joindre fichier"
+#: ../../mod/viewcontacts.php:41
+msgid "No contacts."
+msgstr "Aucun contact."
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1094
-msgid "attach file"
-msgstr "ajout fichier"
+#: ../../mod/admin.php:57
+msgid "Theme settings updated."
+msgstr "Réglages du thème sauvés."
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1096
-msgid "web link"
-msgstr "lien web"
+#: ../../mod/admin.php:104 ../../mod/admin.php:619
+msgid "Site"
+msgstr "Site"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1097
-msgid "Insert video link"
-msgstr "Insérer un lien video"
+#: ../../mod/admin.php:105 ../../mod/admin.php:998 ../../mod/admin.php:1013
+msgid "Users"
+msgstr "Utilisateurs"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1098
-msgid "video link"
-msgstr "lien vidéo"
+#: ../../mod/admin.php:107 ../../mod/admin.php:1323 ../../mod/admin.php:1357
+msgid "Themes"
+msgstr "Thèmes"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1099
-msgid "Insert audio link"
-msgstr "Insérer un lien audio"
+#: ../../mod/admin.php:108
+msgid "DB updates"
+msgstr "Mise-à-jour de la base"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1100
-msgid "audio link"
-msgstr "lien audio"
+#: ../../mod/admin.php:123 ../../mod/admin.php:132 ../../mod/admin.php:1444
+msgid "Logs"
+msgstr "Journaux"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1101
-msgid "Set your location"
-msgstr "Définir votre localisation"
+#: ../../mod/admin.php:124
+msgid "probe address"
+msgstr ""
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1102
-msgid "set location"
-msgstr "spéc. localisation"
+#: ../../mod/admin.php:125
+msgid "check webfinger"
+msgstr ""
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1103
-msgid "Clear browser location"
-msgstr "Effacer la localisation du navigateur"
+#: ../../mod/admin.php:131
+msgid "Plugin Features"
+msgstr "Propriétés des extensions"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1104
-msgid "clear location"
-msgstr "supp. localisation"
+#: ../../mod/admin.php:133
+msgid "diagnostics"
+msgstr ""
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1110
-msgid "Permission settings"
-msgstr "Réglages des permissions"
+#: ../../mod/admin.php:134
+msgid "User registrations waiting for confirmation"
+msgstr "Inscriptions en attente de confirmation"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1119
-msgid "CC: email addresses"
-msgstr "CC: adresses de courriel"
+#: ../../mod/admin.php:193 ../../mod/admin.php:952
+msgid "Normal Account"
+msgstr "Compte normal"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1120
-msgid "Public post"
-msgstr "Publication publique"
+#: ../../mod/admin.php:194 ../../mod/admin.php:953
+msgid "Soapbox Account"
+msgstr "Compte \"boîte à savon\""
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1106
-msgid "Set title"
-msgstr "Définir un titre"
+#: ../../mod/admin.php:195 ../../mod/admin.php:954
+msgid "Community/Celebrity Account"
+msgstr "Compte de communauté/célébrité"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1108
-msgid "Categories (comma-separated list)"
-msgstr "Catégories (séparées par des virgules)"
+#: ../../mod/admin.php:196 ../../mod/admin.php:955
+msgid "Automatic Friend Account"
+msgstr "Compte auto-amical"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1122
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Exemple: bob@exemple.com, mary@exemple.com"
+#: ../../mod/admin.php:197
+msgid "Blog Account"
+msgstr "Compte de blog"
 
-#: ../../mod/friendica.php:59
-msgid "This is Friendica, version"
-msgstr "Motorisé par Friendica version"
+#: ../../mod/admin.php:198
+msgid "Private Forum"
+msgstr "Forum privé"
 
-#: ../../mod/friendica.php:60
-msgid "running at web location"
-msgstr "hébergé sur"
+#: ../../mod/admin.php:217
+msgid "Message queues"
+msgstr "Files d'attente des messages"
 
-#: ../../mod/friendica.php:62
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica."
+#: ../../mod/admin.php:222 ../../mod/admin.php:618 ../../mod/admin.php:997
+#: ../../mod/admin.php:1101 ../../mod/admin.php:1154 ../../mod/admin.php:1322
+#: ../../mod/admin.php:1356 ../../mod/admin.php:1443
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../mod/friendica.php:64
-msgid "Bug reports and issues: please visit"
-msgstr "Pour les rapports de bugs: rendez vous sur"
+#: ../../mod/admin.php:223
+msgid "Summary"
+msgstr "Résumé"
 
-#: ../../mod/friendica.php:65
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
+#: ../../mod/admin.php:225
+msgid "Registered users"
+msgstr "Utilisateurs inscrits"
 
-#: ../../mod/friendica.php:79
-msgid "Installed plugins/addons/apps:"
-msgstr "Extensions/greffons/applications installées:"
+#: ../../mod/admin.php:227
+msgid "Pending registrations"
+msgstr "Inscriptions en attente"
 
-#: ../../mod/friendica.php:92
-msgid "No installed plugins/addons/apps"
-msgstr "Extensions/greffons/applications non installées:"
+#: ../../mod/admin.php:228
+msgid "Version"
+msgstr "Versio"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoriser l'application à se connecter"
+#: ../../mod/admin.php:232
+msgid "Active plugins"
+msgstr "Extensions activés"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Retournez à votre application et saisissez ce Code de Sécurité : "
+#: ../../mod/admin.php:255
+msgid "Can not parse base url. Must have at least <scheme>://<domain>"
+msgstr "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Merci de vous connecter pour continuer."
+#: ../../mod/admin.php:516
+msgid "Site settings updated."
+msgstr "Réglages du site mis-à-jour."
 
-#: ../../mod/api.php:104
-msgid ""
-"Do you want to authorize this application to access your posts and contacts,"
-" and/or create new posts for you?"
-msgstr "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?"
+#: ../../mod/admin.php:562
+msgid "No community page"
+msgstr ""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informations de confidentialité indisponibles."
+#: ../../mod/admin.php:563
+msgid "Public postings from users of this site"
+msgstr ""
 
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visible par:"
+#: ../../mod/admin.php:564
+msgid "Global community page"
+msgstr ""
 
-#: ../../mod/notes.php:44 ../../boot.php:2150
-msgid "Personal Notes"
-msgstr "Notes personnelles"
+#: ../../mod/admin.php:570
+msgid "At post arrival"
+msgstr "A l'arrivé d'une publication"
 
-#: ../../mod/localtime.php:12 ../../include/bb2diaspora.php:148
-#: ../../include/event.php:11
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../mod/admin.php:579
+msgid "Multi user instance"
+msgstr "Instance multi-utilisateurs"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversion temporelle"
+#: ../../mod/admin.php:602
+msgid "Closed"
+msgstr "Fermé"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
+#: ../../mod/admin.php:603
+msgid "Requires approval"
+msgstr "Demande une apptrobation"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Temps UTC : %s"
+#: ../../mod/admin.php:604
+msgid "Open"
+msgstr "Ouvert"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Zone de temps courante : %s"
+#: ../../mod/admin.php:608
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Pas de politique SSL, le liens conserveront l'état SSL de la page"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Temps local converti : %s"
+#: ../../mod/admin.php:609
+msgid "Force all links to use SSL"
+msgstr "Forcer tous les liens à utiliser SSL"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Sélectionner votre zone :"
+#: ../../mod/admin.php:610
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Solliciter"
+#: ../../mod/admin.php:622
+msgid "File upload"
+msgstr "Téléversement de fichier"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "solliciter (poke/...) quelqu'un"
+#: ../../mod/admin.php:623
+msgid "Policies"
+msgstr "Politiques"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Destinataire"
+#: ../../mod/admin.php:624
+msgid "Advanced"
+msgstr "Avancé"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Choisissez ce que vous voulez faire au destinataire"
+#: ../../mod/admin.php:625
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Rendez ce message privé"
+#: ../../mod/admin.php:626
+msgid ""
+"Relocate - WARNING: advanced function. Could make this server unreachable."
+msgstr "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible."
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "La limite d'invitation totale est éxédée."
+#: ../../mod/admin.php:629
+msgid "Site name"
+msgstr "Nom du site"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Adresse de courriel invalide."
+#: ../../mod/admin.php:630
+msgid "Host name"
+msgstr "Nom de la machine hôte"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Rejoignez-nous sur Friendica"
+#: ../../mod/admin.php:631
+msgid "Sender Email"
+msgstr ""
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
+#: ../../mod/admin.php:632
+msgid "Banner/Logo"
+msgstr "Bannière/Logo"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : L'envoi du message a échoué."
+#: ../../mod/admin.php:633
+msgid "Shortcut icon"
+msgstr ""
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d message envoyé."
-msgstr[1] "%d messages envoyés."
+#: ../../mod/admin.php:634
+msgid "Touch icon"
+msgstr ""
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Vous n'avez plus d'invitations disponibles"
+#: ../../mod/admin.php:635
+msgid "Additional Info"
+msgstr "Informations supplémentaires"
 
-#: ../../mod/invite.php:120
-#, php-format
+#: ../../mod/admin.php:635
 msgid ""
-"Visit %s for a list of public sites that you can join. Friendica members on "
-"other sites can all connect with each other, as well as with members of many"
-" other social networks."
-msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
+"For public servers: you can add additional information here that will be "
+"listed at dir.friendica.com/siteinfo."
+msgstr "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo."
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
+#: ../../mod/admin.php:636
+msgid "System language"
+msgstr "Langue du système"
 
-#: ../../mod/invite.php:123
-#, php-format
-msgid ""
-"Friendica sites all inter-connect to create a huge privacy-enhanced social "
-"web that is owned and controlled by its members. They can also connect with "
-"many traditional social networks. See %s for a list of alternate Friendica "
-"sites you can join."
-msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
+#: ../../mod/admin.php:637
+msgid "System theme"
+msgstr "Thème du système"
 
-#: ../../mod/invite.php:126
+#: ../../mod/admin.php:637
 msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Envoyer des invitations"
+#: ../../mod/admin.php:638
+msgid "Mobile system theme"
+msgstr "Thème mobile"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Entrez les adresses email, une par ligne:"
+#: ../../mod/admin.php:638
+msgid "Theme for mobile devices"
+msgstr "Thème pour les terminaux mobiles"
 
-#: ../../mod/invite.php:135
-msgid ""
-"You are cordially invited to join me and other close friends on Friendica - "
-"and help us to create a better social web."
-msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
+#: ../../mod/admin.php:639
+msgid "SSL link policy"
+msgstr "Politique SSL pour les liens"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Vous devrez fournir ce code d'invitation: $invite_code"
+#: ../../mod/admin.php:639
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Détermine si les liens générés doivent forcer l'utilisation de SSL"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur:"
+#: ../../mod/admin.php:640
+msgid "Force SSL"
+msgstr "SSL obligatoire"
 
-#: ../../mod/invite.php:139
+#: ../../mod/admin.php:640
 msgid ""
-"For more information about the Friendica project and why we feel it is "
-"important, please visit http://friendica.com"
-msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
+"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
+" to endless loops."
+msgstr "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies."
 
-#: ../../mod/photos.php:52 ../../boot.php:2129
-msgid "Photo Albums"
-msgstr "Albums photo"
+#: ../../mod/admin.php:641
+msgid "Old style 'Share'"
+msgstr "Anciens style 'Partage'"
 
-#: ../../mod/photos.php:60 ../../mod/photos.php:155 ../../mod/photos.php:1064
-#: ../../mod/photos.php:1187 ../../mod/photos.php:1210
-#: ../../mod/photos.php:1760 ../../mod/photos.php:1772
-#: ../../view/theme/diabook/theme.php:499
-msgid "Contact Photos"
-msgstr "Photos du contact"
+#: ../../mod/admin.php:641
+msgid "Deactivates the bbcode element 'share' for repeating items."
+msgstr "Désactive l'élément 'partage' de bbcode pour répéter les articles."
 
-#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
-msgid "Upload New Photos"
-msgstr "Téléverser de nouvelles photos"
+#: ../../mod/admin.php:642
+msgid "Hide help entry from navigation menu"
+msgstr "Cacher l'aide du menu de navigation"
 
-#: ../../mod/photos.php:144
-msgid "Contact information unavailable"
-msgstr "Informations de contact indisponibles"
+#: ../../mod/admin.php:642
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help."
 
-#: ../../mod/photos.php:165
-msgid "Album not found."
-msgstr "Album introuvable."
+#: ../../mod/admin.php:643
+msgid "Single user instance"
+msgstr "Instance mono-utilisateur"
 
-#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
-msgid "Delete Album"
-msgstr "Effacer l'album"
+#: ../../mod/admin.php:643
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur."
 
-#: ../../mod/photos.php:198
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
-
-#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
-msgid "Delete Photo"
-msgstr "Effacer la photo"
+#: ../../mod/admin.php:644
+msgid "Maximum image size"
+msgstr "Taille maximale des images"
 
-#: ../../mod/photos.php:287
-msgid "Do you really want to delete this photo?"
-msgstr "Voulez-vous vraiment supprimer cette photo ?"
+#: ../../mod/admin.php:644
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\"."
 
-#: ../../mod/photos.php:662
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s a été étiqueté dans %2$s par %3$s"
+#: ../../mod/admin.php:645
+msgid "Maximum image length"
+msgstr "Longueur maximale des images"
 
-#: ../../mod/photos.php:662
-msgid "a photo"
-msgstr "une photo"
+#: ../../mod/admin.php:645
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite."
 
-#: ../../mod/photos.php:767
-msgid "Image exceeds size limit of "
-msgstr "L'image dépasse la taille maximale de  "
+#: ../../mod/admin.php:646
+msgid "JPEG image quality"
+msgstr "Qualité JPEG des images"
 
-#: ../../mod/photos.php:775
-msgid "Image file is empty."
-msgstr "Fichier image vide."
+#: ../../mod/admin.php:646
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale."
 
-#: ../../mod/photos.php:930
-msgid "No photos selected"
-msgstr "Aucune photo sélectionnée"
+#: ../../mod/admin.php:648
+msgid "Register policy"
+msgstr "Politique d'inscription"
 
-#: ../../mod/photos.php:1094
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
+#: ../../mod/admin.php:649
+msgid "Maximum Daily Registrations"
+msgstr "Inscriptions maximum par jour"
 
-#: ../../mod/photos.php:1129
-msgid "Upload Photos"
-msgstr "Téléverser des photos"
+#: ../../mod/admin.php:649
+msgid ""
+"If registration is permitted above, this sets the maximum number of new user"
+" registrations to accept per day.  If register is set to closed, this "
+"setting has no effect."
+msgstr "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet."
 
-#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
-msgid "New album name: "
-msgstr "Nom du nouvel album: "
+#: ../../mod/admin.php:650
+msgid "Register text"
+msgstr "Texte d'inscription"
 
-#: ../../mod/photos.php:1134
-msgid "or existing album name: "
-msgstr "ou nom d'un album existant: "
+#: ../../mod/admin.php:650
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sera affiché de manière bien visible sur la page d'accueil."
 
-#: ../../mod/photos.php:1135
-msgid "Do not show a status post for this upload"
-msgstr "Ne pas publier de notice de statut pour cet envoi"
+#: ../../mod/admin.php:651
+msgid "Accounts abandoned after x days"
+msgstr "Les comptes sont abandonnés après x jours"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
-msgid "Permissions"
-msgstr "Permissions"
+#: ../../mod/admin.php:651
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction."
 
-#: ../../mod/photos.php:1148
-msgid "Private Photo"
-msgstr "Photo privée"
+#: ../../mod/admin.php:652
+msgid "Allowed friend domains"
+msgstr "Domaines autorisés"
 
-#: ../../mod/photos.php:1149
-msgid "Public Photo"
-msgstr "Photo publique"
+#: ../../mod/admin.php:652
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines"
 
-#: ../../mod/photos.php:1212
-msgid "Edit Album"
-msgstr "Éditer l'album"
+#: ../../mod/admin.php:653
+msgid "Allowed email domains"
+msgstr "Domaines courriel autorisés"
 
-#: ../../mod/photos.php:1218
-msgid "Show Newest First"
-msgstr "Plus récent d'abord"
+#: ../../mod/admin.php:653
+msgid ""
+"Comma separated list of domains which are allowed in email addresses for "
+"registrations to this site. Wildcards are accepted. Empty to allow any "
+"domains"
+msgstr "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines"
 
-#: ../../mod/photos.php:1220
-msgid "Show Oldest First"
-msgstr "Plus ancien d'abord"
+#: ../../mod/admin.php:654
+msgid "Block public"
+msgstr "Interdire la publication globale"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
-msgid "View Photo"
-msgstr "Voir la photo"
+#: ../../mod/admin.php:654
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques."
 
-#: ../../mod/photos.php:1294
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
+#: ../../mod/admin.php:655
+msgid "Force publish"
+msgstr "Forcer la publication globale"
 
-#: ../../mod/photos.php:1296
-msgid "Photo not available"
-msgstr "Photo indisponible"
+#: ../../mod/admin.php:655
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site."
 
-#: ../../mod/photos.php:1352
-msgid "View photo"
-msgstr "Voir photo"
+#: ../../mod/admin.php:656
+msgid "Global directory update URL"
+msgstr "URL de mise-à-jour de l'annuaire global"
 
-#: ../../mod/photos.php:1352
-msgid "Edit photo"
-msgstr "Éditer la photo"
+#: ../../mod/admin.php:656
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible."
 
-#: ../../mod/photos.php:1353
-msgid "Use as profile photo"
-msgstr "Utiliser comme photo de profil"
+#: ../../mod/admin.php:657
+msgid "Allow threaded items"
+msgstr "autoriser le suivi des éléments par fil conducteur"
 
-#: ../../mod/photos.php:1378
-msgid "View Full Size"
-msgstr "Voir en taille réelle"
+#: ../../mod/admin.php:657
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permettre une imbrication infinie des commentaires."
 
-#: ../../mod/photos.php:1457
-msgid "Tags: "
-msgstr "Étiquettes:"
+#: ../../mod/admin.php:658
+msgid "Private posts by default for new users"
+msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
 
-#: ../../mod/photos.php:1460
-msgid "[Remove any tag]"
-msgstr "[Retirer toutes les étiquettes]"
+#: ../../mod/admin.php:658
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde."
 
-#: ../../mod/photos.php:1500
-msgid "Rotate CW (right)"
-msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
+#: ../../mod/admin.php:659
+msgid "Don't include post content in email notifications"
+msgstr "Ne pas inclure le contenu posté dans l'e-mail de notification"
 
-#: ../../mod/photos.php:1501
-msgid "Rotate CCW (left)"
-msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
+#: ../../mod/admin.php:659
+msgid ""
+"Don't include the content of a post/comment/private message/etc. in the "
+"email notifications that are sent out from this site, as a privacy measure."
+msgstr "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité."
 
-#: ../../mod/photos.php:1503
-msgid "New album name"
-msgstr "Nom du nouvel album"
+#: ../../mod/admin.php:660
+msgid "Disallow public access to addons listed in the apps menu."
+msgstr "Interdire l’accès public pour les greffons listées dans le menu apps."
 
-#: ../../mod/photos.php:1506
-msgid "Caption"
-msgstr "Titre"
+#: ../../mod/admin.php:660
+msgid ""
+"Checking this box will restrict addons listed in the apps menu to members "
+"only."
+msgstr "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres."
 
-#: ../../mod/photos.php:1508
-msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+#: ../../mod/admin.php:661
+msgid "Don't embed private images in posts"
+msgstr "Ne pas miniaturiser les images privées dans les publications"
 
-#: ../../mod/photos.php:1512
+#: ../../mod/admin.php:661
 msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
-
-#: ../../mod/photos.php:1521
-msgid "Private photo"
-msgstr "Photo privée"
+"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 "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps."
 
-#: ../../mod/photos.php:1522
-msgid "Public photo"
-msgstr "Photo publique"
+#: ../../mod/admin.php:662
+msgid "Allow Users to set remote_self"
+msgstr "Autoriser les utilisateurs à définir remote_self"
 
-#: ../../mod/photos.php:1544 ../../include/conversation.php:1090
-msgid "Share"
-msgstr "Partager"
+#: ../../mod/admin.php:662
+msgid ""
+"With checking this, every user is allowed to mark every contact as a "
+"remote_self in the repair contact dialog. Setting this flag on a contact "
+"causes mirroring every posting of that contact in the users stream."
+msgstr "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs."
 
-#: ../../mod/photos.php:1817
-msgid "Recent Photos"
-msgstr "Photos récentes"
+#: ../../mod/admin.php:663
+msgid "Block multiple registrations"
+msgstr "Interdire les inscriptions multiples"
 
-#: ../../mod/regmod.php:55
-msgid "Account approved."
-msgstr "Inscription validée."
-
-#: ../../mod/regmod.php:92
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Inscription révoquée pour %s"
+#: ../../mod/admin.php:663
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Ne pas permettre l'inscription de comptes multiples comme des pages."
 
-#: ../../mod/regmod.php:104
-msgid "Please login."
-msgstr "Merci de vous connecter."
+#: ../../mod/admin.php:664
+msgid "OpenID support"
+msgstr "Support OpenID"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Migrer le compte"
+#: ../../mod/admin.php:664
+msgid "OpenID support for registration and logins."
+msgstr "Supporter OpenID pour les inscriptions et connexions."
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
+#: ../../mod/admin.php:665
+msgid "Fullname check"
+msgstr "Vérification du \"Prénom Nom\""
 
-#: ../../mod/uimport.php:68
+#: ../../mod/admin.php:665
 msgid ""
-"You need to export your account from the old server and upload it here. We "
-"will recreate your old account here with all your contacts. We will try also"
-" to inform your friends that you moved here."
-msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus"
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"
+#: ../../mod/admin.php:666
+msgid "UTF-8 Regular expressions"
+msgstr "Regex UTF-8"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Fichier du compte"
+#: ../../mod/admin.php:666
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Utiliser les expressions rationnelles de PHP en UTF8"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your account, go to \"Settings->Export your personal data\" and "
-"select \"Export account\""
-msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
+#: ../../mod/admin.php:667
+msgid "Community Page Style"
+msgstr ""
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elément non disponible."
+#: ../../mod/admin.php:667
+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/attach.php:20
-msgid "Item was not found."
-msgstr "Element introuvable."
+#: ../../mod/admin.php:668
+msgid "Posts per user on community page"
+msgstr ""
 
-#: ../../boot.php:749
-msgid "Delete this item?"
-msgstr "Effacer cet élément?"
+#: ../../mod/admin.php:668
+msgid ""
+"The maximum number of posts per user on the community page. (Not valid for "
+"'Global Community')"
+msgstr ""
 
-#: ../../boot.php:752
-msgid "show fewer"
-msgstr "montrer moins"
+#: ../../mod/admin.php:669
+msgid "Enable OStatus support"
+msgstr "Activer le support d'OStatus"
 
-#: ../../boot.php:1122
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Mise-à-jour %s échouée. Voir les journaux d'erreur."
+#: ../../mod/admin.php:669
+msgid ""
+"Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile."
 
-#: ../../boot.php:1240
-msgid "Create a New Account"
-msgstr "Créer un nouveau compte"
+#: ../../mod/admin.php:670
+msgid "OStatus conversation completion interval"
+msgstr "Achèvement de l'intervalle de conversation OStatus "
 
-#: ../../boot.php:1265 ../../include/nav.php:73
-msgid "Logout"
-msgstr "Se déconnecter"
+#: ../../mod/admin.php:670
+msgid ""
+"How often shall the poller check for new entries in OStatus conversations? "
+"This can be a very ressource task."
+msgstr "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources."
 
-#: ../../boot.php:1268
-msgid "Nickname or Email address: "
-msgstr "Pseudo ou courriel: "
+#: ../../mod/admin.php:671
+msgid "Enable Diaspora support"
+msgstr "Activer le support de Diaspora"
 
-#: ../../boot.php:1269
-msgid "Password: "
-msgstr "Mot de passe: "
+#: ../../mod/admin.php:671
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fournir une compatibilité Diaspora intégrée."
 
-#: ../../boot.php:1270
-msgid "Remember me"
-msgstr "Se souvenir de moi"
+#: ../../mod/admin.php:672
+msgid "Only allow Friendica contacts"
+msgstr "N'autoriser que les contacts Friendica"
 
-#: ../../boot.php:1273
-msgid "Or login using OpenID: "
-msgstr "Ou connectez-vous via OpenID: "
+#: ../../mod/admin.php:672
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés."
 
-#: ../../boot.php:1279
-msgid "Forgot your password?"
-msgstr "Mot de passe oublié?"
+#: ../../mod/admin.php:673
+msgid "Verify SSL"
+msgstr "Vérifier SSL"
 
-#: ../../boot.php:1282
-msgid "Website Terms of Service"
-msgstr "Conditions d'utilisation du site internet"
+#: ../../mod/admin.php:673
+msgid ""
+"If you wish, you can turn on strict certificate checking. This will mean you"
+" cannot connect (at all) to self-signed SSL sites."
+msgstr "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé."
 
-#: ../../boot.php:1283
-msgid "terms of service"
-msgstr "conditions d'utilisation"
+#: ../../mod/admin.php:674
+msgid "Proxy user"
+msgstr "Utilisateur du proxy"
 
-#: ../../boot.php:1285
-msgid "Website Privacy Policy"
-msgstr "Politique de confidentialité du site internet"
+#: ../../mod/admin.php:675
+msgid "Proxy URL"
+msgstr "URL du proxy"
 
-#: ../../boot.php:1286
-msgid "privacy policy"
-msgstr "politique de confidentialité"
+#: ../../mod/admin.php:676
+msgid "Network timeout"
+msgstr "Dépassement du délai d'attente du réseau"
 
-#: ../../boot.php:1419
-msgid "Requested account is not available."
-msgstr "Le compte demandé n'est pas disponible."
+#: ../../mod/admin.php:676
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé)."
 
-#: ../../boot.php:1501 ../../boot.php:1635
-#: ../../include/profile_advanced.php:84
-msgid "Edit profile"
-msgstr "Editer le profil"
+#: ../../mod/admin.php:677
+msgid "Delivery interval"
+msgstr "Intervalle de transmission"
 
-#: ../../boot.php:1600
-msgid "Message"
-msgstr "Message"
+#: ../../mod/admin.php:677
+msgid ""
+"Delay background delivery processes by this many seconds to reduce system "
+"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 "
+"for large dedicated servers."
+msgstr "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés."
 
-#: ../../boot.php:1606 ../../include/nav.php:175
-msgid "Profiles"
-msgstr "Profils"
+#: ../../mod/admin.php:678
+msgid "Poll interval"
+msgstr "Intervalle de réception"
 
-#: ../../boot.php:1606
-msgid "Manage/edit profiles"
-msgstr "Gérer/éditer les profils"
+#: ../../mod/admin.php:678
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission."
 
-#: ../../boot.php:1706
-msgid "Network:"
-msgstr "Réseau"
+#: ../../mod/admin.php:679
+msgid "Maximum Load Average"
+msgstr "Plafond de la charge moyenne"
 
-#: ../../boot.php:1736 ../../boot.php:1822
-msgid "g A l F d"
-msgstr "g A | F d"
+#: ../../mod/admin.php:679
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50."
 
-#: ../../boot.php:1737 ../../boot.php:1823
-msgid "F d"
-msgstr "F d"
+#: ../../mod/admin.php:681
+msgid "Use MySQL full text engine"
+msgstr "Utiliser le moteur de recherche plein texte de MySQL"
 
-#: ../../boot.php:1782 ../../boot.php:1863
-msgid "[today]"
-msgstr "[aujourd'hui]"
+#: ../../mod/admin.php:681
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus."
 
-#: ../../boot.php:1794
-msgid "Birthday Reminders"
-msgstr "Rappels d'anniversaires"
+#: ../../mod/admin.php:682
+msgid "Suppress Language"
+msgstr "Supprimer un langage"
 
-#: ../../boot.php:1795
-msgid "Birthdays this week:"
-msgstr "Anniversaires cette semaine:"
+#: ../../mod/admin.php:682
+msgid "Suppress language information in meta information about a posting."
+msgstr "Supprimer les informations de langue dans les métadonnées des publications."
 
-#: ../../boot.php:1856
-msgid "[No description]"
-msgstr "[Sans description]"
+#: ../../mod/admin.php:683
+msgid "Suppress Tags"
+msgstr ""
 
-#: ../../boot.php:1874
-msgid "Event Reminders"
-msgstr "Rappels d'événements"
+#: ../../mod/admin.php:683
+msgid "Suppress showing a list of hashtags at the end of the posting."
+msgstr ""
 
-#: ../../boot.php:1875
-msgid "Events this week:"
-msgstr "Evénements cette semaine:"
+#: ../../mod/admin.php:684
+msgid "Path to item cache"
+msgstr "Chemin vers le cache des objets."
 
-#: ../../boot.php:2112 ../../include/nav.php:76
-msgid "Status"
-msgstr "Statut"
+#: ../../mod/admin.php:685
+msgid "Cache duration in seconds"
+msgstr "Durée du cache en secondes"
 
-#: ../../boot.php:2115
-msgid "Status Messages and Posts"
-msgstr "Messages d'état et publications"
+#: ../../mod/admin.php:685
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day). To disable the item cache, set the value to -1."
+msgstr "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1."
 
-#: ../../boot.php:2122
-msgid "Profile Details"
-msgstr "Détails du profil"
+#: ../../mod/admin.php:686
+msgid "Maximum numbers of comments per post"
+msgstr "Nombre maximum de commentaires par publication"
 
-#: ../../boot.php:2133 ../../boot.php:2136 ../../include/nav.php:79
-msgid "Videos"
-msgstr "Vidéos"
+#: ../../mod/admin.php:686
+msgid "How much comments should be shown for each post? Default value is 100."
+msgstr "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100."
 
-#: ../../boot.php:2146
-msgid "Events and Calendar"
-msgstr "Événements et agenda"
+#: ../../mod/admin.php:687
+msgid "Path for lock file"
+msgstr "Chemin vers le ficher de verrouillage"
 
-#: ../../boot.php:2153
-msgid "Only You Can See This"
-msgstr "Vous seul pouvez voir ça"
+#: ../../mod/admin.php:688
+msgid "Temp path"
+msgstr "Chemin des fichiers temporaires"
 
-#: ../../object/Item.php:94
-msgid "This entry was edited"
-msgstr "Cette entrée à été édité"
+#: ../../mod/admin.php:689
+msgid "Base path to installation"
+msgstr "Chemin de base de l'installation"
 
-#: ../../object/Item.php:208
-msgid "ignore thread"
-msgstr "ignorer le fil"
+#: ../../mod/admin.php:690
+msgid "Disable picture proxy"
+msgstr "Désactiver le proxy image "
 
-#: ../../object/Item.php:209
-msgid "unignore thread"
-msgstr "Ne plus ignorer le fil"
+#: ../../mod/admin.php:690
+msgid ""
+"The picture proxy increases performance and privacy. It shouldn't be used on"
+" systems with very low bandwith."
+msgstr "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante."
 
-#: ../../object/Item.php:210
-msgid "toggle ignore status"
-msgstr "Ignorer le statut"
+#: ../../mod/admin.php:691
+msgid "Enable old style pager"
+msgstr ""
 
-#: ../../object/Item.php:213
-msgid "ignored"
-msgstr "ignoré"
+#: ../../mod/admin.php:691
+msgid ""
+"The old style pager has page numbers but slows down massively the page "
+"speed."
+msgstr ""
 
-#: ../../object/Item.php:316 ../../include/conversation.php:666
-msgid "Categories:"
-msgstr "Catégories:"
+#: ../../mod/admin.php:692
+msgid "Only search in tags"
+msgstr ""
 
-#: ../../object/Item.php:317 ../../include/conversation.php:667
-msgid "Filed under:"
-msgstr "Rangé sous:"
+#: ../../mod/admin.php:692
+msgid "On large systems the text search can slow down the system extremely."
+msgstr ""
 
-#: ../../object/Item.php:329
-msgid "via"
-msgstr "via"
+#: ../../mod/admin.php:694
+msgid "New base url"
+msgstr "Nouvelle URL de base"
 
-#: ../../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 "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue."
+#: ../../mod/admin.php:711
+msgid "Update has been marked successful"
+msgstr "Mise-à-jour validée comme 'réussie'"
 
-#: ../../include/dbstructure.php:31
+#: ../../mod/admin.php:719
 #, php-format
-msgid ""
-"The error message is\n"
-"[pre]%s[/pre]"
-msgstr "Le message d’erreur est\n[pre]%s[/pre]"
+msgid "Database structure update %s was successfully applied."
+msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès."
 
-#: ../../include/dbstructure.php:162
-msgid "Errors encountered creating database tables."
-msgstr "Des erreurs ont été signalées lors de la création des tables."
+#: ../../mod/admin.php:722
+#, php-format
+msgid "Executing of database structure update %s failed with error: %s"
+msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s"
 
-#: ../../include/dbstructure.php:220
-msgid "Errors encountered performing database changes."
-msgstr "Des erreurs sont survenues lors de la mise à jour de la base de données."
+#: ../../mod/admin.php:734
+#, php-format
+msgid "Executing %s failed with error: %s"
+msgstr "L'exécution %s a échoué avec l'erreur: %s"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Déconnecté."
+#: ../../mod/admin.php:737
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Mise-à-jour %s appliquée avec succès."
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier."
+#: ../../mod/admin.php:741
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi."
 
-#: ../../include/auth.php:128 ../../include/user.php:67
-msgid "The error message was:"
-msgstr "Le message d'erreur était :"
+#: ../../mod/admin.php:743
+#, php-format
+msgid "There was no additional update function %s that needed to be called."
+msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Ajouter un nouveau contact"
+#: ../../mod/admin.php:762
+msgid "No failed updates."
+msgstr "Pas de mises-à-jour échouées."
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Entrez son adresse ou sa localisation web"
+#: ../../mod/admin.php:763
+msgid "Check database structure"
+msgstr "Vérifier la structure de la base de données"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Exemple: bob@example.com, http://example.com/barbara"
+#: ../../mod/admin.php:768
+msgid "Failed Updates"
+msgstr "Mises-à-jour échouées"
 
-#: ../../include/contact_widgets.php:24
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invitation disponible"
-msgstr[1] "%d invitations disponibles"
+#: ../../mod/admin.php:769
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails."
 
-#: ../../include/contact_widgets.php:30
-msgid "Find People"
-msgstr "Trouver des personnes"
+#: ../../mod/admin.php:770
+msgid "Mark success (if update was manually applied)"
+msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)"
 
-#: ../../include/contact_widgets.php:31
-msgid "Enter name or interest"
-msgstr "Entrez un nom ou un centre d'intérêt"
+#: ../../mod/admin.php:771
+msgid "Attempt to execute this update step automatically"
+msgstr "Tenter d'éxecuter cette étape automatiquement"
 
-#: ../../include/contact_widgets.php:32
-msgid "Connect/Follow"
-msgstr "Connecter/Suivre"
+#: ../../mod/admin.php:803
+#, 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\tChère/Cher %1$s,\n\t\t\t\tL’administrateur de %2$s vous a ouvert un compte."
 
-#: ../../include/contact_widgets.php:33
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Exemples: Robert Morgenstein, Pêche"
+#: ../../mod/admin.php:806
+#, 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\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1$s\n\t\t\tIdentifiant :\t\t%2$s\n\t\t\tMot de passe :\t\t%3$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4$s."
 
-#: ../../include/contact_widgets.php:36 ../../view/theme/diabook/theme.php:526
-msgid "Similar Interests"
-msgstr "Intérêts similaires"
+#: ../../mod/admin.php:850
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utilisateur a (dé)bloqué"
+msgstr[1] "%s utilisateurs ont (dé)bloqué"
 
-#: ../../include/contact_widgets.php:37
-msgid "Random Profile"
-msgstr "Profil au hasard"
+#: ../../mod/admin.php:857
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utilisateur supprimé"
+msgstr[1] "%s utilisateurs supprimés"
 
-#: ../../include/contact_widgets.php:38 ../../view/theme/diabook/theme.php:528
-msgid "Invite Friends"
-msgstr "Inviter des amis"
+#: ../../mod/admin.php:896
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utilisateur '%s' supprimé"
 
-#: ../../include/contact_widgets.php:71
-msgid "Networks"
-msgstr "Réseaux"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utilisateur '%s' débloqué"
 
-#: ../../include/contact_widgets.php:74
-msgid "All Networks"
-msgstr "Tous réseaux"
+#: ../../mod/admin.php:904
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utilisateur '%s' bloqué"
 
-#: ../../include/contact_widgets.php:104 ../../include/features.php:60
-msgid "Saved Folders"
-msgstr "Dossiers sauvegardés"
+#: ../../mod/admin.php:999
+msgid "Add User"
+msgstr "Ajouter l'utilisateur"
 
-#: ../../include/contact_widgets.php:107 ../../include/contact_widgets.php:139
-msgid "Everything"
-msgstr "Tout"
+#: ../../mod/admin.php:1000
+msgid "select all"
+msgstr "tout sélectionner"
 
-#: ../../include/contact_widgets.php:136
-msgid "Categories"
-msgstr "Catégories"
+#: ../../mod/admin.php:1001
+msgid "User registrations waiting for confirm"
+msgstr "Inscriptions d'utilisateurs en attente de confirmation"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Fonctions générales"
+#: ../../mod/admin.php:1002
+msgid "User waiting for permanent deletion"
+msgstr "Utilisateur en attente de suppression définitive"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Profils multiples"
+#: ../../mod/admin.php:1003
+msgid "Request date"
+msgstr "Date de la demande"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Possibilité de créer plusieurs profils"
+#: ../../mod/admin.php:1004
+msgid "No registrations."
+msgstr "Pas d'inscriptions."
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Caractéristiques de composition de publication"
+#: ../../mod/admin.php:1006
+msgid "Deny"
+msgstr "Rejetter"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Éditeur de texte enrichi"
+#: ../../mod/admin.php:1010
+msgid "Site admin"
+msgstr "Administration du Site"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Activer l'éditeur de texte enrichi"
+#: ../../mod/admin.php:1011
+msgid "Account expired"
+msgstr "Compte expiré"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Aperçu de la publication"
+#: ../../mod/admin.php:1014
+msgid "New User"
+msgstr "Nouvel utilisateur"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permet la prévisualisation des publications et commentaires avant de les publier"
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Register date"
+msgstr "Date d'inscription"
 
-#: ../../include/features.php:33
-msgid "Auto-mention Forums"
-msgstr ""
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last login"
+msgstr "Dernière connexion"
 
-#: ../../include/features.php:33
-msgid ""
-"Add/remove mention when a fourm page is selected/deselected in ACL window."
-msgstr ""
+#: ../../mod/admin.php:1015 ../../mod/admin.php:1016
+msgid "Last item"
+msgstr "Dernier élément"
 
-#: ../../include/features.php:38
-msgid "Network Sidebar Widgets"
-msgstr "Widgets réseau pour barre latérale"
+#: ../../mod/admin.php:1015
+msgid "Deleted since"
+msgstr "Supprimé depuis"
 
-#: ../../include/features.php:39
-msgid "Search by Date"
-msgstr "Rechercher par Date"
+#: ../../mod/admin.php:1018
+msgid ""
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?"
 
-#: ../../include/features.php:39
-msgid "Ability to select posts by date ranges"
-msgstr "Capacité de sélectionner les publications par intervalles de dates"
+#: ../../mod/admin.php:1019
+msgid ""
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?"
 
-#: ../../include/features.php:40
-msgid "Group Filter"
-msgstr "Filtre de groupe"
+#: ../../mod/admin.php:1029
+msgid "Name of the new user."
+msgstr "Nom du nouvel utilisateur."
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné"
+#: ../../mod/admin.php:1030
+msgid "Nickname"
+msgstr "Pseudo"
 
-#: ../../include/features.php:41
-msgid "Network Filter"
-msgstr "Filtre de réseau"
+#: ../../mod/admin.php:1030
+msgid "Nickname of the new user."
+msgstr "Pseudo du nouvel utilisateur."
 
-#: ../../include/features.php:41
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné"
+#: ../../mod/admin.php:1031
+msgid "Email address of the new user."
+msgstr "Adresse mail du nouvel utilisateur."
 
-#: ../../include/features.php:42
-msgid "Save search terms for re-use"
-msgstr "Sauvegarder la recherche pour une utilisation ultérieure"
+#: ../../mod/admin.php:1064
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Extension %s désactivée."
 
-#: ../../include/features.php:47
-msgid "Network Tabs"
-msgstr "Onglets Réseau"
+#: ../../mod/admin.php:1068
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Extension %s activée."
 
-#: ../../include/features.php:48
-msgid "Network Personal Tab"
-msgstr "Onglet Réseau Personnel"
+#: ../../mod/admin.php:1078 ../../mod/admin.php:1294
+msgid "Disable"
+msgstr "Désactiver"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit"
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1296
+msgid "Enable"
+msgstr "Activer"
 
-#: ../../include/features.php:49
-msgid "Network New Tab"
-msgstr "Nouvel onglet réseaux"
+#: ../../mod/admin.php:1103 ../../mod/admin.php:1324
+msgid "Toggle"
+msgstr "Activer/Désactiver"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)"
+#: ../../mod/admin.php:1111 ../../mod/admin.php:1334
+msgid "Author: "
+msgstr "Auteur: "
 
-#: ../../include/features.php:50
-msgid "Network Shared Links Tab"
-msgstr "Onglet réseau partagé"
+#: ../../mod/admin.php:1112 ../../mod/admin.php:1335
+msgid "Maintainer: "
+msgstr "Mainteneur: "
 
-#: ../../include/features.php:50
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens"
+#: ../../mod/admin.php:1254
+msgid "No themes found."
+msgstr "Aucun thème trouvé."
 
-#: ../../include/features.php:55
-msgid "Post/Comment Tools"
-msgstr "outils de publication/commentaire"
+#: ../../mod/admin.php:1316
+msgid "Screenshot"
+msgstr "Capture d'écran"
 
-#: ../../include/features.php:56
-msgid "Multiple Deletion"
-msgstr "Suppression multiple"
+#: ../../mod/admin.php:1362
+msgid "[Experimental]"
+msgstr "[Expérimental]"
 
-#: ../../include/features.php:56
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Sélectionner et supprimer plusieurs publications/commentaires à la fois"
+#: ../../mod/admin.php:1363
+msgid "[Unsupported]"
+msgstr "[Non supporté]"
 
-#: ../../include/features.php:57
-msgid "Edit Sent Posts"
-msgstr "Éditer les publications envoyées"
+#: ../../mod/admin.php:1390
+msgid "Log settings updated."
+msgstr "Réglages des journaux mis-à-jour."
 
-#: ../../include/features.php:57
-msgid "Edit and correct posts and comments after sending"
-msgstr "Éditer et corriger les publications et commentaires après l'envoi"
+#: ../../mod/admin.php:1446
+msgid "Clear"
+msgstr "Effacer"
 
-#: ../../include/features.php:58
-msgid "Tagging"
-msgstr "Étiquettage"
+#: ../../mod/admin.php:1452
+msgid "Enable Debugging"
+msgstr "Activer le déboggage"
 
-#: ../../include/features.php:58
-msgid "Ability to tag existing posts"
-msgstr "Possibilité d'étiqueter les publications existantes"
+#: ../../mod/admin.php:1453
+msgid "Log file"
+msgstr "Fichier de journaux"
 
-#: ../../include/features.php:59
-msgid "Post Categories"
-msgstr "Catégories des publications"
+#: ../../mod/admin.php:1453
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica."
 
-#: ../../include/features.php:59
-msgid "Add categories to your posts"
-msgstr "Ajouter des catégories à vos publications"
+#: ../../mod/admin.php:1454
+msgid "Log level"
+msgstr "Niveau de journalisaton"
 
-#: ../../include/features.php:60
-msgid "Ability to file posts under folders"
-msgstr "Possibilité d'afficher les publications sous les répertoires"
+#: ../../mod/admin.php:1504
+msgid "Close"
+msgstr "Fermer"
 
-#: ../../include/features.php:61
-msgid "Dislike Posts"
-msgstr "Publications non aimées"
+#: ../../mod/admin.php:1510
+msgid "FTP Host"
+msgstr "Hôte FTP"
 
-#: ../../include/features.php:61
-msgid "Ability to dislike posts/comments"
-msgstr "Possibilité de ne pas aimer les publications/commentaires"
+#: ../../mod/admin.php:1511
+msgid "FTP Path"
+msgstr "Chemin FTP"
 
-#: ../../include/features.php:62
-msgid "Star Posts"
-msgstr "Publications spéciales"
+#: ../../mod/admin.php:1512
+msgid "FTP User"
+msgstr "Utilisateur FTP"
 
-#: ../../include/features.php:62
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Possibilité de marquer les publications spéciales d'une étoile"
+#: ../../mod/admin.php:1513
+msgid "FTP Password"
+msgstr "Mot de passe FTP"
 
-#: ../../include/features.php:63
-msgid "Mute Post Notifications"
-msgstr ""
+#: ../../mod/wall_upload.php:122 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "L'image dépasse la taille limite de %d"
 
-#: ../../include/features.php:63
-msgid "Ability to mute notifications for a thread"
-msgstr ""
+#: ../../mod/wall_upload.php:144 ../../mod/photos.php:807
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Impossible de traiter l'image."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL de connexion manquante."
-
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux."
-
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert."
-
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates."
+#: ../../mod/wall_upload.php:172 ../../mod/photos.php:834
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Le téléversement de l'image a échoué."
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
+#: ../../mod/home.php:35
+#, php-format
+msgid "Welcome to %s"
+msgstr "Bienvenue sur %s"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Aucune URL de navigation ne correspond à cette adresse."
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Erreur de protocole OpenID. Pas d'ID en retour."
 
-#: ../../include/follow.php:86
+#: ../../mod/openid.php:53
 msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel."
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site."
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel."
+#: ../../mod/network.php:142
+msgid "Search Results For:"
+msgstr "Résultats pour:"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site."
+#: ../../mod/network.php:185 ../../mod/search.php:21
+msgid "Remove term"
+msgstr "Retirer le terme"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part."
+#: ../../mod/network.php:356
+msgid "Commented Order"
+msgstr "Tri par commentaires"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossible de récupérer les informations du contact."
+#: ../../mod/network.php:359
+msgid "Sort by Comment Date"
+msgstr "Trier par date de commentaire"
 
-#: ../../include/follow.php:258
-msgid "following"
-msgstr "following"
+#: ../../mod/network.php:362
+msgid "Posted Order"
+msgstr "Tri des publications"
 
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
-msgstr "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom."
+#: ../../mod/network.php:365
+msgid "Sort by Post Date"
+msgstr "Trier par date de publication"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Paramètres de confidentialité par défaut pour les nouveaux contacts"
+#: ../../mod/network.php:374
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous concernent"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tout le monde"
+#: ../../mod/network.php:380
+msgid "New"
+msgstr "Nouveau"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "éditer"
+#: ../../mod/network.php:383
+msgid "Activity Stream - by date"
+msgstr "Flux d'activités - par date"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Editer groupe"
+#: ../../mod/network.php:389
+msgid "Shared Links"
+msgstr "Liens partagés"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Créer un nouveau groupe"
+#: ../../mod/network.php:392
+msgid "Interesting Links"
+msgstr "Liens intéressants"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contacts n'appartenant à aucun groupe"
+#: ../../mod/network.php:398
+msgid "Starred"
+msgstr "Mis en avant"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Divers"
+#: ../../mod/network.php:401
+msgid "Favourite Posts"
+msgstr "Publications favorites"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:290
-msgid "year"
-msgstr "an"
+#: ../../mod/network.php:463
+#, php-format
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Attention: Ce groupe contient %s membre d'un réseau non-sûr."
+msgstr[1] "Attention: Ce groupe contient %s membres d'un réseau non-sûr."
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:291
-msgid "month"
-msgstr "mois"
+#: ../../mod/network.php:466
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée."
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:293
-msgid "day"
-msgstr "jour"
+#: ../../mod/network.php:520 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Groupe inexistant"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "jamais"
+#: ../../mod/network.php:537 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Groupe vide"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "il y a moins d'une seconde"
+#: ../../mod/network.php:544 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Groupe: "
 
-#: ../../include/datetime.php:290
-msgid "years"
-msgstr "ans"
+#: ../../mod/network.php:554
+msgid "Contact: "
+msgstr "Contact: "
 
-#: ../../include/datetime.php:291
-msgid "months"
-msgstr "mois"
+#: ../../mod/network.php:556
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée."
 
-#: ../../include/datetime.php:292
-msgid "week"
-msgstr "semaine"
+#: ../../mod/network.php:561
+msgid "Invalid contact."
+msgstr "Contact invalide."
 
-#: ../../include/datetime.php:292
-msgid "weeks"
-msgstr "semaines"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- choisir -"
 
-#: ../../include/datetime.php:293
-msgid "days"
-msgstr "jours"
+#: ../../mod/friendica.php:59
+msgid "This is Friendica, version"
+msgstr "Motorisé par Friendica version"
 
-#: ../../include/datetime.php:294
-msgid "hour"
-msgstr "heure"
+#: ../../mod/friendica.php:60
+msgid "running at web location"
+msgstr "hébergé sur"
 
-#: ../../include/datetime.php:294
-msgid "hours"
-msgstr "heures"
+#: ../../mod/friendica.php:62
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica."
 
-#: ../../include/datetime.php:295
-msgid "minute"
-msgstr "minute"
+#: ../../mod/friendica.php:64
+msgid "Bug reports and issues: please visit"
+msgstr "Pour les rapports de bugs: rendez vous sur"
 
-#: ../../include/datetime.php:295
-msgid "minutes"
-msgstr "minutes"
+#: ../../mod/friendica.php:65
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com"
 
-#: ../../include/datetime.php:296
-msgid "second"
-msgstr "seconde"
+#: ../../mod/friendica.php:79
+msgid "Installed plugins/addons/apps:"
+msgstr "Extensions/greffons/applications installées:"
 
-#: ../../include/datetime.php:296
-msgid "seconds"
-msgstr "secondes"
+#: ../../mod/friendica.php:92
+msgid "No installed plugins/addons/apps"
+msgstr "Extensions/greffons/applications non installées:"
 
-#: ../../include/datetime.php:305
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s auparavant"
+#: ../../mod/apps.php:11
+msgid "Applications"
+msgstr "Applications"
 
-#: ../../include/datetime.php:477 ../../include/items.php:2211
-#, php-format
-msgid "%s's birthday"
-msgstr "Anniversaire de %s's"
+#: ../../mod/apps.php:14
+msgid "No installed applications."
+msgstr "Pas d'application installée."
 
-#: ../../include/datetime.php:478 ../../include/items.php:2212
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Joyeux anniversaire, %s !"
+#: ../../mod/photos.php:67 ../../mod/photos.php:1262 ../../mod/photos.php:1819
+msgid "Upload New Photos"
+msgstr "Téléverser de nouvelles photos"
 
-#: ../../include/acl_selectors.php:333
-msgid "Visible to everybody"
-msgstr "Visible par tout le monde"
+#: ../../mod/photos.php:144
+msgid "Contact information unavailable"
+msgstr "Informations de contact indisponibles"
 
-#: ../../include/acl_selectors.php:334 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "show"
-msgstr "montrer"
+#: ../../mod/photos.php:165
+msgid "Album not found."
+msgstr "Album introuvable."
 
-#: ../../include/acl_selectors.php:335 ../../view/theme/diabook/config.php:142
-#: ../../view/theme/diabook/theme.php:621
-msgid "don't show"
-msgstr "cacher"
+#: ../../mod/photos.php:188 ../../mod/photos.php:200 ../../mod/photos.php:1204
+msgid "Delete Album"
+msgstr "Effacer l'album"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[pas de sujet]"
+#: ../../mod/photos.php:198
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "retiré de la liste de suivi"
+#: ../../mod/photos.php:278 ../../mod/photos.php:289 ../../mod/photos.php:1515
+msgid "Delete Photo"
+msgstr "Effacer la photo"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:882
-msgid "Poke"
-msgstr "Sollicitations (pokes)"
+#: ../../mod/photos.php:287
+msgid "Do you really want to delete this photo?"
+msgstr "Voulez-vous vraiment supprimer cette photo ?"
 
-#: ../../include/Contact.php:229 ../../include/conversation.php:876
-msgid "View Status"
-msgstr "Voir les statuts"
+#: ../../mod/photos.php:662
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s a été étiqueté dans %2$s par %3$s"
 
-#: ../../include/Contact.php:230 ../../include/conversation.php:877
-msgid "View Profile"
-msgstr "Voir le profil"
+#: ../../mod/photos.php:662
+msgid "a photo"
+msgstr "une photo"
 
-#: ../../include/Contact.php:231 ../../include/conversation.php:878
-msgid "View Photos"
-msgstr "Voir les photos"
+#: ../../mod/photos.php:767
+msgid "Image exceeds size limit of "
+msgstr "L'image dépasse la taille maximale de  "
 
-#: ../../include/Contact.php:232 ../../include/Contact.php:255
-#: ../../include/conversation.php:879
-msgid "Network Posts"
-msgstr "Publications du réseau"
+#: ../../mod/photos.php:775
+msgid "Image file is empty."
+msgstr "Fichier image vide."
 
-#: ../../include/Contact.php:233 ../../include/Contact.php:255
-#: ../../include/conversation.php:880
-msgid "Edit Contact"
-msgstr "Éditer le contact"
+#: ../../mod/photos.php:930
+msgid "No photos selected"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../include/Contact.php:234
-msgid "Drop Contact"
-msgstr "Supprimer le contact"
+#: ../../mod/photos.php:1094
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos."
 
-#: ../../include/Contact.php:235 ../../include/Contact.php:255
-#: ../../include/conversation.php:881
-msgid "Send PM"
-msgstr "Message privé"
+#: ../../mod/photos.php:1129
+msgid "Upload Photos"
+msgstr "Téléverser des photos"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Bienvenue "
+#: ../../mod/photos.php:1133 ../../mod/photos.php:1199
+msgid "New album name: "
+msgstr "Nom du nouvel album: "
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Merci d'illustrer votre profil d'une image."
+#: ../../mod/photos.php:1134
+msgid "or existing album name: "
+msgstr "ou nom d'un album existant: "
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Bienvenue à nouveau, "
+#: ../../mod/photos.php:1135
+msgid "Do not show a status post for this upload"
+msgstr "Ne pas publier de notice de statut pour cet envoi"
 
-#: ../../include/security.php:366
-msgid ""
-"The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before submitting it."
-msgstr "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé."
+#: ../../mod/photos.php:1137 ../../mod/photos.php:1510
+msgid "Permissions"
+msgstr "Permissions"
 
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../include/text.php:1966 ../../view/theme/diabook/theme.php:463
-msgid "event"
-msgstr "évènement"
+#: ../../mod/photos.php:1148
+msgid "Private Photo"
+msgstr "Photo privée"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s a sollicité %2$s"
+#: ../../mod/photos.php:1149
+msgid "Public Photo"
+msgstr "Photo publique"
 
-#: ../../include/conversation.php:211 ../../include/text.php:1005
-msgid "poked"
-msgstr "a titillé"
+#: ../../mod/photos.php:1212
+msgid "Edit Album"
+msgstr "Éditer l'album"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "publication/élément"
+#: ../../mod/photos.php:1218
+msgid "Show Newest First"
+msgstr "Plus récent d'abord"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s a marqué le %3$s de %2$s comme favori"
+#: ../../mod/photos.php:1220
+msgid "Show Oldest First"
+msgstr "Plus ancien d'abord"
 
-#: ../../include/conversation.php:772
-msgid "remove"
-msgstr "enlever"
+#: ../../mod/photos.php:1248 ../../mod/photos.php:1802
+msgid "View Photo"
+msgstr "Voir la photo"
 
-#: ../../include/conversation.php:776
-msgid "Delete Selected Items"
-msgstr "Supprimer les éléments sélectionnés"
+#: ../../mod/photos.php:1294
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Interdit. L'accès à cet élément peut avoir été restreint."
 
-#: ../../include/conversation.php:875
-msgid "Follow Thread"
-msgstr "Suivre le fil"
+#: ../../mod/photos.php:1296
+msgid "Photo not available"
+msgstr "Photo indisponible"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s likes this."
-msgstr "%s aime ça."
+#: ../../mod/photos.php:1352
+msgid "View photo"
+msgstr "Voir photo"
 
-#: ../../include/conversation.php:944
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s n'aime pas ça."
+#: ../../mod/photos.php:1352
+msgid "Edit photo"
+msgstr "Éditer la photo"
 
-#: ../../include/conversation.php:949
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d personnes</span> aiment ça"
+#: ../../mod/photos.php:1353
+msgid "Use as profile photo"
+msgstr "Utiliser comme photo de profil"
 
-#: ../../include/conversation.php:952
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d personnes</span> n'aiment pas ça"
+#: ../../mod/photos.php:1378
+msgid "View Full Size"
+msgstr "Voir en taille réelle"
 
-#: ../../include/conversation.php:966
-msgid "and"
-msgstr "et"
+#: ../../mod/photos.php:1457
+msgid "Tags: "
+msgstr "Étiquettes:"
 
-#: ../../include/conversation.php:972
-#, php-format
-msgid ", and %d other people"
-msgstr ", et %d autres personnes"
+#: ../../mod/photos.php:1460
+msgid "[Remove any tag]"
+msgstr "[Retirer toutes les étiquettes]"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s like this."
-msgstr "%s aiment ça."
+#: ../../mod/photos.php:1500
+msgid "Rotate CW (right)"
+msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
 
-#: ../../include/conversation.php:974
-#, php-format
-msgid "%s don't like this."
-msgstr "%s n'aiment pas ça."
+#: ../../mod/photos.php:1501
+msgid "Rotate CCW (left)"
+msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)"
 
-#: ../../include/conversation.php:1001 ../../include/conversation.php:1019
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visible par <strong>tout le monde</strong>"
+#: ../../mod/photos.php:1503
+msgid "New album name"
+msgstr "Nom du nouvel album"
 
-#: ../../include/conversation.php:1003 ../../include/conversation.php:1021
-msgid "Please enter a video link/URL:"
-msgstr "Entrez un lien/URL video :"
+#: ../../mod/photos.php:1506
+msgid "Caption"
+msgstr "Titre"
 
-#: ../../include/conversation.php:1004 ../../include/conversation.php:1022
-msgid "Please enter an audio link/URL:"
-msgstr "Entrez un lien/URL audio :"
+#: ../../mod/photos.php:1508
+msgid "Add a Tag"
+msgstr "Ajouter une étiquette"
 
-#: ../../include/conversation.php:1005 ../../include/conversation.php:1023
-msgid "Tag term:"
-msgstr "Terme d'étiquette:"
+#: ../../mod/photos.php:1512
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances"
 
-#: ../../include/conversation.php:1007 ../../include/conversation.php:1025
-msgid "Where are you right now?"
-msgstr "Où êtes-vous présentemment?"
+#: ../../mod/photos.php:1521
+msgid "Private photo"
+msgstr "Photo privée"
 
-#: ../../include/conversation.php:1008
-msgid "Delete item(s)?"
-msgstr "Supprimer les élément(s) ?"
+#: ../../mod/photos.php:1522
+msgid "Public photo"
+msgstr "Photo publique"
 
-#: ../../include/conversation.php:1051
-msgid "Post to Email"
-msgstr "Publier aux courriels"
+#: ../../mod/photos.php:1817
+msgid "Recent Photos"
+msgstr "Photos récentes"
 
-#: ../../include/conversation.php:1056
-#, php-format
-msgid "Connectors disabled, since \"%s\" is enabled."
+#: ../../mod/bookmarklet.php:41
+msgid "The post was created"
 msgstr ""
 
-#: ../../include/conversation.php:1111
-msgid "permissions"
-msgstr "permissions"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contact ajouté"
 
-#: ../../include/conversation.php:1135
-msgid "Post to Groups"
-msgstr "Publier aux groupes"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Migrer le compte"
 
-#: ../../include/conversation.php:1136
-msgid "Post to Contacts"
-msgstr "Publier aux contacts"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Vous pouvez importer un compte d'un autre serveur Friendica."
 
-#: ../../include/conversation.php:1137
-msgid "Private post"
-msgstr "Message privé"
+#: ../../mod/uimport.php:68
+msgid ""
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici."
 
-#: ../../include/network.php:895
-msgid "view full size"
-msgstr "voir en pleine taille"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora"
 
-#: ../../include/text.php:297
-msgid "newer"
-msgstr "Plus récent"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Fichier du compte"
 
-#: ../../include/text.php:299
-msgid "older"
-msgstr "Plus ancien"
-
-#: ../../include/text.php:304
-msgid "prev"
-msgstr "précédent"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your account, go to \"Settings->Export your personal data\" and "
+"select \"Export account\""
+msgstr "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\""
 
-#: ../../include/text.php:306
-msgid "first"
-msgstr "premier"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "La limite d'invitation totale est éxédée."
 
-#: ../../include/text.php:338
-msgid "last"
-msgstr "dernier"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Adresse de courriel invalide."
 
-#: ../../include/text.php:341
-msgid "next"
-msgstr "suivant"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Rejoignez-nous sur Friendica"
 
-#: ../../include/text.php:855
-msgid "No contacts"
-msgstr "Aucun contact"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site."
 
-#: ../../include/text.php:864
+#: ../../mod/invite.php:89
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contact"
-msgstr[1] "%d contacts"
+msgid "%s : Message delivery failed."
+msgstr "%s : L'envoi du message a échoué."
 
-#: ../../include/text.php:1005
-msgid "poke"
-msgstr "titiller"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d message envoyé."
+msgstr[1] "%d messages envoyés."
 
-#: ../../include/text.php:1006
-msgid "ping"
-msgstr "attirer l'attention"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Vous n'avez plus d'invitations disponibles"
 
-#: ../../include/text.php:1006
-msgid "pinged"
-msgstr "a attiré l'attention de"
+#: ../../mod/invite.php:120
+#, php-format
+msgid ""
+"Visit %s for a list of public sites that you can join. Friendica members on "
+"other sites can all connect with each other, as well as with members of many"
+" other social networks."
+msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux."
 
-#: ../../include/text.php:1007
-msgid "prod"
-msgstr "aiguillonner"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public."
 
-#: ../../include/text.php:1007
-msgid "prodded"
-msgstr "a aiguillonné"
+#: ../../mod/invite.php:123
+#, php-format
+msgid ""
+"Friendica sites all inter-connect to create a huge privacy-enhanced social "
+"web that is owned and controlled by its members. They can also connect with "
+"many traditional social networks. See %s for a list of alternate Friendica "
+"sites you can join."
+msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre."
 
-#: ../../include/text.php:1008
-msgid "slap"
-msgstr "gifler"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres."
 
-#: ../../include/text.php:1008
-msgid "slapped"
-msgstr "a giflé"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Envoyer des invitations"
 
-#: ../../include/text.php:1009
-msgid "finger"
-msgstr "tripoter"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Entrez les adresses email, une par ligne :"
 
-#: ../../include/text.php:1009
-msgid "fingered"
-msgstr "a tripoté"
+#: ../../mod/invite.php:135
+msgid ""
+"You are cordially invited to join me and other close friends on Friendica - "
+"and help us to create a better social web."
+msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social."
 
-#: ../../include/text.php:1010
-msgid "rebuff"
-msgstr "rabrouer"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Vous devrez fournir ce code d'invitation : $invite_code"
 
-#: ../../include/text.php:1010
-msgid "rebuffed"
-msgstr "a rabroué"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :"
 
-#: ../../include/text.php:1024
-msgid "happy"
-msgstr "heureuse"
+#: ../../mod/invite.php:139
+msgid ""
+"For more information about the Friendica project and why we feel it is "
+"important, please visit http://friendica.com"
+msgstr "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com"
 
-#: ../../include/text.php:1025
-msgid "sad"
-msgstr "triste"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accès refusé."
 
-#: ../../include/text.php:1026
-msgid "mellow"
-msgstr "suave"
+#: ../../mod/lostpass.php:19
+msgid "No valid account found."
+msgstr "Impossible de trouver un compte valide."
 
-#: ../../include/text.php:1027
-msgid "tired"
-msgstr "fatiguée"
+#: ../../mod/lostpass.php:35
+msgid "Password reset request issued. Check your email."
+msgstr "Réinitialisation du mot de passe en cours. Vérifiez votre courriel."
 
-#: ../../include/text.php:1028
-msgid "perky"
-msgstr "guillerette"
+#: ../../mod/lostpass.php:42
+#, php-format
+msgid ""
+"\n"
+"\t\tDear %1$s,\n"
+"\t\t\tA request was recently received at \"%2$s\" to reset your account\n"
+"\t\tpassword. In order to confirm this request, please select the verification link\n"
+"\t\tbelow or paste it into your web browser address bar.\n"
+"\n"
+"\t\tIf you did NOT request this change, please DO NOT follow the link\n"
+"\t\tprovided and ignore and/or delete this email.\n"
+"\n"
+"\t\tYour password will not be changed unless we can verify that you\n"
+"\t\tissued this request."
+msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous."
 
-#: ../../include/text.php:1029
-msgid "angry"
-msgstr "colérique"
+#: ../../mod/lostpass.php:53
+#, php-format
+msgid ""
+"\n"
+"\t\tFollow this link to verify your identity:\n"
+"\n"
+"\t\t%1$s\n"
+"\n"
+"\t\tYou will then receive a follow-up message containing the new password.\n"
+"\t\tYou may change that password from your account settings page after logging in.\n"
+"\n"
+"\t\tThe login details are as follows:\n"
+"\n"
+"\t\tSite Location:\t%2$s\n"
+"\t\tLogin Name:\t%3$s"
+msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s"
 
-#: ../../include/text.php:1030
-msgid "stupified"
-msgstr "stupéfaite"
+#: ../../mod/lostpass.php:72
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Requête de réinitialisation de mot de passe à %s"
 
-#: ../../include/text.php:1031
-msgid "puzzled"
-msgstr "perplexe"
+#: ../../mod/lostpass.php:92
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué."
 
-#: ../../include/text.php:1032
-msgid "interested"
-msgstr "intéressée"
+#: ../../mod/lostpass.php:110
+msgid "Your password has been reset as requested."
+msgstr "Votre mot de passe a bien été réinitialisé."
 
-#: ../../include/text.php:1033
-msgid "bitter"
-msgstr "amère"
+#: ../../mod/lostpass.php:111
+msgid "Your new password is"
+msgstr "Votre nouveau mot de passe est "
 
-#: ../../include/text.php:1034
-msgid "cheerful"
-msgstr "entraînante"
+#: ../../mod/lostpass.php:112
+msgid "Save or copy your new password - and then"
+msgstr "Sauvez ou copiez ce nouveau mot de passe - puis"
 
-#: ../../include/text.php:1035
-msgid "alive"
-msgstr "vivante"
+#: ../../mod/lostpass.php:113
+msgid "click here to login"
+msgstr "cliquez ici pour vous connecter"
 
-#: ../../include/text.php:1036
-msgid "annoyed"
-msgstr "ennuyée"
+#: ../../mod/lostpass.php:114
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté."
 
-#: ../../include/text.php:1037
-msgid "anxious"
-msgstr "anxieuse"
+#: ../../mod/lostpass.php:125
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tDear %1$s,\n"
+"\t\t\t\t\tYour password has been changed as requested. Please retain this\n"
+"\t\t\t\tinformation for your records (or change your password immediately to\n"
+"\t\t\t\tsomething that you will remember).\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t"
 
-#: ../../include/text.php:1038
-msgid "cranky"
-msgstr "excentrique"
+#: ../../mod/lostpass.php:131
+#, php-format
+msgid ""
+"\n"
+"\t\t\t\tYour login details are as follows:\n"
+"\n"
+"\t\t\t\tSite Location:\t%1$s\n"
+"\t\t\t\tLogin Name:\t%2$s\n"
+"\t\t\t\tPassword:\t%3$s\n"
+"\n"
+"\t\t\t\tYou may change that password from your account settings page after logging in.\n"
+"\t\t\t"
+msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t"
 
-#: ../../include/text.php:1039
-msgid "disturbed"
-msgstr "dérangée"
+#: ../../mod/lostpass.php:147
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "Votre mot de passe a été modifié à %s"
 
-#: ../../include/text.php:1040
-msgid "frustrated"
-msgstr "frustrée"
+#: ../../mod/lostpass.php:159
+msgid "Forgot your Password?"
+msgstr "Mot de passe oublié ?"
 
-#: ../../include/text.php:1041
-msgid "motivated"
-msgstr "motivée"
+#: ../../mod/lostpass.php:160
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel."
 
-#: ../../include/text.php:1042
-msgid "relaxed"
-msgstr "détendue"
+#: ../../mod/lostpass.php:161
+msgid "Nickname or Email: "
+msgstr "Pseudo ou eMail : "
 
-#: ../../include/text.php:1043
-msgid "surprised"
-msgstr "surprise"
+#: ../../mod/lostpass.php:162
+msgid "Reset"
+msgstr "Réinitialiser"
 
-#: ../../include/text.php:1213
-msgid "Monday"
-msgstr "Lundi"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Texte source (bbcode) :"
 
-#: ../../include/text.php:1213
-msgid "Tuesday"
-msgstr "Mardi"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Texte source (Diaspora) à convertir en BBcode :"
 
-#: ../../include/text.php:1213
-msgid "Wednesday"
-msgstr "Mercredi"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Source input : "
 
-#: ../../include/text.php:1213
-msgid "Thursday"
-msgstr "Jeudi"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML brut)"
 
-#: ../../include/text.php:1213
-msgid "Friday"
-msgstr "Vendredi"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html : "
 
-#: ../../include/text.php:1213
-msgid "Saturday"
-msgstr "Samedi"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb : "
 
-#: ../../include/text.php:1213
-msgid "Sunday"
-msgstr "Dimanche"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md : "
 
-#: ../../include/text.php:1217
-msgid "January"
-msgstr "Janvier"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html : "
 
-#: ../../include/text.php:1217
-msgid "February"
-msgstr "Février"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb : "
 
-#: ../../include/text.php:1217
-msgid "March"
-msgstr "Mars"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb : "
 
-#: ../../include/text.php:1217
-msgid "April"
-msgstr "Avril"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Texte source (format Diaspora) :"
 
-#: ../../include/text.php:1217
-msgid "May"
-msgstr "Mai"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb :"
 
-#: ../../include/text.php:1217
-msgid "June"
-msgstr "Juin"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Étiquette supprimée"
 
-#: ../../include/text.php:1217
-msgid "July"
-msgstr "Juillet"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Enlever l'étiquette de l'élément"
 
-#: ../../include/text.php:1217
-msgid "August"
-msgstr "Août"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Sélectionner une étiquette à supprimer: "
 
-#: ../../include/text.php:1217
-msgid "September"
-msgstr "Septembre"
+#: ../../mod/removeme.php:46 ../../mod/removeme.php:49
+msgid "Remove My Account"
+msgstr "Supprimer mon compte"
 
-#: ../../include/text.php:1217
-msgid "October"
-msgstr "Octobre"
+#: ../../mod/removeme.php:47
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible."
 
-#: ../../include/text.php:1217
-msgid "November"
-msgstr "Novembre"
+#: ../../mod/removeme.php:48
+msgid "Please enter your password for verification:"
+msgstr "Merci de saisir votre mot de passe pour vérification :"
 
-#: ../../include/text.php:1217
-msgid "December"
-msgstr "Décembre"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Identifiant de profil invalide."
 
-#: ../../include/text.php:1437
-msgid "bytes"
-msgstr "octets"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Éditer la visibilité du profil"
 
-#: ../../include/text.php:1461 ../../include/text.php:1473
-msgid "Click to open/close"
-msgstr "Cliquer pour ouvrir/fermer"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visible par"
 
-#: ../../include/text.php:1702 ../../include/user.php:247
-#: ../../view/theme/duepuntozero/config.php:44
-msgid "default"
-msgstr "défaut"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Tous les contacts (ayant un accès sécurisé)"
 
-#: ../../include/text.php:1714
-msgid "Select an alternate language"
-msgstr "Choisir une langue alternative"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Correpondance de profils"
 
-#: ../../include/text.php:1970
-msgid "activity"
-msgstr "activité"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut."
 
-#: ../../include/text.php:1973
-msgid "post"
-msgstr "publication"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "s'intéresse à :"
 
-#: ../../include/text.php:2141
-msgid "Item filed"
-msgstr "Élément classé"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Vous devez donner un nom et un horaire de début à l'événement."
 
-#: ../../include/bbcode.php:428 ../../include/bbcode.php:1047
-#: ../../include/bbcode.php:1048
-msgid "Image/photo"
-msgstr "Image/photo"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../include/bbcode.php:528
-#, php-format
-msgid "<a href=\"%1$s\" target=\"_blank\">%2$s</a> %3$s"
-msgstr ""
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Editer l'événement"
 
-#: ../../include/bbcode.php:562
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"_blank\">post</a>"
-msgstr ""
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Créer un nouvel événement"
 
-#: ../../include/bbcode.php:1011 ../../include/bbcode.php:1031
-msgid "$1 wrote:"
-msgstr "$1 a écrit:"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Précédent"
 
-#: ../../include/bbcode.php:1056 ../../include/bbcode.php:1057
-msgid "Encrypted content"
-msgstr "Contenu chiffré"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Suivant"
 
-#: ../../include/notifier.php:786 ../../include/delivery.php:456
-msgid "(no subject)"
-msgstr "(sans titre)"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "heures:minutes"
 
-#: ../../include/notifier.php:796 ../../include/delivery.php:467
-#: ../../include/enotify.php:33
-msgid "noreply"
-msgstr "noreply"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Détails de l'événement"
 
-#: ../../include/dba_pdo.php:72 ../../include/dba.php:56
+#: ../../mod/events.php:457
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Impossible de localiser les informations DNS pour le serveur de base de données '%s'"
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Le format est %s %s. La date de début et le nom sont nécessaires."
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Inconnu | Non-classé"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Début de l'événement :"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Bloquer immédiatement"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Requis"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Douteux, spammeur, accro à l'auto-promotion"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Date / heure de fin inconnue ou sans objet"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Connu de moi, mais sans opinion"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Fin de l'événement:"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, probablement inoffensif"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Ajuster à la zone horaire du visiteur"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Réputé, a toute ma confiance"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Description:"
 
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Chaque semaine"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titre :"
 
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Chaque mois"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Partager cet événement"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/ping.php:240
+msgid "{0} wants to be your friend"
+msgstr "{0} souhaite être votre ami(e)"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/ping.php:245
+msgid "{0} sent you a message"
+msgstr "{0} vous a envoyé un message"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/ping.php:250
+msgid "{0} requested registration"
+msgstr "{0} a demandé à s'inscrire"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/ping.php:256
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} a commenté la publication de %s"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/ping.php:261
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} a aimé la publication de %s"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/ping.php:266
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} n'a pas aimé la publication de %s"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/ping.php:271
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} est désormais ami(e) avec %s"
 
-#: ../../include/contact_selectors.php:88
-msgid "pump.io"
-msgstr "pump.io"
+#: ../../mod/ping.php:276
+msgid "{0} posted"
+msgstr "{0} a publié"
 
-#: ../../include/contact_selectors.php:89
-msgid "Twitter"
-msgstr "Twitter"
+#: ../../mod/ping.php:281
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} a étiqueté la publication de %s avec #%s"
 
-#: ../../include/contact_selectors.php:90
-msgid "Diaspora Connector"
-msgstr "Connecteur Diaspora"
+#: ../../mod/ping.php:287
+msgid "{0} mentioned you in a post"
+msgstr "{0} vous a mentionné dans une publication"
 
-#: ../../include/contact_selectors.php:91
-msgid "Statusnet"
-msgstr "Statusnet"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Humeur"
 
-#: ../../include/contact_selectors.php:92
-msgid "App.net"
-msgstr "App.net"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Spécifiez votre humeur du moment, et informez vos amis"
 
-#: ../../include/Scrape.php:614
-msgid " on Last.fm"
-msgstr "sur Last.fm"
+#: ../../mod/search.php:174 ../../mod/community.php:62
+#: ../../mod/community.php:71
+msgid "No results."
+msgstr "Aucun résultat."
 
-#: ../../include/bb2diaspora.php:154 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Débute:"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossible de localiser les informations du contact."
 
-#: ../../include/bb2diaspora.php:162 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Finit:"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Voulez-vous vraiment supprimer ce message ?"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Message supprimé."
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversation supprimée."
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Anniversaire:"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Aucun message."
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Age:"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Émetteur inconnu - %s"
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/message.php:381
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "depuis %1$d %2$s"
+msgid "You and %s"
+msgstr "Vous et %s"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Étiquette:"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s et vous"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Effacer conversation"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Passe-temps/Centres d'intérêt:"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Coordonnées/Réseaux sociaux:"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d message"
+msgstr[1] "%d messages"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Goûts musicaux:"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Message indisponible."
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Lectures:"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Effacer message"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Télévision:"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur."
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Cinéma/Danse/Culture/Divertissement:"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Répondre"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amour/Romance:"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Indisponible."
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Activité professionnelle/Occupation:"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:179 ../../mod/profiles.php:630
+#: ../../mod/dfrn_confirm.php:64
+msgid "Profile not found."
+msgstr "Profil introuvable."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Études/Formation:"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil supprimé."
 
-#: ../../include/plugin.php:455 ../../include/plugin.php:457
-msgid "Click here to upgrade."
-msgstr "Cliquez ici pour mettre à jour."
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../include/plugin.php:463
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Cette action dépasse les limites définies par votre abonnement."
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Nouveau profil créé."
 
-#: ../../include/plugin.php:468
-msgid "This action is not available under your subscription plan."
-msgstr "Cette action n'est pas disponible avec votre abonnement."
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Ce profil ne peut être cloné."
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Mettre fin à cette session"
+#: ../../mod/profiles.php:189
+msgid "Profile Name is required."
+msgstr "Le nom du profil est requis."
 
-#: ../../include/nav.php:76 ../../include/nav.php:148
-#: ../../view/theme/diabook/theme.php:123
-msgid "Your posts and conversations"
-msgstr "Vos publications et conversations"
+#: ../../mod/profiles.php:340
+msgid "Marital Status"
+msgstr "Statut marital"
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:124
-msgid "Your profile page"
-msgstr "Votre page de profil"
+#: ../../mod/profiles.php:344
+msgid "Romantic Partner"
+msgstr "Partenaire / conjoint"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:126
-msgid "Your photos"
-msgstr "Vos photos"
+#: ../../mod/profiles.php:348
+msgid "Likes"
+msgstr "Derniers \"J'aime\""
 
-#: ../../include/nav.php:79
-msgid "Your videos"
-msgstr "Vos vidéos"
+#: ../../mod/profiles.php:352
+msgid "Dislikes"
+msgstr "Derniers \"Je n'aime pas\""
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:127
-msgid "Your events"
-msgstr "Vos événements"
+#: ../../mod/profiles.php:356
+msgid "Work/Employment"
+msgstr "Travail / Occupation"
 
-#: ../../include/nav.php:81 ../../view/theme/diabook/theme.php:128
-msgid "Personal notes"
-msgstr "Notes personnelles"
+#: ../../mod/profiles.php:359
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../include/nav.php:81
-msgid "Your personal notes"
-msgstr "Vos notes personnelles"
+#: ../../mod/profiles.php:363
+msgid "Political Views"
+msgstr "Tendance politique"
 
-#: ../../include/nav.php:92
-msgid "Sign in"
-msgstr "Se connecter"
+#: ../../mod/profiles.php:367
+msgid "Gender"
+msgstr "Sexe"
 
-#: ../../include/nav.php:105
-msgid "Home Page"
-msgstr "Page d'accueil"
+#: ../../mod/profiles.php:371
+msgid "Sexual Preference"
+msgstr "Préférence sexuelle"
 
-#: ../../include/nav.php:109
-msgid "Create an account"
-msgstr "Créer un compte"
+#: ../../mod/profiles.php:375
+msgid "Homepage"
+msgstr "Site internet"
 
-#: ../../include/nav.php:114
-msgid "Help and documentation"
-msgstr "Aide et documentation"
+#: ../../mod/profiles.php:379 ../../mod/profiles.php:698
+msgid "Interests"
+msgstr "Centres d'intérêt"
 
-#: ../../include/nav.php:117
-msgid "Apps"
-msgstr "Applications"
+#: ../../mod/profiles.php:383
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../include/nav.php:117
-msgid "Addon applications, utilities, games"
-msgstr "Applications supplémentaires, utilitaires, jeux"
-
-#: ../../include/nav.php:119
-msgid "Search site content"
-msgstr "Rechercher dans le contenu du site"
+#: ../../mod/profiles.php:390 ../../mod/profiles.php:694
+msgid "Location"
+msgstr "Localisation"
 
-#: ../../include/nav.php:129
-msgid "Conversations on this site"
-msgstr "Conversations ayant cours sur ce site"
+#: ../../mod/profiles.php:473
+msgid "Profile updated."
+msgstr "Profil mis à jour."
 
-#: ../../include/nav.php:131
-msgid "Conversations on the network"
-msgstr ""
+#: ../../mod/profiles.php:568
+msgid " and "
+msgstr " et "
 
-#: ../../include/nav.php:133
-msgid "Directory"
-msgstr "Annuaire"
+#: ../../mod/profiles.php:576
+msgid "public profile"
+msgstr "profil public"
 
-#: ../../include/nav.php:133
-msgid "People directory"
-msgstr "Annuaire des utilisateurs"
+#: ../../mod/profiles.php:579
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s a changé %2$s en &ldquo;%3$s&rdquo;"
 
-#: ../../include/nav.php:135
-msgid "Information"
-msgstr "Information"
+#: ../../mod/profiles.php:580
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr "Visiter le %2$s de %1$s"
 
-#: ../../include/nav.php:135
-msgid "Information about this friendica instance"
-msgstr "Information au sujet de cette instance de friendica"
+#: ../../mod/profiles.php:583
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s a mis à jour son %2$s, en modifiant %3$s."
 
-#: ../../include/nav.php:145
-msgid "Conversations from your friends"
-msgstr "Conversations de vos amis"
+#: ../../mod/profiles.php:658
+msgid "Hide contacts and friends:"
+msgstr "Cacher mes contacts et amis :"
 
-#: ../../include/nav.php:146
-msgid "Network Reset"
-msgstr "Réinitialiser le réseau"
+#: ../../mod/profiles.php:663
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?"
 
-#: ../../include/nav.php:146
-msgid "Load Network page with no filters"
-msgstr "Chargement des pages du réseau sans filtre"
+#: ../../mod/profiles.php:685
+msgid "Edit Profile Details"
+msgstr "Éditer les détails du profil"
 
-#: ../../include/nav.php:154
-msgid "Friend Requests"
-msgstr "Demande d'amitié"
+#: ../../mod/profiles.php:687
+msgid "Change Profile Photo"
+msgstr "Changer la photo du profil"
 
-#: ../../include/nav.php:156
-msgid "See all notifications"
-msgstr "Voir toute notification"
+#: ../../mod/profiles.php:688
+msgid "View this profile"
+msgstr "Voir ce profil"
 
-#: ../../include/nav.php:157
-msgid "Mark all system notifications seen"
-msgstr "Marquer toutes les notifications système comme 'vues'"
+#: ../../mod/profiles.php:689
+msgid "Create a new profile using these settings"
+msgstr "Créer un nouveau profil en utilisant ces réglages"
 
-#: ../../include/nav.php:161
-msgid "Private mail"
-msgstr "Messages privés"
+#: ../../mod/profiles.php:690
+msgid "Clone this profile"
+msgstr "Cloner ce profil"
 
-#: ../../include/nav.php:162
-msgid "Inbox"
-msgstr "Messages entrants"
+#: ../../mod/profiles.php:691
+msgid "Delete this profile"
+msgstr "Supprimer ce profil"
 
-#: ../../include/nav.php:163
-msgid "Outbox"
-msgstr "Messages sortants"
+#: ../../mod/profiles.php:692
+msgid "Basic information"
+msgstr "Information de base"
 
-#: ../../include/nav.php:167
-msgid "Manage"
-msgstr "Gérer"
+#: ../../mod/profiles.php:693
+msgid "Profile picture"
+msgstr "Image de profil"
 
-#: ../../include/nav.php:167
-msgid "Manage other pages"
-msgstr "Gérer les autres pages"
+#: ../../mod/profiles.php:695
+msgid "Preferences"
+msgstr "Préférences"
 
-#: ../../include/nav.php:172
-msgid "Account settings"
-msgstr "Compte"
+#: ../../mod/profiles.php:696
+msgid "Status information"
+msgstr "Information sur le statut"
 
-#: ../../include/nav.php:175
-msgid "Manage/Edit Profiles"
-msgstr "Gérer/Éditer les profiles"
+#: ../../mod/profiles.php:697
+msgid "Additional information"
+msgstr "Information additionnelle"
 
-#: ../../include/nav.php:177
-msgid "Manage/edit friends and contacts"
-msgstr "Gérer/éditer les amitiés et contacts"
+#: ../../mod/profiles.php:699 ../../mod/newmember.php:36
+#: ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Téléverser une photo de profil"
 
-#: ../../include/nav.php:184
-msgid "Site setup and configuration"
-msgstr "Démarrage et configuration du site"
+#: ../../mod/profiles.php:700
+msgid "Profile Name:"
+msgstr "Nom du profil :"
 
-#: ../../include/nav.php:188
-msgid "Navigation"
-msgstr "Navigation"
+#: ../../mod/profiles.php:701
+msgid "Your Full Name:"
+msgstr "Votre nom complet :"
 
-#: ../../include/nav.php:188
-msgid "Site map"
-msgstr "Carte du site"
+#: ../../mod/profiles.php:702
+msgid "Title/Description:"
+msgstr "Titre / Description :"
 
-#: ../../include/api.php:304 ../../include/api.php:315
-#: ../../include/api.php:416 ../../include/api.php:1063
-#: ../../include/api.php:1065
-msgid "User not found."
-msgstr "Utilisateur non trouvé"
+#: ../../mod/profiles.php:703
+msgid "Your Gender:"
+msgstr "Votre genre :"
 
-#: ../../include/api.php:771
+#: ../../mod/profiles.php:704
 #, php-format
-msgid "Daily posting limit of %d posts reached. The post was rejected."
-msgstr "Le quota journalier de %d publications a été atteint. La publication a été rejetée."
+msgid "Birthday (%s):"
+msgstr "Anniversaire (%s) :"
 
-#: ../../include/api.php:790
-#, php-format
-msgid "Weekly posting limit of %d posts reached. The post was rejected."
-msgstr "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée."
+#: ../../mod/profiles.php:705
+msgid "Street Address:"
+msgstr "Adresse postale :"
 
-#: ../../include/api.php:809
-#, php-format
-msgid "Monthly posting limit of %d posts reached. The post was rejected."
-msgstr "Le quota mensuel de %d publications a été atteint. La publication a été rejetée."
+#: ../../mod/profiles.php:706
+msgid "Locality/City:"
+msgstr "Ville / Localité :"
 
-#: ../../include/api.php:1272
-msgid "There is no status with this id."
-msgstr "Il n'y a pas de statut avec cet id."
+#: ../../mod/profiles.php:707
+msgid "Postal/Zip Code:"
+msgstr "Code postal :"
 
-#: ../../include/api.php:1342
-msgid "There is no conversation with this id."
-msgstr "Il n'y a pas de conversation avec cet id."
+#: ../../mod/profiles.php:708
+msgid "Country:"
+msgstr "Pays :"
 
-#: ../../include/api.php:1614
-msgid "Invalid request."
-msgstr "Requête invalide."
+#: ../../mod/profiles.php:709
+msgid "Region/State:"
+msgstr "Région / État :"
 
-#: ../../include/api.php:1625
-msgid "Invalid item."
-msgstr "Item invalide."
+#: ../../mod/profiles.php:710
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Statut marital :"
 
-#: ../../include/api.php:1635
-msgid "Invalid action. "
-msgstr "Action invalide."
+#: ../../mod/profiles.php:711
+msgid "Who: (if applicable)"
+msgstr "Qui : (si pertinent)"
 
-#: ../../include/api.php:1643
-msgid "DB error"
-msgstr ""
+#: ../../mod/profiles.php:712
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Exemples: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../include/user.php:40
-msgid "An invitation is required."
-msgstr "Une invitation est requise."
+#: ../../mod/profiles.php:713
+msgid "Since [date]:"
+msgstr "Depuis [date]  :"
 
-#: ../../include/user.php:45
-msgid "Invitation could not be verified."
-msgstr "L'invitation fournie n'a pu être validée."
+#: ../../mod/profiles.php:715
+msgid "Homepage URL:"
+msgstr "Page personnelle :"
 
-#: ../../include/user.php:53
-msgid "Invalid OpenID url"
-msgstr "Adresse OpenID invalide"
+#: ../../mod/profiles.php:718
+msgid "Religious Views:"
+msgstr "Opinions religieuses :"
 
-#: ../../include/user.php:74
-msgid "Please enter the required information."
-msgstr "Entrez les informations requises."
+#: ../../mod/profiles.php:719
+msgid "Public Keywords:"
+msgstr "Mots-clés publics :"
 
-#: ../../include/user.php:88
-msgid "Please use a shorter name."
-msgstr "Utilisez un nom plus court."
+#: ../../mod/profiles.php:720
+msgid "Private Keywords:"
+msgstr "Mots-clés privés :"
 
-#: ../../include/user.php:90
-msgid "Name too short."
-msgstr "Nom trop court."
+#: ../../mod/profiles.php:723
+msgid "Example: fishing photography software"
+msgstr "Exemple : football dessin programmation"
 
-#: ../../include/user.php:105
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Ceci ne semble pas être votre nom complet (Prénom Nom)."
+#: ../../mod/profiles.php:724
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)"
 
-#: ../../include/user.php:110
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Votre domaine de courriel n'est pas autorisé sur ce site."
+#: ../../mod/profiles.php:725
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)"
 
-#: ../../include/user.php:113
-msgid "Not a valid email address."
-msgstr "Ceci n'est pas une adresse courriel valide."
+#: ../../mod/profiles.php:726
+msgid "Tell us about yourself..."
+msgstr "Parlez-nous de vous..."
 
-#: ../../include/user.php:126
-msgid "Cannot use that email."
-msgstr "Impossible d'utiliser ce courriel."
+#: ../../mod/profiles.php:727
+msgid "Hobbies/Interests"
+msgstr "Passe-temps / Centres d'intérêt"
 
-#: ../../include/user.php:132
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre."
+#: ../../mod/profiles.php:728
+msgid "Contact information and Social Networks"
+msgstr "Coordonnées / Réseaux sociaux"
 
-#: ../../include/user.php:138 ../../include/user.php:236
-msgid "Nickname is already registered. Please choose another."
-msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
+#: ../../mod/profiles.php:729
+msgid "Musical interests"
+msgstr "Goûts musicaux"
 
-#: ../../include/user.php:148
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre."
+#: ../../mod/profiles.php:730
+msgid "Books, literature"
+msgstr "Lectures"
 
-#: ../../include/user.php:164
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué."
+#: ../../mod/profiles.php:731
+msgid "Television"
+msgstr "Télévision"
 
-#: ../../include/user.php:222
-msgid "An error occurred during registration. Please try again."
-msgstr "Une erreur est survenue lors de l'inscription. Merci de recommencer."
+#: ../../mod/profiles.php:732
+msgid "Film/dance/culture/entertainment"
+msgstr "Cinéma / Danse / Culture / Divertissement"
 
-#: ../../include/user.php:257
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer."
+#: ../../mod/profiles.php:733
+msgid "Love/romance"
+msgstr "Amour / Romance"
 
-#: ../../include/user.php:289 ../../include/user.php:293
-#: ../../include/profile_selectors.php:42
-msgid "Friends"
-msgstr "Amis"
+#: ../../mod/profiles.php:734
+msgid "Work/employment"
+msgstr "Activité professionnelle / Occupation"
 
-#: ../../include/user.php:377
-#, php-format
-msgid ""
-"\n"
-"\t\tDear %1$s,\n"
-"\t\t\tThank you for registering at %2$s. Your account has been created.\n"
-"\t"
-msgstr "\n\t\tChère/Cher %1$s,\n\t\t\tMerci de vous être inscrit sur %2$s. Votre compte a bien été créé.\n\t"
+#: ../../mod/profiles.php:735
+msgid "School/education"
+msgstr "Études / Formation"
 
-#: ../../include/user.php:381
-#, php-format
+#: ../../mod/profiles.php:740
 msgid ""
-"\n"
-"\t\tThe login details are as follows:\n"
-"\t\t\tSite Location:\t%3$s\n"
-"\t\t\tLogin Name:\t%1$s\n"
-"\t\t\tPassword:\t%5$s\n"
-"\n"
-"\t\tYou may change your password from your account \"Settings\" page after logging\n"
-"\t\tin.\n"
-"\n"
-"\t\tPlease take a few moments to review the other account settings on that page.\n"
-"\n"
-"\t\tYou may also wish to add some basic information to your default profile\n"
-"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n"
-"\n"
-"\t\tWe recommend setting your full name, adding a profile photo,\n"
-"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n"
-"\t\tperhaps what country you live in; if you do not wish to be more specific\n"
-"\t\tthan that.\n"
-"\n"
-"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n"
-"\t\tIf you are new and do not know anybody here, they may help\n"
-"\t\tyou to make some new and interesting friends.\n"
-"\n"
-"\n"
-"\t\tThank you and welcome to %2$s."
-msgstr "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3$s\n\t\t\tIdentifiant :\t%1$s\n\t\t\tMot de passe :\t%5$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2$s."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet."
 
-#: ../../include/diaspora.php:703
-msgid "Sharing notification from Diaspora network"
-msgstr "Notification de partage du réseau Diaspora"
+#: ../../mod/profiles.php:750 ../../mod/directory.php:113
+msgid "Age: "
+msgstr "Age : "
 
-#: ../../include/diaspora.php:2520
-msgid "Attachments:"
-msgstr "Pièces jointes : "
+#: ../../mod/profiles.php:803
+msgid "Edit/Manage Profiles"
+msgstr "Editer / gérer les profils"
 
-#: ../../include/items.php:4555
-msgid "Do you really want to delete this item?"
-msgstr "Voulez-vous vraiment supprimer cet élément ?"
+#: ../../mod/install.php:117
+msgid "Friendica Communications Server - Setup"
+msgstr "Serveur de communications Friendica - Configuration"
 
-#: ../../include/items.php:4778
-msgid "Archives"
-msgstr "Archives"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Impossible de se connecter à la base."
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Masculin"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Impossible de créer une table."
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Féminin"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "La base de données de votre site Friendica a bien été installée."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Actuellement masculin"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql."
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Actuellement féminin"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:525
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Référez-vous au fichier \"INSTALL.txt\"."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Principalement masculin"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Vérifications système"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Principalement féminin"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Vérifier à nouveau"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgenre"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Connexion à la base de données"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Inter-sexe"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuel"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages."
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodite"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutre"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Serveur de base de données"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non-spécifique"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nom d'utilisateur de la base"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Autre"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Mot de passe de la base"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indécis"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nom de la base"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Hommes"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Adresse électronique de l'administrateur du site"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmes"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid ""
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration."
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Sélectionner un fuseau horaire par défaut pour votre site"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbienne"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Réglages du site"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Sans préférence"
+#: ../../mod/install.php:321
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuel"
+#: ../../mod/install.php:322
+msgid ""
+"If you don't have a command line version of PHP installed on server, you "
+"will not be able to run background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Auto-sexuel"
+#: ../../mod/install.php:326
+msgid "PHP executable path"
+msgstr "Chemin vers l'exécutable de PHP"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../mod/install.php:326
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation."
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vierge"
+#: ../../mod/install.php:331
+msgid "Command line PHP"
+msgstr "Version \"ligne de commande\" de PHP"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Déviant"
+#: ../../mod/install.php:340
+msgid "PHP executable is not the php cli binary (could be cgi-fgci version)"
+msgstr "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fétichiste"
+#: ../../mod/install.php:341
+msgid "Found PHP version: "
+msgstr "Version de PHP:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../mod/install.php:343
+msgid "PHP cli binary"
+msgstr "PHP cli binary"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Non-sexuel"
+#: ../../mod/install.php:354
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Célibataire"
+#: ../../mod/install.php:355
+msgid "This is required for message delivery to work."
+msgstr "Ceci est requis pour que la livraison des messages fonctionne."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Esseulé"
+#: ../../mod/install.php:357
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponible"
+#: ../../mod/install.php:378
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Indisponible"
+#: ../../mod/install.php:379
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "Attiré par quelqu'un"
+#: ../../mod/install.php:381
+msgid "Generate encryption keys"
+msgstr "Générer les clés de chiffrement"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "Entiché"
+#: ../../mod/install.php:388
+msgid "libCurl PHP module"
+msgstr "Module libCurl de PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dans une relation"
+#: ../../mod/install.php:389
+msgid "GD graphics PHP module"
+msgstr "Module GD (graphiques) de PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infidèle"
+#: ../../mod/install.php:390
+msgid "OpenSSL PHP module"
+msgstr "Module OpenSSL de PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Accro au sexe"
+#: ../../mod/install.php:391
+msgid "mysqli PHP module"
+msgstr "Module Mysqli de PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amis par intérêt"
+#: ../../mod/install.php:392
+msgid "mb_string PHP module"
+msgstr "Module mb_string de PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/install.php:397 ../../mod/install.php:399
+msgid "Apache mod_rewrite module"
+msgstr "Module mod_rewrite Apache"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Fiancé"
+#: ../../mod/install.php:397
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Marié"
+#: ../../mod/install.php:405
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"libCURL\" est requis mais pas installé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "Se croit marié"
+#: ../../mod/install.php:409
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partenaire"
+#: ../../mod/install.php:413
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"openssl\" est requis mais pas installé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "En cohabitation"
+#: ../../mod/install.php:417
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Erreur : Le module PHP \"mysqli\" est requis mais pas installé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "Marié \"de fait\"/\"sui juris\" (concubin)"
+#: ../../mod/install.php:421
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Erreur : le module PHP mb_string est requis mais pas installé."
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Heureux"
+#: ../../mod/install.php:438
+msgid ""
+"The web installer needs to be able to create a file called \".htconfig.php\""
+" in the top folder of your web server and it is unable to do so."
+msgstr "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable."
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Pas intéressé"
+#: ../../mod/install.php:439
+msgid ""
+"This is most often a permission setting, as the web server may not be able "
+"to write files in your folder - even if you can."
+msgstr "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez."
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Échangiste"
+#: ../../mod/install.php:440
+msgid ""
+"At the end of this procedure, we will give you a text to save in a file "
+"named .htconfig.php in your Friendica top folder."
+msgstr "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica."
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Trahi(e)"
+#: ../../mod/install.php:441
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\"."
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Séparé"
+#: ../../mod/install.php:444
+msgid ".htconfig.php is writable"
+msgstr "Fichier .htconfig.php accessible en écriture"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instable"
+#: ../../mod/install.php:454
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu."
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorcé"
+#: ../../mod/install.php:455
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
+msgstr "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "Se croit divorcé"
+#: ../../mod/install.php:456
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier."
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Veuf/Veuve"
+#: ../../mod/install.php:457
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient."
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incertain"
+#: ../../mod/install.php:460
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 est autorisé à l écriture"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "C'est compliqué"
+#: ../../mod/install.php:472
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur."
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "S'en désintéresse"
+#: ../../mod/install.php:474
+msgid "Url rewrite is working"
+msgstr "La réécriture d'URL fonctionne."
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Me demander"
+#: ../../mod/install.php:484
+msgid ""
+"The database configuration file \".htconfig.php\" could not be written. "
+"Please use the enclosed text to create a configuration file in your web "
+"server root."
+msgstr "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement."
 
-#: ../../include/enotify.php:18
-msgid "Friendica Notification"
-msgstr "Notification Friendica"
+#: ../../mod/install.php:523
+msgid "<h1>What next</h1>"
+msgstr "<h1>Ensuite</h1>"
 
-#: ../../include/enotify.php:21
-msgid "Thank You,"
-msgstr "Merci, "
+#: ../../mod/install.php:524
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\"."
 
-#: ../../include/enotify.php:23
-#, php-format
-msgid "%s Administrator"
-msgstr "L'administrateur de %s"
+#: ../../mod/help.php:31
+msgid "Help:"
+msgstr "Aide :"
 
-#: ../../include/enotify.php:64
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/crepair.php:106
+msgid "Contact settings applied."
+msgstr "Réglages du contact appliqués."
 
-#: ../../include/enotify.php:68
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notification] Nouveau courriel reçu sur %s"
+#: ../../mod/crepair.php:108
+msgid "Contact update failed."
+msgstr "Impossible d'appliquer les réglages."
 
-#: ../../include/enotify.php:70
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s vous a envoyé un nouveau message privé sur %2$s."
+#: ../../mod/crepair.php:139
+msgid "Repair Contact Settings"
+msgstr "Réglages de réparation des contacts"
 
-#: ../../include/enotify.php:71
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s vous a envoyé %2$s."
+#: ../../mod/crepair.php:141
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact."
 
-#: ../../include/enotify.php:71
-msgid "a private message"
-msgstr "un message privé"
+#: ../../mod/crepair.php:142
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "une photo"
 
-#: ../../include/enotify.php:72
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Merci de visiter %s pour voir vos messages privés et/ou y répondre."
+#: ../../mod/crepair.php:148
+msgid "Return to contact editor"
+msgstr "Retour à l'éditeur de contact"
 
-#: ../../include/enotify.php:124
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]un %3$s[/url]"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "No mirroring"
+msgstr ""
 
-#: ../../include/enotify.php:131
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s a commenté sur [url=%2$s]le %4$s de %3$s[/url]"
+#: ../../mod/crepair.php:159
+msgid "Mirror as forwarded posting"
+msgstr ""
 
-#: ../../include/enotify.php:139
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: ../../mod/crepair.php:159 ../../mod/crepair.php:161
+msgid "Mirror as my own posting"
+msgstr ""
 
-#: ../../include/enotify.php:149
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notification] Commentaire de %2$s sur la conversation #%1$d"
+#: ../../mod/crepair.php:166
+msgid "Account Nickname"
+msgstr "Pseudo du compte"
 
-#: ../../include/enotify.php:150
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s a commenté un élément que vous suivez."
+#: ../../mod/crepair.php:167
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@NomEtiquette - prend le pas sur Nom/Pseudo"
 
-#: ../../include/enotify.php:153 ../../include/enotify.php:168
-#: ../../include/enotify.php:181 ../../include/enotify.php:194
-#: ../../include/enotify.php:212 ../../include/enotify.php:225
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Merci de visiter %s pour voir la conversation et/ou y répondre."
+#: ../../mod/crepair.php:168
+msgid "Account URL"
+msgstr "URL du compte"
 
-#: ../../include/enotify.php:160
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notification] %s a posté sur votre mur de profil"
+#: ../../mod/crepair.php:169
+msgid "Friend Request URL"
+msgstr "Echec du téléversement de l'image."
 
-#: ../../include/enotify.php:162
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s a publié sur votre mur à %2$s"
+#: ../../mod/crepair.php:170
+msgid "Friend Confirm URL"
+msgstr "Accès public refusé."
 
-#: ../../include/enotify.php:164
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s a posté sur [url=%2$s]votre mur[/url]"
+#: ../../mod/crepair.php:171
+msgid "Notification Endpoint URL"
+msgstr "Aucune photo sélectionnée"
 
-#: ../../include/enotify.php:175
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notification] %s vous a étiqueté"
+#: ../../mod/crepair.php:172
+msgid "Poll/Feed URL"
+msgstr "Téléverser des photos"
 
-#: ../../include/enotify.php:176
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s vous a étiqueté sur %2$s"
+#: ../../mod/crepair.php:173
+msgid "New photo from this URL"
+msgstr "Nouvelle photo depuis cette URL"
 
-#: ../../include/enotify.php:177
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]vous a étiqueté[/url]."
+#: ../../mod/crepair.php:174
+msgid "Remote Self"
+msgstr ""
 
-#: ../../include/enotify.php:188
-#, php-format
-msgid "[Friendica:Notify] %s shared a new post"
-msgstr "[Friendica:Notification] %s partage une nouvelle publication"
+#: ../../mod/crepair.php:176
+msgid "Mirror postings from this contact"
+msgstr ""
 
-#: ../../include/enotify.php:189
-#, php-format
-msgid "%1$s shared a new post at %2$s"
-msgstr "%1$s a partagé une nouvelle publication sur %2$s"
+#: ../../mod/crepair.php:176
+msgid ""
+"Mark this contact as remote_self, this will cause friendica to repost new "
+"entries from this contact."
+msgstr ""
 
-#: ../../include/enotify.php:190
-#, php-format
-msgid "%1$s [url=%2$s]shared a post[/url]."
-msgstr "%1$s [url=%2$s]partage une publication[/url]."
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Bienvenue sur Friendica"
 
-#: ../../include/enotify.php:202
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify] %1$s vous a sollicité"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checklist du nouvel utilisateur"
 
-#: ../../include/enotify.php:203
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s vous a sollicité via %2$s"
+#: ../../mod/newmember.php:12
+msgid ""
+"We would like to offer some tips and links to help make your experience "
+"enjoyable. Click any item to visit the relevant page. A link to this page "
+"will be visible from your home page for two weeks after your initial "
+"registration and then will quietly disappear."
+msgstr "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement."
 
-#: ../../include/enotify.php:204
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s vous a [url=%2$s]sollicité[/url]."
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Bien démarrer"
 
-#: ../../include/enotify.php:219
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notification] %s a étiqueté votre publication"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica pas-à-pas"
 
-#: ../../include/enotify.php:220
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s a étiqueté votre publication sur %2$s"
+#: ../../mod/newmember.php:18
+msgid ""
+"On your <em>Quick Start</em> page - find a brief introduction to your "
+"profile and network tabs, make some new connections, and find some groups to"
+" join."
+msgstr "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre."
 
-#: ../../include/enotify.php:221
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s a étiqueté [url=%2$s]votre publication[/url]"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Éditer vos Réglages"
 
-#: ../../include/enotify.php:232
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notification] Introduction reçue"
+#: ../../mod/newmember.php:26
+msgid ""
+"On your <em>Settings</em> page -  change your initial password. Also make a "
+"note of your Identity Address. This looks just like an email address - and "
+"will be useful in making friends on the free social web."
+msgstr "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre."
 
-#: ../../include/enotify.php:233
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "Vous avez reçu une introduction de '%1$s' sur %2$s"
+#: ../../mod/newmember.php:28
+msgid ""
+"Review the other settings, particularly the privacy settings. An unpublished"
+" directory listing is like having an unlisted phone number. In general, you "
+"should probably publish your listing - unless all of your friends and "
+"potential friends know exactly how to find you."
+msgstr "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver."
 
-#: ../../include/enotify.php:234
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "Vous avez reçu [url=%1$s]une introduction[/url] de %2$s."
+#: ../../mod/newmember.php:36
+msgid ""
+"Upload a profile photo if you have not done so already. Studies have shown "
+"that people with real photos of themselves are ten times more likely to make"
+" friends than people who do not."
+msgstr "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis."
 
-#: ../../include/enotify.php:237 ../../include/enotify.php:279
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Vous pouvez visiter son profil sur %s"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Éditer votre Profil"
 
-#: ../../include/enotify.php:239
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Merci de visiter %s pour approuver ou rejeter l'introduction."
+#: ../../mod/newmember.php:38
+msgid ""
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown"
+" visitors."
+msgstr "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus."
+
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Mots-clés du profil"
+
+#: ../../mod/newmember.php:40
+msgid ""
+"Set some public keywords for your default profile which describe your "
+"interests. We may be able to find other people with similar interests and "
+"suggest friendships."
+msgstr "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent."
+
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Connexions"
+
+#: ../../mod/newmember.php:49
+msgid ""
+"Authorise the Facebook Connector if you currently have a Facebook account "
+"and we will (optionally) import all your Facebook friends and conversations."
+msgstr "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook."
+
+#: ../../mod/newmember.php:51
+msgid ""
+"<em>If</em> this is your own personal server, installing the Facebook addon "
+"may ease your transition to the free social web."
+msgstr "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre."
+
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importer courriels"
 
-#: ../../include/enotify.php:247
-msgid "[Friendica:Notify] A new person is sharing with you"
-msgstr ""
+#: ../../mod/newmember.php:56
+msgid ""
+"Enter your email access information on your Connector Settings page if you "
+"wish to import and interact with friends or mailing lists from your email "
+"INBOX"
+msgstr "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception."
 
-#: ../../include/enotify.php:248 ../../include/enotify.php:249
-#, php-format
-msgid "%1$s is sharing with you at %2$s"
-msgstr ""
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Consulter vos Contacts"
 
-#: ../../include/enotify.php:255
-msgid "[Friendica:Notify] You have a new follower"
-msgstr ""
+#: ../../mod/newmember.php:58
+msgid ""
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Add New Contact</em> dialog."
+msgstr "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>."
 
-#: ../../include/enotify.php:256 ../../include/enotify.php:257
-#, php-format
-msgid "You have a new follower at %2$s : %1$s"
-msgstr ""
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Consulter l'Annuaire de votre Site"
 
-#: ../../include/enotify.php:270
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notification] Nouvelle suggestion d'amitié"
+#: ../../mod/newmember.php:60
+msgid ""
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
+msgstr "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité."
 
-#: ../../include/enotify.php:271
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Vous avez reçu une suggestion de '%1$s' sur %2$s"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trouver de nouvelles personnes"
 
-#: ../../include/enotify.php:272
-#, php-format
+#: ../../mod/newmember.php:62
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "Vous avez reçu [url=%1$s]une suggestion[/url] de %3$s pour %2$s."
+"On the side panel of the Contacts page are several tools to find new "
+"friends. We can match people by interest, look up people by name or "
+"interest, and provide suggestions based on network relationships. On a brand"
+" new site, friend suggestions will usually begin to be populated within 24 "
+"hours."
+msgstr "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures."
 
-#: ../../include/enotify.php:277
-msgid "Name:"
-msgstr "Nom :"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grouper vos contacts"
 
-#: ../../include/enotify.php:278
-msgid "Photo:"
-msgstr "Photo :"
+#: ../../mod/newmember.php:70
+msgid ""
+"Once you have made some friends, organize them into private conversation "
+"groups from the sidebar of your Contacts page and then you can interact with"
+" each group privately on your Network page."
+msgstr "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau."
 
-#: ../../include/enotify.php:281
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Merci de visiter %s pour approuver ou rejeter la suggestion."
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Pourquoi mes éléments ne sont pas publics ?"
 
-#: ../../include/enotify.php:289 ../../include/enotify.php:302
-msgid "[Friendica:Notify] Connection accepted"
-msgstr ""
+#: ../../mod/newmember.php:73
+msgid ""
+"Friendica respects your privacy. By default, your posts will only show up to"
+" people you've added as friends. For more information, see the help section "
+"from the link above."
+msgstr "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus."
 
-#: ../../include/enotify.php:290 ../../include/enotify.php:303
-#, php-format
-msgid "'%1$s' has acepted your connection request at %2$s"
-msgstr ""
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Obtenir de l'aide"
 
-#: ../../include/enotify.php:291 ../../include/enotify.php:304
-#, php-format
-msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
-msgstr ""
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Aller à la section Aide"
 
-#: ../../include/enotify.php:294
+#: ../../mod/newmember.php:82
 msgid ""
-"You are now mutual friends and may exchange status updates, photos, and email\n"
-"\twithout restriction."
-msgstr ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources."
 
-#: ../../include/enotify.php:297 ../../include/enotify.php:311
-#, php-format
-msgid "Please visit %s  if you wish to make any changes to this relationship."
-msgstr ""
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Solliciter"
 
-#: ../../include/enotify.php:307
-#, php-format
-msgid ""
-"'%1$s' has chosen to accept you a \"fan\", which restricts some forms of "
-"communication - such as private messaging and some profile interactions. If "
-"this is a celebrity or community page, these settings were applied "
-"automatically."
-msgstr ""
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "solliciter (poke/...) quelqu'un"
 
-#: ../../include/enotify.php:309
-#, php-format
-msgid ""
-"'%1$s' may choose to extend this into a two-way or more permissive "
-"relationship in the future. "
-msgstr ""
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinataire"
 
-#: ../../include/enotify.php:322
-msgid "[Friendica System:Notify] registration request"
-msgstr ""
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Choisissez ce que vous voulez faire au destinataire"
 
-#: ../../include/enotify.php:323
-#, php-format
-msgid "You've received a registration request from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Rendez ce message privé"
 
-#: ../../include/enotify.php:324
-#, php-format
-msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
-msgstr "Vous avez reçu une [url=%1$s]demande de création de compte[/url] de %2$s."
+#: ../../mod/display.php:496
+msgid "Item has been removed."
+msgstr "Cet élément a été enlevé."
 
-#: ../../include/enotify.php:327
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "Full Name:\t%1$s\\nSite Location:\t%2$s\\nLogin Name:\t%3$s (%4$s)"
-msgstr "Nom complet :\t%1$s\\nAdresse :\t%2$s\\nIdentifiant :\t%3$s (%4$s)"
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s suit les %3$s de %2$s"
 
-#: ../../include/enotify.php:330
+#: ../../mod/dfrn_poll.php:103 ../../mod/dfrn_poll.php:536
 #, php-format
-msgid "Please visit %s to approve or reject the request."
-msgstr "Veuillez visiter %s pour approuver ou rejeter la demande."
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s accueille %2$s"
 
-#: ../../include/oembed.php:212
-msgid "Embedded content"
-msgstr "Contenu incorporé"
+#: ../../mod/dfrn_confirm.php:121
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé."
 
-#: ../../include/oembed.php:221
-msgid "Embedding disabled"
-msgstr "Incorporation désactivée"
+#: ../../mod/dfrn_confirm.php:240
+msgid "Response from remote site was not understood."
+msgstr "Réponse du site distant incomprise."
 
-#: ../../include/uimport.php:94
-msgid "Error decoding account file"
-msgstr "Une erreur a été détecté en décodant un fichier utilisateur"
+#: ../../mod/dfrn_confirm.php:249 ../../mod/dfrn_confirm.php:254
+msgid "Unexpected response from remote site: "
+msgstr "Réponse inattendue du site distant : "
 
-#: ../../include/uimport.php:100
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?"
+#: ../../mod/dfrn_confirm.php:263
+msgid "Confirmation completed successfully."
+msgstr "Confirmation achevée avec succès."
 
-#: ../../include/uimport.php:116 ../../include/uimport.php:127
-msgid "Error! Cannot check nickname"
-msgstr "Erreur! Pseudo invalide"
+#: ../../mod/dfrn_confirm.php:265 ../../mod/dfrn_confirm.php:279
+#: ../../mod/dfrn_confirm.php:286
+msgid "Remote site reported: "
+msgstr "Alerte du site distant : "
 
-#: ../../include/uimport.php:120 ../../include/uimport.php:131
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
+#: ../../mod/dfrn_confirm.php:277
+msgid "Temporary failure. Please wait and try again."
+msgstr "Échec temporaire. Merci de recommencer ultérieurement."
 
-#: ../../include/uimport.php:153
-msgid "User creation error"
-msgstr "Erreur de création d'utilisateur"
+#: ../../mod/dfrn_confirm.php:284
+msgid "Introduction failed or was revoked."
+msgstr "Introduction échouée ou annulée."
 
-#: ../../include/uimport.php:171
-msgid "User profile creation error"
-msgstr "Erreur de création du profil utilisateur"
+#: ../../mod/dfrn_confirm.php:429
+msgid "Unable to set contact photo."
+msgstr "Impossible de définir la photo du contact."
 
-#: ../../include/uimport.php:220
+#: ../../mod/dfrn_confirm.php:571
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%d contacts non importés"
-msgstr[1] "%d contacts non importés"
-
-#: ../../include/uimport.php:290
-msgid "Done. You can now login with your username and password"
-msgstr "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe"
+msgid "No user record found for '%s' "
+msgstr "Pas d'utilisateur trouvé pour '%s' "
 
-#: ../../index.php:428
-msgid "toggle mobile"
-msgstr "activ. mobile"
+#: ../../mod/dfrn_confirm.php:581
+msgid "Our site encryption key is apparently messed up."
+msgstr "Notre clé de chiffrement de site est apparemment corrompue."
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-#: ../../view/theme/diabook/config.php:150 ../../view/theme/vier/config.php:55
-#: ../../view/theme/duepuntozero/config.php:61
-msgid "Theme settings"
-msgstr "Réglages du thème graphique"
+#: ../../mod/dfrn_confirm.php:592
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "URL de site absente ou indéchiffrable."
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)"
+#: ../../mod/dfrn_confirm.php:613
+msgid "Contact record was not found for you on our site."
+msgstr "Pas d'entrée pour ce contact sur notre site."
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/dispy/config.php:73
-#: ../../view/theme/diabook/config.php:151
-msgid "Set font-size for posts and comments"
-msgstr "Réglez 'font-size' (taille de police) pour publications et commentaires"
+#: ../../mod/dfrn_confirm.php:627
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s."
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Largeur du thème"
+#: ../../mod/dfrn_confirm.php:647
+msgid ""
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez."
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Palette de couleurs"
+#: ../../mod/dfrn_confirm.php:658
+msgid "Unable to set your contact credentials on our system."
+msgstr "Impossible de vous définir des permissions sur notre système."
 
-#: ../../view/theme/dispy/config.php:74
-#: ../../view/theme/diabook/config.php:152
-msgid "Set line-height for posts and comments"
-msgstr "Réglez 'line-height' (hauteur de police) pour publications et commentaires"
+#: ../../mod/dfrn_confirm.php:725
+msgid "Unable to update your contact profile details on our system"
+msgstr "Impossible de mettre les détails de votre profil à jour sur notre système"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Choisir le schéma de couleurs"
+#: ../../mod/dfrn_confirm.php:797
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s a rejoint %2$s"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Alignement"
+#: ../../mod/item.php:114
+msgid "Unable to locate original post."
+msgstr "Impossible de localiser la publication originale."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Gauche"
+#: ../../mod/item.php:346
+msgid "Empty post discarded."
+msgstr "Publication vide rejetée."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centre"
+#: ../../mod/item.php:839
+msgid "System error. Post not saved."
+msgstr "Erreur système. Publication non sauvée."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Taille de texte des publications"
+#: ../../mod/item.php:965
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Ce message vous a été envoyé par %s, membre du réseau social Friendica."
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Taille de police des zones de texte"
+#: ../../mod/item.php:967
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Vous pouvez leur rendre visite sur %s"
 
-#: ../../view/theme/diabook/config.php:153
-msgid "Set resolution for middle column"
-msgstr "Réglez la résolution de la colonne centrale"
+#: ../../mod/item.php:968
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages."
 
-#: ../../view/theme/diabook/config.php:154
-msgid "Set color scheme"
-msgstr "Choisir le schéma de couleurs"
+#: ../../mod/item.php:972
+#, php-format
+msgid "%s posted an update."
+msgstr "%s a publié une mise à jour."
 
-#: ../../view/theme/diabook/config.php:155
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Niveau de zoom"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Image envoyée, mais impossible de la retailler."
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/diabook/theme.php:585
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Régler la longitude (X) pour la géolocalisation"
+#: ../../mod/profile_photo.php:77 ../../mod/profile_photo.php:84
+#: ../../mod/profile_photo.php:91 ../../mod/profile_photo.php:308
+#, php-format
+msgid "Image size reduction [%s] failed."
+msgstr "Réduction de la taille de l'image [%s] échouée."
 
-#: ../../view/theme/diabook/config.php:157
-#: ../../view/theme/diabook/theme.php:586
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Régler la latitude (Y) pour la géolocalisation"
+#: ../../mod/profile_photo.php:118
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement."
 
-#: ../../view/theme/diabook/config.php:158
-#: ../../view/theme/diabook/theme.php:130
-#: ../../view/theme/diabook/theme.php:544
-#: ../../view/theme/diabook/theme.php:624
-msgid "Community Pages"
-msgstr "Pages de Communauté"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Impossible de traiter l'image"
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/theme.php:625
-msgid "Earth Layers"
-msgstr "Géolocalisation"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Fichier à téléverser:"
 
-#: ../../view/theme/diabook/config.php:160
-#: ../../view/theme/diabook/theme.php:391
-#: ../../view/theme/diabook/theme.php:626
-msgid "Community Profiles"
-msgstr "Profils communautaires"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Choisir un profil:"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:627
-msgid "Help or @NewHere ?"
-msgstr "Aide ou @NewHere?"
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Téléverser"
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:628
-msgid "Connect Services"
-msgstr "Connecter des services"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "ignorer cette étape"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:523
-#: ../../view/theme/diabook/theme.php:629
-msgid "Find Friends"
-msgstr "Trouver des amis"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "choisissez une photo depuis vos albums"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:412
-#: ../../view/theme/diabook/theme.php:630
-msgid "Last users"
-msgstr "Derniers utilisateurs"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "(Re)cadrer l'image"
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:486
-#: ../../view/theme/diabook/theme.php:631
-msgid "Last photos"
-msgstr "Dernières photos"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ajustez le cadre de l'image pour une visualisation optimale."
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:441
-#: ../../view/theme/diabook/theme.php:632
-msgid "Last likes"
-msgstr "Dernièrement aimé"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Édition terminée"
 
-#: ../../view/theme/diabook/theme.php:125
-msgid "Your contacts"
-msgstr "Vos contacts"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Image téléversée avec succès."
 
-#: ../../view/theme/diabook/theme.php:128
-msgid "Your personal photos"
-msgstr "Vos photos personnelles"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amis de %s"
 
-#: ../../view/theme/diabook/theme.php:524
-msgid "Local Directory"
-msgstr "Annuaire local"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Pas d'amis à afficher."
 
-#: ../../view/theme/diabook/theme.php:584
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Régler le niveau de zoom pour la géolocalisation"
+#: ../../mod/directory.php:59
+msgid "Find on this site"
+msgstr "Trouver sur ce site"
 
-#: ../../view/theme/diabook/theme.php:622
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Montrer/cacher les boîtes dans la colonne de droite :"
+#: ../../mod/directory.php:62
+msgid "Site Directory"
+msgstr "Annuaire local"
 
-#: ../../view/theme/vier/config.php:56
-msgid "Set style"
-msgstr "Définir le style"
+#: ../../mod/directory.php:116
+msgid "Gender: "
+msgstr "Genre : "
 
-#: ../../view/theme/duepuntozero/config.php:45
-msgid "greenzero"
-msgstr ""
+#: ../../mod/directory.php:189
+msgid "No entries (some entries may be hidden)."
+msgstr "Aucune entrée (certaines peuvent être cachées)."
 
-#: ../../view/theme/duepuntozero/config.php:46
-msgid "purplezero"
-msgstr ""
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversion temporelle"
 
-#: ../../view/theme/duepuntozero/config.php:47
-msgid "easterbunny"
-msgstr ""
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire."
 
-#: ../../view/theme/duepuntozero/config.php:48
-msgid "darkzero"
-msgstr ""
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Temps UTC : %s"
 
-#: ../../view/theme/duepuntozero/config.php:49
-msgid "comix"
-msgstr ""
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Zone de temps courante : %s"
 
-#: ../../view/theme/duepuntozero/config.php:50
-msgid "slackr"
-msgstr ""
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Temps local converti : %s"
 
-#: ../../view/theme/duepuntozero/config.php:62
-msgid "Variations"
-msgstr ""
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Sélectionner votre zone :"
index ef4bca5dbf7a11bc55ca6121ff67fff0fcf8590b..168c786811bb3828175a1a32d98e776907c7e08c 100644 (file)
@@ -5,1547 +5,304 @@ function string_plural_select_fr($n){
        return ($n > 1);;
 }}
 ;
-$a->strings["%d contact edited."] = array(
-       0 => "%d contact édité",
-       1 => "%d contacts édités.",
-);
-$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
-$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
-$a->strings["Contact updated."] = "Contact mis-à-jour.";
-$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact.";
+$a->strings["Submit"] = "Envoyer";
+$a->strings["Theme settings"] = "Réglages du thème graphique";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)";
+$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires";
+$a->strings["Set theme width"] = "Largeur du thème";
+$a->strings["Color scheme"] = "Palette de couleurs";
+$a->strings["Set style"] = "Définir le style";
+$a->strings["default"] = "défaut";
+$a->strings["greenzero"] = "";
+$a->strings["purplezero"] = "";
+$a->strings["easterbunny"] = "";
+$a->strings["darkzero"] = "";
+$a->strings["comix"] = "";
+$a->strings["slackr"] = "";
+$a->strings["Variations"] = "Variations";
+$a->strings["don't show"] = "cacher";
+$a->strings["show"] = "montrer";
+$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires";
+$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale";
+$a->strings["Set color scheme"] = "Choisir le schéma de couleurs";
+$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom";
+$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation";
+$a->strings["Community Pages"] = "Pages de Communauté";
+$a->strings["Earth Layers"] = "Géolocalisation";
+$a->strings["Community Profiles"] = "Profils communautaires";
+$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?";
+$a->strings["Connect Services"] = "Connecter des services";
+$a->strings["Find Friends"] = "Trouver des amis";
+$a->strings["Last users"] = "Derniers utilisateurs";
+$a->strings["Last photos"] = "Dernières photos";
+$a->strings["Last likes"] = "Dernièrement aimé";
+$a->strings["Home"] = "Profil";
+$a->strings["Your posts and conversations"] = "Vos publications et conversations";
+$a->strings["Profile"] = "Profil";
+$a->strings["Your profile page"] = "Votre page de profil";
+$a->strings["Contacts"] = "Contacts";
+$a->strings["Your contacts"] = "Vos contacts";
+$a->strings["Photos"] = "Photos";
+$a->strings["Your photos"] = "Vos photos";
+$a->strings["Events"] = "Événements";
+$a->strings["Your events"] = "Vos événements";
+$a->strings["Personal notes"] = "Notes personnelles";
+$a->strings["Your personal photos"] = "Vos photos personnelles";
+$a->strings["Community"] = "Communauté";
+$a->strings["event"] = "évènement";
+$a->strings["status"] = "le statut";
+$a->strings["photo"] = "photo";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
+$a->strings["Contact Photos"] = "Photos du contact";
+$a->strings["Profile Photos"] = "Photos du profil";
+$a->strings["Local Directory"] = "Annuaire local";
+$a->strings["Global Directory"] = "Annuaire global";
+$a->strings["Similar Interests"] = "Intérêts similaires";
+$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
+$a->strings["Invite Friends"] = "Inviter des amis";
+$a->strings["Settings"] = "Réglages";
+$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation";
+$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :";
+$a->strings["Alignment"] = "Alignement";
+$a->strings["Left"] = "Gauche";
+$a->strings["Center"] = "Centre";
+$a->strings["Posts font size"] = "Taille de texte des publications";
+$a->strings["Textareas font size"] = "Taille de police des zones de texte";
+$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
+$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
+$a->strings["Not Found"] = "Non trouvé";
+$a->strings["Page not found."] = "Page introuvable.";
+$a->strings["Permission denied"] = "Permission refusée";
 $a->strings["Permission denied."] = "Permission refusée.";
-$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
-$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
-$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
-$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
-$a->strings["Contact has been archived"] = "Contact archivé";
-$a->strings["Contact has been unarchived"] = "Contact désarchivé";
-$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
+$a->strings["toggle mobile"] = "activ. mobile";
+$a->strings["Do you wish to confirm your identity (<tt>%s</tt>) with <tt>%s</tt>"] = "Voulez-vous confirmer votre identité (<tt>%s</tt>) avec <tt>%s</tt>e";
+$a->strings["Confirm"] = "Confirmer";
+$a->strings["Do not confirm"] = "Ne pas confirmer";
+$a->strings["Trust This Site"] = "Faire confiance à ce site";
+$a->strings["No Identifier Sent"] = "Aucun identifiant envoyé";
+$a->strings["Requested identity don't match logged in user."] = "La requête d'identité ne correspond pas à l'utilisateur connecté.";
+$a->strings["Please wait; you are being redirected to <%s>"] = "Veuillez patienter, vous êtes redirigé vers <%s>";
+$a->strings["Delete this item?"] = "Effacer cet élément?";
+$a->strings["Comment"] = "Commenter";
+$a->strings["show more"] = "montrer plus";
+$a->strings["show fewer"] = "montrer moins";
+$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
+$a->strings["Create a New Account"] = "Créer un nouveau compte";
+$a->strings["Register"] = "S'inscrire";
+$a->strings["Logout"] = "Se déconnecter";
+$a->strings["Login"] = "Connexion";
+$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: ";
+$a->strings["Password: "] = "Mot de passe: ";
+$a->strings["Remember me"] = "Se souvenir de moi";
+$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: ";
+$a->strings["Forgot your password?"] = "Mot de passe oublié?";
+$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
+$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet";
+$a->strings["terms of service"] = "conditions d'utilisation";
+$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet";
+$a->strings["privacy policy"] = "politique de confidentialité";
+$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
+$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
+$a->strings["Edit profile"] = "Editer le profil";
+$a->strings["Connect"] = "Relier";
+$a->strings["Message"] = "Message";
+$a->strings["Profiles"] = "Profils";
+$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
+$a->strings["Change profile photo"] = "Changer de photo de profil";
+$a->strings["Create New Profile"] = "Créer un nouveau profil";
+$a->strings["Profile Image"] = "Image du profil";
+$a->strings["visible to everybody"] = "visible par tous";
+$a->strings["Edit visibility"] = "Changer la visibilité";
+$a->strings["Location:"] = "Localisation:";
+$a->strings["Gender:"] = "Genre:";
+$a->strings["Status:"] = "Statut:";
+$a->strings["Homepage:"] = "Page personnelle:";
+$a->strings["About:"] = "À propos:";
+$a->strings["Network:"] = "Réseau";
+$a->strings["g A l F d"] = "g A | F d";
+$a->strings["F d"] = "F d";
+$a->strings["[today]"] = "[aujourd'hui]";
+$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
+$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:";
+$a->strings["[No description]"] = "[Sans description]";
+$a->strings["Event Reminders"] = "Rappels d'événements";
+$a->strings["Events this week:"] = "Evénements cette semaine :";
+$a->strings["Status"] = "Statut";
+$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
+$a->strings["Profile Details"] = "Détails du profil";
+$a->strings["Photo Albums"] = "Albums photo";
+$a->strings["Videos"] = "Vidéos";
+$a->strings["Events and Calendar"] = "Événements et agenda";
+$a->strings["Personal Notes"] = "Notes personnelles";
+$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
+$a->strings["General Features"] = "Fonctions générales";
+$a->strings["Multiple Profiles"] = "Profils multiples";
+$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
+$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication";
+$a->strings["Richtext Editor"] = "Éditeur de texte enrichi";
+$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
+$a->strings["Post Preview"] = "Aperçu de la publication";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier";
+$a->strings["Auto-mention Forums"] = "";
+$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
+$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale";
+$a->strings["Search by Date"] = "Rechercher par Date";
+$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates";
+$a->strings["Group Filter"] = "Filtre de groupe";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné";
+$a->strings["Network Filter"] = "Filtre de réseau";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné";
+$a->strings["Saved Searches"] = "Recherches";
+$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure";
+$a->strings["Network Tabs"] = "Onglets Réseau";
+$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit";
+$a->strings["Network New Tab"] = "Nouvel onglet réseaux";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)";
+$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens";
+$a->strings["Post/Comment Tools"] = "outils de publication/commentaire";
+$a->strings["Multiple Deletion"] = "Suppression multiple";
+$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois";
+$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
+$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi";
+$a->strings["Tagging"] = "Étiquettage";
+$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes";
+$a->strings["Post Categories"] = "Catégories des publications";
+$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
+$a->strings["Saved Folders"] = "Dossiers sauvegardés";
+$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires";
+$a->strings["Dislike Posts"] = "Publications non aimées";
+$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires";
+$a->strings["Star Posts"] = "Publications spéciales";
+$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile";
+$a->strings["Mute Post Notifications"] = "";
+$a->strings["Ability to mute notifications for a thread"] = "";
+$a->strings["%s's birthday"] = "Anniversaire de %s's";
+$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
+$a->strings["[Name Withheld]"] = "[Nom non-publié]";
+$a->strings["Item not found."] = "Élément introuvable.";
+$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?";
 $a->strings["Yes"] = "Oui";
 $a->strings["Cancel"] = "Annuler";
-$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
-$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
-$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
-$a->strings["%s is sharing with you"] = "%s partage avec vous";
-$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
-$a->strings["Never"] = "Jamais";
-$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
-$a->strings["(Update was not successful)"] = "(Mise à jour échouée)";
-$a->strings["Suggest friends"] = "Suggérer amitié/contact";
-$a->strings["Network type: %s"] = "Type de réseau %s";
+$a->strings["Archives"] = "Archives";
+$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
+$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
+$a->strings["Everybody"] = "Tout le monde";
+$a->strings["edit"] = "éditer";
+$a->strings["Groups"] = "Groupes";
+$a->strings["Edit group"] = "Editer groupe";
+$a->strings["Create a new group"] = "Créer un nouveau groupe";
+$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
+$a->strings["add"] = "ajouter";
+$a->strings["Wall Photos"] = "Photos du mur";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
+$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
+$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invitation disponible",
+       1 => "%d invitations disponibles",
+);
+$a->strings["Find People"] = "Trouver des personnes";
+$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
+$a->strings["Connect/Follow"] = "Connecter/Suivre";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
+$a->strings["Find"] = "Trouver";
+$a->strings["Random Profile"] = "Profil au hasard";
+$a->strings["Networks"] = "Réseaux";
+$a->strings["All Networks"] = "Tous réseaux";
+$a->strings["Everything"] = "Tout";
+$a->strings["Categories"] = "Catégories";
 $a->strings["%d contact in common"] = array(
        0 => "%d contact en commun",
        1 => "%d contacts en commun",
 );
-$a->strings["View all contacts"] = "Voir tous les contacts";
-$a->strings["Unblock"] = "Débloquer";
-$a->strings["Block"] = "Bloquer";
-$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
-$a->strings["Unignore"] = "Ne plus ignorer";
-$a->strings["Ignore"] = "Ignorer";
-$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
-$a->strings["Unarchive"] = "Désarchiver";
-$a->strings["Archive"] = "Archiver";
-$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
-$a->strings["Repair"] = "Réparer";
-$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
-$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
-$a->strings["Contact Editor"] = "Éditeur de contact";
-$a->strings["Submit"] = "Envoyer";
-$a->strings["Profile Visibility"] = "Visibilité du profil";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
-$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
-$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
-$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
-$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
-$a->strings["Ignore contact"] = "Ignorer ce contact";
-$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
-$a->strings["View conversations"] = "Voir les conversations";
-$a->strings["Delete contact"] = "Effacer ce contact";
-$a->strings["Last update:"] = "Dernière mise-à-jour :";
-$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
-$a->strings["Update now"] = "Mettre à jour";
-$a->strings["Currently blocked"] = "Actuellement bloqué";
-$a->strings["Currently ignored"] = "Actuellement ignoré";
-$a->strings["Currently archived"] = "Actuellement archivé";
-$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
-$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
-$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
-$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
-$a->strings["Disabled"] = "Désactivé";
-$a->strings["Fetch information"] = "Récupérer informations";
-$a->strings["Fetch information and keywords"] = "Récupérer informations";
-$a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire";
-$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné.";
-$a->strings["Suggestions"] = "Suggestions";
-$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
-$a->strings["All Contacts"] = "Tous les contacts";
-$a->strings["Show all contacts"] = "Montrer tous les contacts";
-$a->strings["Unblocked"] = "Non-bloqués";
-$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
-$a->strings["Blocked"] = "Bloqués";
-$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
-$a->strings["Ignored"] = "Ignorés";
-$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
-$a->strings["Archived"] = "Archivés";
-$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
-$a->strings["Hidden"] = "Cachés";
-$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
-$a->strings["Mutual Friendship"] = "Relation réciproque";
-$a->strings["is a fan of yours"] = "Vous suit";
-$a->strings["you are a fan of"] = "Vous le/la suivez";
-$a->strings["Edit contact"] = "Éditer le contact";
-$a->strings["Contacts"] = "Contacts";
-$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
-$a->strings["Finding: "] = "Trouvé: ";
-$a->strings["Find"] = "Trouver";
-$a->strings["Update"] = "Mises-à-jour";
-$a->strings["Delete"] = "Supprimer";
-$a->strings["No profile"] = "Aucun profil";
-$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
-$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
-$a->strings["Post successful."] = "Publication réussie.";
-$a->strings["Permission denied"] = "Permission refusée";
-$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
-$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
-$a->strings["Profile"] = "Profil";
-$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
-$a->strings["Visible To"] = "Visible par";
-$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
-$a->strings["Item not found."] = "Élément introuvable.";
-$a->strings["Public access denied."] = "Accès public refusé.";
-$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
-$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
-$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
-$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
-$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
-$a->strings["Getting Started"] = "Bien démarrer";
-$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
-$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
-$a->strings["Settings"] = "Réglages";
-$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
-$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
-$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
-$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
-$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
-$a->strings["Edit Your Profile"] = "Éditer votre Profil";
-$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
-$a->strings["Profile Keywords"] = "Mots-clés du profil";
-$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
-$a->strings["Connecting"] = "Connexions";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook.";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre.";
-$a->strings["Importing Emails"] = "Importer courriels";
-$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
-$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
-$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
-$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
-$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
-$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
-$a->strings["Groups"] = "Groupes";
-$a->strings["Group Your Contacts"] = "Grouper vos contacts";
-$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
-$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics?";
-$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
-$a->strings["Getting Help"] = "Obtenir de l'aide";
-$a->strings["Go to the Help Section"] = "Aller à la section Aide";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
-$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
-$a->strings["Login failed."] = "Échec de connexion.";
-$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
-$a->strings["Profile Photos"] = "Photos du profil";
-$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
-$a->strings["Unable to process image"] = "Impossible de traiter l'image";
-$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
-$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
-$a->strings["Upload File:"] = "Fichier à téléverser:";
-$a->strings["Select a profile:"] = "Choisir un profil:";
-$a->strings["Upload"] = "Téléverser";
-$a->strings["or"] = "ou";
-$a->strings["skip this step"] = "ignorer cette étape";
-$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
-$a->strings["Crop Image"] = "(Re)cadrer l'image";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
-$a->strings["Done Editing"] = "Édition terminée";
-$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
-$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
-$a->strings["photo"] = "photo";
-$a->strings["status"] = "le statut";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
-$a->strings["Tag removed"] = "Étiquette supprimée";
-$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
-$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: ";
-$a->strings["Remove"] = "Utiliser comme photo de profil";
-$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
-$a->strings["- select -"] = "- choisir -";
-$a->strings["Save"] = "Sauver";
-$a->strings["Contact added"] = "Contact ajouté";
-$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale.";
-$a->strings["Empty post discarded."] = "Publication vide rejetée.";
-$a->strings["Wall Photos"] = "Photos du mur";
-$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica.";
-$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
-$a->strings["%s posted an update."] = "%s a publié une mise à jour.";
-$a->strings["Group created."] = "Groupe créé.";
-$a->strings["Could not create group."] = "Impossible de créer le groupe.";
-$a->strings["Group not found."] = "Groupe introuvable.";
-$a->strings["Group name changed."] = "Groupe renommé.";
-$a->strings["Save Group"] = "Sauvegarder le groupe";
-$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
-$a->strings["Group Name: "] = "Nom du groupe: ";
-$a->strings["Group removed."] = "Groupe enlevé.";
-$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
-$a->strings["Group Editor"] = "Éditeur de groupe";
-$a->strings["Members"] = "Membres";
-$a->strings["You must be logged in to use addons. "] = "Vous devez être connecté pour utiliser les greffons.";
-$a->strings["Applications"] = "Applications";
-$a->strings["No installed applications."] = "Pas d'application installée.";
-$a->strings["Profile not found."] = "Profil introuvable.";
-$a->strings["Contact not found."] = "Contact introuvable.";
-$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé.";
-$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise.";
-$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant: ";
-$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès.";
-$a->strings["Remote site reported: "] = "Alerte du site distant: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement.";
-$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée.";
-$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s";
-$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' ";
-$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable.";
-$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site.";
-$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez.";
-$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système.";
-$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
-$a->strings["[Name Withheld]"] = "[Nom non-publié]";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
-$a->strings["Requested profile is not available."] = "Le profil demandé n'est pas disponible.";
-$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
-$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
-$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
-$a->strings["View Video"] = "Regarder la vidéo";
-$a->strings["View Album"] = "Voir l'album";
-$a->strings["Recent Videos"] = "Vidéos récente";
-$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s";
-$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
-$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
-$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
-$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
-$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous.";
-$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\t%3\$s";
-$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
-$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
-$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
-$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
-$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
-$a->strings["click here to login"] = "cliquez ici pour vous connecter";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
-$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t";
-$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t";
-$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
-$a->strings["Forgot your Password?"] = "Mot de passe oublié?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
-$a->strings["Nickname or Email: "] = "Pseudo ou Courriel: ";
-$a->strings["Reset"] = "Réinitialiser";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
-$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
-$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
-$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
-$a->strings["{0} commented %s's post"] = "{0} a commenté la publication de %s";
-$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s";
-$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s";
-$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
-$a->strings["{0} posted"] = "{0} a publié";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication";
-$a->strings["No contacts."] = "Aucun contact.";
-$a->strings["View Contacts"] = "Voir les contacts";
-$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
-$a->strings["Discard"] = "Rejeter";
-$a->strings["System"] = "Système";
-$a->strings["Network"] = "Réseau";
-$a->strings["Personal"] = "Personnel";
-$a->strings["Home"] = "Profil";
-$a->strings["Introductions"] = "Introductions";
-$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
-$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
-$a->strings["Notification type: "] = "Type de notification: ";
-$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
-$a->strings["suggested by %s"] = "suggéré(e) par %s";
-$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
-$a->strings["if applicable"] = "si possible";
-$a->strings["Approve"] = "Approuver";
-$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
-$a->strings["yes"] = "oui";
-$a->strings["no"] = "non";
-$a->strings["Approve as: "] = "Approuver en tant que: ";
-$a->strings["Friend"] = "Ami";
-$a->strings["Sharer"] = "Initiateur du partage";
-$a->strings["Fan/Admirer"] = "Fan/Admirateur";
-$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
-$a->strings["New Follower"] = "Nouvel abonné";
-$a->strings["No introductions."] = "Aucune demande d'introduction.";
-$a->strings["Notifications"] = "Notifications";
-$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
-$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
-$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
-$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
-$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
-$a->strings["No more network notifications."] = "Aucune notification du réseau.";
-$a->strings["Network Notifications"] = "Notifications du réseau";
-$a->strings["No more system notifications."] = "Pas plus de notifications système.";
-$a->strings["System Notifications"] = "Notifications du système";
-$a->strings["No more personal notifications."] = "Aucun notification personnelle.";
-$a->strings["Personal Notifications"] = "Notifications personnelles";
-$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil.";
-$a->strings["Home Notifications"] = "Notifications de page d'accueil";
-$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :";
-$a->strings["Source input: "] = "Source input: ";
-$a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)";
-$a->strings["bb2html: "] = "bb2html: ";
-$a->strings["bb2html2bb: "] = "bb2html2bb: ";
-$a->strings["bb2md: "] = "bb2md: ";
-$a->strings["bb2md2html: "] = "bb2md2html: ";
-$a->strings["bb2dia2bb: "] = "bb2dia2bb: ";
-$a->strings["bb2md2html2bb: "] = "bb2md2html2bb: ";
-$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :";
-$a->strings["diaspora2bb: "] = "diaspora2bb :";
-$a->strings["Nothing new here"] = "Rien de neuf ici";
-$a->strings["Clear notifications"] = "Effacer les notifications";
-$a->strings["New Message"] = "Nouveau message";
-$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
-$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
-$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
-$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
-$a->strings["Message sent."] = "Message envoyé.";
-$a->strings["Messages"] = "Messages";
-$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
-$a->strings["Message deleted."] = "Message supprimé.";
-$a->strings["Conversation removed."] = "Conversation supprimée.";
-$a->strings["Please enter a link URL:"] = "Entrez un lien web:";
-$a->strings["Send Private Message"] = "Envoyer un message privé";
-$a->strings["To:"] = "À:";
-$a->strings["Subject:"] = "Sujet:";
-$a->strings["Your message:"] = "Votre message:";
-$a->strings["Upload photo"] = "Joindre photo";
-$a->strings["Insert web link"] = "Insérer lien web";
-$a->strings["Please wait"] = "Patientez";
-$a->strings["No messages."] = "Aucun message.";
-$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
-$a->strings["You and %s"] = "Vous et %s";
-$a->strings["%s and You"] = "%s et vous";
-$a->strings["Delete conversation"] = "Effacer conversation";
-$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
-$a->strings["%d message"] = array(
-       0 => "%d message",
-       1 => "%d messages",
-);
-$a->strings["Message not available."] = "Message indisponible.";
-$a->strings["Delete message"] = "Effacer message";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
-$a->strings["Send Reply"] = "Répondre";
-$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
-$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
-$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
-$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
-$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
-$a->strings["No mirroring"] = "";
-$a->strings["Mirror as forwarded posting"] = "";
-$a->strings["Mirror as my own posting"] = "";
-$a->strings["Name"] = "Nom";
-$a->strings["Account Nickname"] = "Pseudo du compte";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
-$a->strings["Account URL"] = "URL du compte";
-$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
-$a->strings["Friend Confirm URL"] = "Accès public refusé.";
-$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
-$a->strings["Poll/Feed URL"] = "Téléverser des photos";
-$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
-$a->strings["Remote Self"] = "";
-$a->strings["Mirror postings from this contact"] = "";
-$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
-$a->strings["Login"] = "Connexion";
-$a->strings["The post was created"] = "";
-$a->strings["Access denied."] = "Accès refusé.";
-$a->strings["People Search"] = "Recherche de personnes";
-$a->strings["No matches"] = "Aucune correspondance";
-$a->strings["Photos"] = "Photos";
-$a->strings["Files"] = "Fichiers";
-$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
-$a->strings["Theme settings updated."] = "Réglages du thème sauvés.";
-$a->strings["Site"] = "Site";
-$a->strings["Users"] = "Utilisateurs";
-$a->strings["Plugins"] = "Extensions";
-$a->strings["Themes"] = "Thèmes";
-$a->strings["DB updates"] = "Mise-à-jour de la base";
-$a->strings["Logs"] = "Journaux";
-$a->strings["probe address"] = "";
-$a->strings["check webfinger"] = "";
-$a->strings["Admin"] = "Admin";
-$a->strings["Plugin Features"] = "Propriétés des extensions";
-$a->strings["diagnostics"] = "";
-$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation";
-$a->strings["Normal Account"] = "Compte normal";
-$a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
-$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité";
-$a->strings["Automatic Friend Account"] = "Compte auto-amical";
-$a->strings["Blog Account"] = "Compte de blog";
-$a->strings["Private Forum"] = "Forum privé";
-$a->strings["Message queues"] = "Files d'attente des messages";
-$a->strings["Administration"] = "Administration";
-$a->strings["Summary"] = "Résumé";
-$a->strings["Registered users"] = "Utilisateurs inscrits";
-$a->strings["Pending registrations"] = "Inscriptions en attente";
-$a->strings["Version"] = "Versio";
-$a->strings["Active plugins"] = "Extensions activés";
-$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>";
-$a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
-$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
-$a->strings["No community page"] = "";
-$a->strings["Public postings from users of this site"] = "";
-$a->strings["Global community page"] = "";
-$a->strings["At post arrival"] = "A l'arrivé d'une publication";
-$a->strings["Frequently"] = "Fréquemment";
-$a->strings["Hourly"] = "Toutes les heures";
-$a->strings["Twice daily"] = "Deux fois par jour";
-$a->strings["Daily"] = "Chaque jour";
-$a->strings["Multi user instance"] = "Instance multi-utilisateurs";
-$a->strings["Closed"] = "Fermé";
-$a->strings["Requires approval"] = "Demande une apptrobation";
-$a->strings["Open"] = "Ouvert";
-$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page";
-$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)";
-$a->strings["Save Settings"] = "Sauvegarder les paramétres";
-$a->strings["Registration"] = "Inscription";
-$a->strings["File upload"] = "Téléversement de fichier";
-$a->strings["Policies"] = "Politiques";
-$a->strings["Advanced"] = "Avancé";
-$a->strings["Performance"] = "Performance";
-$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible.";
-$a->strings["Site name"] = "Nom du site";
-$a->strings["Host name"] = "Nom de la machine hôte";
-$a->strings["Sender Email"] = "";
-$a->strings["Banner/Logo"] = "Bannière/Logo";
-$a->strings["Shortcut icon"] = "";
-$a->strings["Touch icon"] = "";
-$a->strings["Additional Info"] = "Informations supplémentaires";
-$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo.";
-$a->strings["System language"] = "Langue du système";
-$a->strings["System theme"] = "Thème du système";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>";
-$a->strings["Mobile system theme"] = "Thème mobile";
-$a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles";
-$a->strings["SSL link policy"] = "Politique SSL pour les liens";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'utilisation de SSL";
-$a->strings["Force SSL"] = "SSL obligatoire";
-$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies.";
-$a->strings["Old style 'Share'"] = "Anciens style 'Partage'";
-$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Désactive l'élément 'partage' de bbcode pour répéter les articles.";
-$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
-$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help.";
-$a->strings["Single user instance"] = "Instance mono-utilisateur";
-$a->strings["Make this instance multi-user or single-user for the named user"] = "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur.";
-$a->strings["Maximum image size"] = "Taille maximale des images";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\".";
-$a->strings["Maximum image length"] = "Longueur maximale des images";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite.";
-$a->strings["JPEG image quality"] = "Qualité JPEG des images";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.";
-$a->strings["Register policy"] = "Politique d'inscription";
-$a->strings["Maximum Daily Registrations"] = "Inscriptions maximum par jour";
-$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet.";
-$a->strings["Register text"] = "Texte d'inscription";
-$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur la page d'accueil.";
-$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction.";
-$a->strings["Allowed friend domains"] = "Domaines autorisés";
-$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines";
-$a->strings["Allowed email domains"] = "Domaines courriel autorisés";
-$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines";
-$a->strings["Block public"] = "Interdire la publication globale";
-$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques.";
-$a->strings["Force publish"] = "Forcer la publication globale";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site.";
-$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global";
-$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible.";
-$a->strings["Allow threaded items"] = "autoriser le suivi des éléments par fil conducteur";
-$a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires.";
-$a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs";
-$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.";
-$a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification";
-$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité.";
-$a->strings["Disallow public access to addons listed in the apps menu."] = "Interdire l’accès public pour les greffons listées dans le menu apps.";
-$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres.";
-$a->strings["Don't embed private images in posts"] = "Ne pas miniaturiser les images privées dans les publications";
-$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps.";
-$a->strings["Allow Users to set remote_self"] = "Autoriser les utilisateurs à définir remote_self";
-$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs.";
-$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages.";
-$a->strings["OpenID support"] = "Support OpenID";
-$a->strings["OpenID support for registration and logins."] = "Supporter OpenID pour les inscriptions et connexions.";
-$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\"";
-$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus";
-$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8";
-$a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8";
-$a->strings["Community Page Style"] = "";
-$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
-$a->strings["Posts per user on community page"] = "";
-$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
-$a->strings["Enable OStatus support"] = "Activer le support d'OStatus";
-$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile.";
-$a->strings["OStatus conversation completion interval"] = "Achèvement de l'intervalle de conversation OStatus ";
-$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources.";
-$a->strings["Enable Diaspora support"] = "Activer le support de Diaspora";
-$a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée.";
-$a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés.";
-$a->strings["Verify SSL"] = "Vérifier SSL";
-$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé.";
-$a->strings["Proxy user"] = "Utilisateur du proxy";
-$a->strings["Proxy URL"] = "URL du proxy";
-$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau";
-$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé).";
-$a->strings["Delivery interval"] = "Intervalle de transmission";
-$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés.";
-$a->strings["Poll interval"] = "Intervalle de réception";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission.";
-$a->strings["Maximum Load Average"] = "Plafond de la charge moyenne";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50.";
-$a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus.";
-$a->strings["Suppress Language"] = "Supprimer un langage";
-$a->strings["Suppress language information in meta information about a posting."] = "Supprimer les informations de langue dans les métadonnées des publications.";
-$a->strings["Suppress Tags"] = "";
-$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
-$a->strings["Path to item cache"] = "Chemin vers le cache des objets.";
-$a->strings["Cache duration in seconds"] = "Durée du cache en secondes";
-$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1.";
-$a->strings["Maximum numbers of comments per post"] = "Nombre maximum de commentaires par publication";
-$a->strings["How much comments should be shown for each post? Default value is 100."] = "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100.";
-$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage";
-$a->strings["Temp path"] = "Chemin des fichiers temporaires";
-$a->strings["Base path to installation"] = "Chemin de base de l'installation";
-$a->strings["Disable picture proxy"] = "Désactiver le proxy image ";
-$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante.";
-$a->strings["Enable old style pager"] = "";
-$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
-$a->strings["Only search in tags"] = "";
-$a->strings["On large systems the text search can slow down the system extremely."] = "";
-$a->strings["New base url"] = "Nouvelle URL de base";
-$a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'";
-$a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès.";
-$a->strings["Executing of database structure update %s failed with error: %s"] = "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s";
-$a->strings["Executing %s failed with error: %s"] = "L'exécution %s a échoué avec l'erreur: %s";
-$a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès.";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi.";
-$a->strings["There was no additional update function %s that needed to be called."] = "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé";
-$a->strings["No failed updates."] = "Pas de mises-à-jour échouées.";
-$a->strings["Check database structure"] = "Vérifier la structure de la base de données";
-$a->strings["Failed Updates"] = "Mises-à-jour échouées";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails.";
-$a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)";
-$a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement";
-$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tChère/Cher %1\$s,\n\t\t\t\tL’administrateur de %2\$s vous a ouvert un compte.";
-$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1\$s\n\t\t\tIdentifiant :\t\t%2\$s\n\t\t\tMot de passe :\t\t%3\$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4\$s.";
-$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "%s utilisateur a (dé)bloqué",
-       1 => "%s utilisateurs ont (dé)bloqué",
-);
-$a->strings["%s user deleted"] = array(
-       0 => "%s utilisateur supprimé",
-       1 => "%s utilisateurs supprimés",
-);
-$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
-$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
-$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
-$a->strings["Add User"] = "Ajouter l'utilisateur";
-$a->strings["select all"] = "tout sélectionner";
-$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
-$a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive";
-$a->strings["Request date"] = "Date de la demande";
-$a->strings["Email"] = "Courriel";
-$a->strings["No registrations."] = "Pas d'inscriptions.";
-$a->strings["Deny"] = "Rejetter";
-$a->strings["Site admin"] = "Administration du Site";
-$a->strings["Account expired"] = "Compte expiré";
-$a->strings["New User"] = "Nouvel utilisateur";
-$a->strings["Register date"] = "Date d'inscription";
-$a->strings["Last login"] = "Dernière connexion";
-$a->strings["Last item"] = "Dernier élément";
-$a->strings["Deleted since"] = "Supprimé depuis";
-$a->strings["Account"] = "Compte";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?";
-$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
-$a->strings["Name of the new user."] = "Nom du nouvel utilisateur.";
-$a->strings["Nickname"] = "Pseudo";
-$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur.";
-$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur.";
-$a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
-$a->strings["Plugin %s enabled."] = "Extension %s activée.";
-$a->strings["Disable"] = "Désactiver";
-$a->strings["Enable"] = "Activer";
-$a->strings["Toggle"] = "Activer/Désactiver";
-$a->strings["Author: "] = "Auteur: ";
-$a->strings["Maintainer: "] = "Mainteneur: ";
-$a->strings["No themes found."] = "Aucun thème trouvé.";
-$a->strings["Screenshot"] = "Capture d'écran";
-$a->strings["[Experimental]"] = "[Expérimental]";
-$a->strings["[Unsupported]"] = "[Non supporté]";
-$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour.";
-$a->strings["Clear"] = "Effacer";
-$a->strings["Enable Debugging"] = "Activer le déboggage";
-$a->strings["Log file"] = "Fichier de journaux";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.";
-$a->strings["Log level"] = "Niveau de journalisaton";
-$a->strings["Close"] = "Fermer";
-$a->strings["FTP Host"] = "Hôte FTP";
-$a->strings["FTP Path"] = "Chemin FTP";
-$a->strings["FTP User"] = "Utilisateur FTP";
-$a->strings["FTP Password"] = "Mot de passe FTP";
-$a->strings["Search Results For:"] = "Résultats pour:";
-$a->strings["Remove term"] = "Retirer le terme";
-$a->strings["Saved Searches"] = "Recherches";
-$a->strings["add"] = "ajouter";
-$a->strings["Commented Order"] = "Tri par commentaires";
-$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
-$a->strings["Posted Order"] = "Tri des publications";
-$a->strings["Sort by Post Date"] = "Trier par date de publication";
-$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
-$a->strings["New"] = "Nouveau";
-$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
-$a->strings["Shared Links"] = "Liens partagés";
-$a->strings["Interesting Links"] = "Liens intéressants";
-$a->strings["Starred"] = "Mis en avant";
-$a->strings["Favourite Posts"] = "Publications favorites";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
-       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
-$a->strings["No such group"] = "Groupe inexistant";
-$a->strings["Group is empty"] = "Groupe vide";
-$a->strings["Group: "] = "Groupe: ";
-$a->strings["Contact: "] = "Contact: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
-$a->strings["Invalid contact."] = "Contact invalide.";
-$a->strings["Friends of %s"] = "Amis de %s";
-$a->strings["No friends to display."] = "Pas d'amis à afficher.";
-$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Editer l'événement";
-$a->strings["link to source"] = "lien original";
-$a->strings["Events"] = "Événements";
-$a->strings["Create New Event"] = "Créer un nouvel événement";
-$a->strings["Previous"] = "Précédent";
-$a->strings["Next"] = "Suivant";
-$a->strings["hour:minute"] = "heures:minutes";
-$a->strings["Event details"] = "Détails de l'événement";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires.";
-$a->strings["Event Starts:"] = "Début de l'événement:";
-$a->strings["Required"] = "Requis";
-$a->strings["Finish date/time is not known or not relevant"] = "Date/heure de fin inconnue ou sans objet";
-$a->strings["Event Finishes:"] = "Fin de l'événement:";
-$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
-$a->strings["Description:"] = "Description:";
-$a->strings["Location:"] = "Localisation:";
-$a->strings["Title:"] = "Titre :";
-$a->strings["Share this event"] = "Partager cet événement";
-$a->strings["Select"] = "Sélectionner";
-$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
-$a->strings["%s from %s"] = "%s de %s";
-$a->strings["View in context"] = "Voir dans le contexte";
-$a->strings["%d comment"] = array(
-       0 => "%d commentaire",
-       1 => "%d commentaires",
-);
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "commentaire",
-);
-$a->strings["show more"] = "montrer plus";
-$a->strings["Private Message"] = "Message privé";
-$a->strings["I like this (toggle)"] = "J'aime (bascule)";
-$a->strings["like"] = "aime";
-$a->strings["I don't like this (toggle)"] = "Je n'aime pas (bascule)";
-$a->strings["dislike"] = "n'aime pas";
-$a->strings["Share this"] = "Partager";
-$a->strings["share"] = "partager";
-$a->strings["This is you"] = "C'est vous";
-$a->strings["Comment"] = "Commenter";
-$a->strings["Bold"] = "Gras";
-$a->strings["Italic"] = "Italique";
-$a->strings["Underline"] = "Souligné";
-$a->strings["Quote"] = "Citation";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Image";
-$a->strings["Link"] = "Lien";
-$a->strings["Video"] = "Vidéo";
-$a->strings["Preview"] = "Aperçu";
-$a->strings["Edit"] = "Éditer";
-$a->strings["add star"] = "mett en avant";
-$a->strings["remove star"] = "ne plus mettre en avant";
-$a->strings["toggle star status"] = "mettre en avant";
-$a->strings["starred"] = "mis en avant";
-$a->strings["add tag"] = "ajouter une étiquette";
-$a->strings["save to folder"] = "sauver vers dossier";
-$a->strings["to"] = "à";
-$a->strings["Wall-to-Wall"] = "Inter-mur";
-$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
-$a->strings["Remove My Account"] = "Supprimer mon compte";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
-$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification:";
-$a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
-$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
-$a->strings["Could not create table."] = "Impossible de créer une table.";
-$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
-$a->strings["System check"] = "Vérifications système";
-$a->strings["Check again"] = "Vérifier à nouveau";
-$a->strings["Database connection"] = "Connexion à la base de données";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
-$a->strings["Database Server Name"] = "Serveur de base de données";
-$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
-$a->strings["Database Login Password"] = "Mot de passe de la base";
-$a->strings["Database Name"] = "Nom de la base";
-$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
-$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
-$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
-$a->strings["Site settings"] = "Réglages du site";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
-$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
-$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
-$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
-$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
-$a->strings["Found PHP version: "] = "Version de PHP:";
-$a->strings["PHP cli binary"] = "PHP cli binary";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
-$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
-$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
-$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
-$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
-$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
-$a->strings["mysqli PHP module"] = "Module Mysqli de PHP";
-$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
-$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur: Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur: Le module PHP \"libCURL\" est requis mais pas installé.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur: Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé.";
-$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
-$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
-$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
-$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
-$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
-$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
-$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
-$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
-$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
-$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
-$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le 'poller'.";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
-$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
-$a->strings["No recipient."] = "Pas de destinataire.";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
-$a->strings["Help:"] = "Aide:";
-$a->strings["Help"] = "Aide";
-$a->strings["Not Found"] = "Non trouvé";
-$a->strings["Page not found."] = "Page introuvable.";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
-$a->strings["Welcome to %s"] = "Bienvenue sur %s";
-$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
-$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?";
-$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
-$a->strings["File upload failed."] = "Le téléversement a échoué.";
-$a->strings["Profile Match"] = "Correpondance de profils";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
-$a->strings["is interested in:"] = "s'intéresse à:";
-$a->strings["Connect"] = "Relier";
-$a->strings["link"] = "lien";
-$a->strings["Not available."] = "Indisponible.";
-$a->strings["Community"] = "Communauté";
-$a->strings["No results."] = "Aucun résultat.";
-$a->strings["everybody"] = "tout le monde";
-$a->strings["Additional features"] = "Fonctions supplémentaires";
-$a->strings["Display"] = "Afficher";
-$a->strings["Social Networks"] = "Réseaux sociaux";
-$a->strings["Delegations"] = "Délégations";
-$a->strings["Connected apps"] = "Applications connectées";
-$a->strings["Export personal data"] = "Exporter";
-$a->strings["Remove account"] = "Supprimer le compte";
-$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
-$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
-$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
-$a->strings["Features updated"] = "Fonctionnalités mises à jour";
-$a->strings["Relocate message has been send to your contacts"] = "Un message de relocalisation a été envoyé à vos contacts.";
-$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
-$a->strings["Wrong password."] = "Mauvais mot de passe.";
-$a->strings["Password changed."] = "Mots de passe changés.";
-$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
-$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
-$a->strings[" Name too short."] = " Nom trop court.";
-$a->strings["Wrong Password"] = "Mauvais mot de passe";
-$a->strings[" Not valid email."] = " Email invalide.";
-$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
-$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
-$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
-$a->strings["Settings updated."] = "Réglages mis à jour.";
-$a->strings["Add application"] = "Ajouter une application";
-$a->strings["Consumer Key"] = "Clé utilisateur";
-$a->strings["Consumer Secret"] = "Secret utilisateur";
-$a->strings["Redirect"] = "Rediriger";
-$a->strings["Icon url"] = "URL de l'icône";
-$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
-$a->strings["Connected Apps"] = "Applications connectées";
-$a->strings["Client key starts with"] = "La clé cliente commence par";
-$a->strings["No name"] = "Sans nom";
-$a->strings["Remove authorization"] = "Révoquer l'autorisation";
-$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
-$a->strings["Plugin Settings"] = "Extensions";
-$a->strings["Off"] = "Éteint";
-$a->strings["On"] = "Allumé";
-$a->strings["Additional Features"] = "Fonctions supplémentaires";
-$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["enabled"] = "activé";
-$a->strings["disabled"] = "désactivé";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
-$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
-$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
-$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
-$a->strings["IMAP port:"] = "Port IMAP:";
-$a->strings["Security:"] = "Sécurité:";
-$a->strings["None"] = "Aucun(e)";
-$a->strings["Email login name:"] = "Nom de connexion:";
-$a->strings["Email password:"] = "Mot de passe:";
-$a->strings["Reply-to address:"] = "Adresse de réponse:";
-$a->strings["Send public posts to all email contacts:"] = "Envoyer les publications publiques à tous les contacts courriels:";
-$a->strings["Action after import:"] = "Action après import:";
-$a->strings["Mark as seen"] = "Marquer comme vu";
-$a->strings["Move to folder"] = "Déplacer vers";
-$a->strings["Move to folder:"] = "Déplacer vers:";
-$a->strings["Display Settings"] = "Affichage";
-$a->strings["Display Theme:"] = "Thème d'affichage:";
-$a->strings["Mobile Theme:"] = "Thème mobile:";
-$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum";
-$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:";
-$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments";
-$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile";
-$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)";
-$a->strings["Don't show notices"] = "Ne plus afficher les avis";
-$a->strings["Infinite scroll"] = "Défilement infini";
-$a->strings["Automatic updates only at the top of the network page"] = "";
-$a->strings["User Types"] = "Types d'utilisateurs";
-$a->strings["Community Types"] = "Genre de communautés";
-$a->strings["Normal Account Page"] = "Compte normal";
-$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
-$a->strings["Soapbox Page"] = "Compte \"boîte à savon\"";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
-$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'";
-$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\"";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis";
-$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]";
-$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription";
-$a->strings["OpenID:"] = "OpenID:";
-$a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
-$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
-$a->strings["No"] = "Non";
-$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
-$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
-$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
-$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?";
-$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étiqueter vos publications?";
-$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?";
-$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?";
-$a->strings["Profile is <strong>not published</strong>."] = "Ce profil n'est <strong>pas publié</strong>.";
-$a->strings["Your Identity Address is"] = "L'adresse de votre identité est";
-$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées";
-$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration";
-$a->strings["Advanced Expiration"] = "Expiration (avancé)";
-$a->strings["Expire posts:"] = "Faire expirer les publications:";
-$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:";
-$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués:";
-$a->strings["Expire photos:"] = "Faire expirer les photos:";
-$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications des autres:";
-$a->strings["Account Settings"] = "Compte";
-$a->strings["Password Settings"] = "Réglages de mot de passe";
-$a->strings["New Password:"] = "Nouveau mot de passe:";
-$a->strings["Confirm:"] = "Confirmer:";
-$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer";
-$a->strings["Current Password:"] = "Mot de passe actuel:";
-$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications";
-$a->strings["Password:"] = "Mot de passe:";
-$a->strings["Basic Settings"] = "Réglages basiques";
-$a->strings["Full Name:"] = "Nom complet:";
-$a->strings["Email Address:"] = "Adresse courriel:";
-$a->strings["Your Timezone:"] = "Votre fuseau horaire:";
-$a->strings["Default Post Location:"] = "Emplacement de publication par défaut:";
-$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:";
-$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée";
-$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:";
-$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)";
-$a->strings["Default Post Permissions"] = "Permissions de publication par défaut";
-$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
-$a->strings["Show to Groups"] = "Montrer aux groupes";
-$a->strings["Show to Contacts"] = "Montrer aux Contacts";
-$a->strings["Default Private Post"] = "Message privé par défaut";
-$a->strings["Default Public Post"] = "Message publique par défaut";
-$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications";
-$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:";
-$a->strings["Notification Settings"] = "Réglages de notification";
-$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:";
-$a->strings["accepting a friend request"] = "j'accepte un ami";
-$a->strings["joining a forum/community"] = "joignant un forum/une communauté";
-$a->strings["making an <em>interesting</em> profile change"] = "je fais une modification <em>intéressante</em> de mon profil";
-$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:";
-$a->strings["You receive an introduction"] = "Vous recevez une introduction";
-$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées";
-$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
-$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente";
-$a->strings["You receive a private message"] = "Vous recevez un message privé";
-$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami";
-$a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication";
-$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication";
-$a->strings["Text-only notification emails"] = "";
-$a->strings["Send text only notification emails, without the html part"] = "";
-$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page";
-$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations";
-$a->strings["Relocate"] = "Relocaliser";
-$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.";
-$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts.";
-$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
-$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué",
-       1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué",
-);
-$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
-$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
-$a->strings["Profile unavailable."] = "Profil indisponible.";
-$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
-$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
-$a->strings["Invalid locator"] = "Localisateur invalide";
-$a->strings["Invalid email address."] = "Adresse courriel invalide.";
-$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée.";
-$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
-$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
-$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
-$a->strings["Invalid profile URL."] = "URL de profil invalide.";
-$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
-$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
-$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
-$a->strings["Hide this contact"] = "Cacher ce contact";
-$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
-$a->strings["Confirm"] = "Confirmer";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:";
-$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>.";
-$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
-$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
-$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
-$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
-$a->strings["Submit Request"] = "Envoyer la requête";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
-$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté.";
-$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
-$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
-$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
-$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
-$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
-$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
-$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
-$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
-$a->strings["Register"] = "S'inscrire";
-$a->strings["Import"] = "Importer";
-$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
-$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
-$a->strings["Search"] = "Recherche";
-$a->strings["Global Directory"] = "Annuaire global";
-$a->strings["Find on this site"] = "Trouver sur ce site";
-$a->strings["Site Directory"] = "Annuaire local";
-$a->strings["Age: "] = "Age: ";
-$a->strings["Gender: "] = "Genre: ";
-$a->strings["Gender:"] = "Genre:";
-$a->strings["Status:"] = "Statut:";
-$a->strings["Homepage:"] = "Page personnelle:";
-$a->strings["About:"] = "À propos:";
-$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
-$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel.";
-$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
-$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
-$a->strings["Existing Page Managers"] = "Gestionnaires existants";
-$a->strings["Existing Page Delegates"] = "Délégataires existants";
-$a->strings["Potential Delegates"] = "Délégataires potentiels";
-$a->strings["Add"] = "Ajouter";
-$a->strings["No entries."] = "Aucune entrée.";
-$a->strings["Common Friends"] = "Amis communs";
-$a->strings["No contacts in common."] = "Pas de contacts en commun.";
-$a->strings["Export account"] = "Exporter le compte";
-$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
-$a->strings["Export all"] = "Tout exporter";
-$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s";
-$a->strings["Mood"] = "Humeur";
-$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis";
-$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
-$a->strings["Friend Suggestions"] = "Suggestions d'amitiés/contacts";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
-$a->strings["Ignore/Hide"] = "Ignorer/cacher";
-$a->strings["Profile deleted."] = "Profil supprimé.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Nouveau profil créé.";
-$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
-$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
-$a->strings["Marital Status"] = "Statut marital";
-$a->strings["Romantic Partner"] = "Partenaire/conjoint";
-$a->strings["Likes"] = "Derniers \"J'aime\"";
-$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\"";
-$a->strings["Work/Employment"] = "Travail/Occupation";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Tendance politique";
-$a->strings["Gender"] = "Sexe";
-$a->strings["Sexual Preference"] = "Préférence sexuelle";
-$a->strings["Homepage"] = "Site internet";
-$a->strings["Interests"] = "Centres d'intérêt";
-$a->strings["Address"] = "Adresse";
-$a->strings["Location"] = "Localisation";
-$a->strings["Profile updated."] = "Profil mis à jour.";
-$a->strings[" and "] = " et ";
-$a->strings["public profile"] = "profil public";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s.";
-$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis:";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis/contacts des visiteurs de ce profil?";
-$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
-$a->strings["Change Profile Photo"] = "Changer la photo du profil";
-$a->strings["View this profile"] = "Voir ce profil";
-$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
-$a->strings["Clone this profile"] = "Cloner ce profil";
-$a->strings["Delete this profile"] = "Supprimer ce profil";
-$a->strings["Basic information"] = "Information de base";
-$a->strings["Profile picture"] = "Image de profil";
-$a->strings["Preferences"] = "Préférences";
-$a->strings["Status information"] = "Information sur le statut";
-$a->strings["Additional information"] = "Information additionnelle";
-$a->strings["Profile Name:"] = "Nom du profil:";
-$a->strings["Your Full Name:"] = "Votre nom complet:";
-$a->strings["Title/Description:"] = "Titre/Description:";
-$a->strings["Your Gender:"] = "Votre genre:";
-$a->strings["Birthday (%s):"] = "Anniversaire (%s):";
-$a->strings["Street Address:"] = "Adresse postale:";
-$a->strings["Locality/City:"] = "Ville/Localité:";
-$a->strings["Postal/Zip Code:"] = "Code postal:";
-$a->strings["Country:"] = "Pays:";
-$a->strings["Region/State:"] = "Région/État:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Statut marital:";
-$a->strings["Who: (if applicable)"] = "Qui: (si pertinent)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Depuis [date] :";
-$a->strings["Sexual Preference:"] = "Préférence sexuelle:";
-$a->strings["Homepage URL:"] = "Page personnelle:";
-$a->strings["Hometown:"] = " Ville d'origine:";
-$a->strings["Political Views:"] = "Opinions politiques:";
-$a->strings["Religious Views:"] = "Opinions religieuses:";
-$a->strings["Public Keywords:"] = "Mots-clés publics:";
-$a->strings["Private Keywords:"] = "Mots-clés privés:";
-$a->strings["Likes:"] = "J'aime :";
-$a->strings["Dislikes:"] = "Je n'aime pas :";
-$a->strings["Example: fishing photography software"] = "Exemple: football dessin programmation";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)";
-$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
-$a->strings["Hobbies/Interests"] = "Passe-temps/Centres d'intérêt";
-$a->strings["Contact information and Social Networks"] = "Coordonnées/Réseaux sociaux";
-$a->strings["Musical interests"] = "Goûts musicaux";
-$a->strings["Books, literature"] = "Lectures";
-$a->strings["Television"] = "Télévision";
-$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement";
-$a->strings["Love/romance"] = "Amour/Romance";
-$a->strings["Work/employment"] = "Activité professionnelle/Occupation";
-$a->strings["School/education"] = "Études/Formation";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
-$a->strings["Edit/Manage Profiles"] = "Editer/gérer les profils";
-$a->strings["Change profile photo"] = "Changer de photo de profil";
-$a->strings["Create New Profile"] = "Créer un nouveau profil";
-$a->strings["Profile Image"] = "Image du profil";
-$a->strings["visible to everybody"] = "visible par tous";
-$a->strings["Edit visibility"] = "Changer la visibilité";
-$a->strings["Item not found"] = "Élément introuvable";
-$a->strings["Edit post"] = "Éditer la publication";
-$a->strings["upload photo"] = "envoi image";
-$a->strings["Attach file"] = "Joindre fichier";
-$a->strings["attach file"] = "ajout fichier";
-$a->strings["web link"] = "lien web";
-$a->strings["Insert video link"] = "Insérer un lien video";
-$a->strings["video link"] = "lien vidéo";
-$a->strings["Insert audio link"] = "Insérer un lien audio";
-$a->strings["audio link"] = "lien audio";
-$a->strings["Set your location"] = "Définir votre localisation";
-$a->strings["set location"] = "spéc. localisation";
-$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
-$a->strings["clear location"] = "supp. localisation";
-$a->strings["Permission settings"] = "Réglages des permissions";
-$a->strings["CC: email addresses"] = "CC: adresses de courriel";
-$a->strings["Public post"] = "Publication publique";
-$a->strings["Set title"] = "Définir un titre";
-$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
-$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
-$a->strings["running at web location"] = "hébergé sur";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
-$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:";
-$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:";
-$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
-$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
-$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
-$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
-$a->strings["Visible to:"] = "Visible par:";
-$a->strings["Personal Notes"] = "Notes personnelles";
-$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
-$a->strings["Time Conversion"] = "Conversion temporelle";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
-$a->strings["UTC time: %s"] = "Temps UTC : %s";
-$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
-$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
-$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
-$a->strings["Poke/Prod"] = "Solliciter";
-$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
-$a->strings["Recipient"] = "Destinataire";
-$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
-$a->strings["Make this post private"] = "Rendez ce message privé";
-$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
-$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
-$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
-$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
-$a->strings["%d message sent."] = array(
-       0 => "%d message envoyé.",
-       1 => "%d messages envoyés.",
-);
-$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
-$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
-$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
-$a->strings["Send invitations"] = "Envoyer des invitations";
-$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com";
-$a->strings["Photo Albums"] = "Albums photo";
-$a->strings["Contact Photos"] = "Photos du contact";
-$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
-$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
-$a->strings["Album not found."] = "Album introuvable.";
-$a->strings["Delete Album"] = "Effacer l'album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
-$a->strings["Delete Photo"] = "Effacer la photo";
-$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s";
-$a->strings["a photo"] = "une photo";
-$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de  ";
-$a->strings["Image file is empty."] = "Fichier image vide.";
-$a->strings["No photos selected"] = "Aucune photo sélectionnée";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos.";
-$a->strings["Upload Photos"] = "Téléverser des photos";
-$a->strings["New album name: "] = "Nom du nouvel album: ";
-$a->strings["or existing album name: "] = "ou nom d'un album existant: ";
-$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
-$a->strings["Permissions"] = "Permissions";
-$a->strings["Private Photo"] = "Photo privée";
-$a->strings["Public Photo"] = "Photo publique";
-$a->strings["Edit Album"] = "Éditer l'album";
-$a->strings["Show Newest First"] = "Plus récent d'abord";
-$a->strings["Show Oldest First"] = "Plus ancien d'abord";
-$a->strings["View Photo"] = "Voir la photo";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
-$a->strings["Photo not available"] = "Photo indisponible";
-$a->strings["View photo"] = "Voir photo";
-$a->strings["Edit photo"] = "Éditer la photo";
-$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
-$a->strings["View Full Size"] = "Voir en taille réelle";
-$a->strings["Tags: "] = "Étiquettes:";
-$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
-$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
-$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
-$a->strings["New album name"] = "Nom du nouvel album";
-$a->strings["Caption"] = "Titre";
-$a->strings["Add a Tag"] = "Ajouter une étiquette";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
-$a->strings["Private photo"] = "Photo privée";
-$a->strings["Public photo"] = "Photo publique";
-$a->strings["Share"] = "Partager";
-$a->strings["Recent Photos"] = "Photos récentes";
-$a->strings["Account approved."] = "Inscription validée.";
-$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
-$a->strings["Please login."] = "Merci de vous connecter.";
-$a->strings["Move account"] = "Migrer le compte";
-$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
-$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora";
-$a->strings["Account file"] = "Fichier du compte";
-$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
-$a->strings["Item not available."] = "Elément non disponible.";
-$a->strings["Item was not found."] = "Element introuvable.";
-$a->strings["Delete this item?"] = "Effacer cet élément?";
-$a->strings["show fewer"] = "montrer moins";
-$a->strings["Update %s failed. See error logs."] = "Mise-à-jour %s échouée. Voir les journaux d'erreur.";
-$a->strings["Create a New Account"] = "Créer un nouveau compte";
-$a->strings["Logout"] = "Se déconnecter";
-$a->strings["Nickname or Email address: "] = "Pseudo ou courriel: ";
-$a->strings["Password: "] = "Mot de passe: ";
-$a->strings["Remember me"] = "Se souvenir de moi";
-$a->strings["Or login using OpenID: "] = "Ou connectez-vous via OpenID: ";
-$a->strings["Forgot your password?"] = "Mot de passe oublié?";
-$a->strings["Website Terms of Service"] = "Conditions d'utilisation du site internet";
-$a->strings["terms of service"] = "conditions d'utilisation";
-$a->strings["Website Privacy Policy"] = "Politique de confidentialité du site internet";
-$a->strings["privacy policy"] = "politique de confidentialité";
-$a->strings["Requested account is not available."] = "Le compte demandé n'est pas disponible.";
-$a->strings["Edit profile"] = "Editer le profil";
-$a->strings["Message"] = "Message";
-$a->strings["Profiles"] = "Profils";
-$a->strings["Manage/edit profiles"] = "Gérer/éditer les profils";
-$a->strings["Network:"] = "Réseau";
-$a->strings["g A l F d"] = "g A | F d";
-$a->strings["F d"] = "F d";
-$a->strings["[today]"] = "[aujourd'hui]";
-$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
-$a->strings["Birthdays this week:"] = "Anniversaires cette semaine:";
-$a->strings["[No description]"] = "[Sans description]";
-$a->strings["Event Reminders"] = "Rappels d'événements";
-$a->strings["Events this week:"] = "Evénements cette semaine:";
-$a->strings["Status"] = "Statut";
-$a->strings["Status Messages and Posts"] = "Messages d'état et publications";
-$a->strings["Profile Details"] = "Détails du profil";
-$a->strings["Videos"] = "Vidéos";
-$a->strings["Events and Calendar"] = "Événements et agenda";
-$a->strings["Only You Can See This"] = "Vous seul pouvez voir ça";
-$a->strings["This entry was edited"] = "Cette entrée à été édité";
-$a->strings["ignore thread"] = "ignorer le fil";
-$a->strings["unignore thread"] = "Ne plus ignorer le fil";
-$a->strings["toggle ignore status"] = "Ignorer le statut";
-$a->strings["ignored"] = "ignoré";
-$a->strings["Categories:"] = "Catégories:";
-$a->strings["Filed under:"] = "Rangé sous:";
-$a->strings["via"] = "via";
-$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue.";
-$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]";
-$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
-$a->strings["Errors encountered performing database changes."] = "Des erreurs sont survenues lors de la mise à jour de la base de données.";
-$a->strings["Logged out."] = "Déconnecté.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier.";
-$a->strings["The error message was:"] = "Le message d'erreur était :";
-$a->strings["Add New Contact"] = "Ajouter un nouveau contact";
-$a->strings["Enter address or web location"] = "Entrez son adresse ou sa localisation web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Exemple: bob@example.com, http://example.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invitation disponible",
-       1 => "%d invitations disponibles",
-);
-$a->strings["Find People"] = "Trouver des personnes";
-$a->strings["Enter name or interest"] = "Entrez un nom ou un centre d'intérêt";
-$a->strings["Connect/Follow"] = "Connecter/Suivre";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Robert Morgenstein, Pêche";
-$a->strings["Similar Interests"] = "Intérêts similaires";
-$a->strings["Random Profile"] = "Profil au hasard";
-$a->strings["Invite Friends"] = "Inviter des amis";
-$a->strings["Networks"] = "Réseaux";
-$a->strings["All Networks"] = "Tous réseaux";
-$a->strings["Saved Folders"] = "Dossiers sauvegardés";
-$a->strings["Everything"] = "Tout";
-$a->strings["Categories"] = "Catégories";
-$a->strings["General Features"] = "Fonctions générales";
-$a->strings["Multiple Profiles"] = "Profils multiples";
-$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
-$a->strings["Post Composition Features"] = "Caractéristiques de composition de publication";
-$a->strings["Richtext Editor"] = "Éditeur de texte enrichi";
-$a->strings["Enable richtext editor"] = "Activer l'éditeur de texte enrichi";
-$a->strings["Post Preview"] = "Aperçu de la publication";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Permet la prévisualisation des publications et commentaires avant de les publier";
-$a->strings["Auto-mention Forums"] = "";
-$a->strings["Add/remove mention when a fourm page is selected/deselected in ACL window."] = "";
-$a->strings["Network Sidebar Widgets"] = "Widgets réseau pour barre latérale";
-$a->strings["Search by Date"] = "Rechercher par Date";
-$a->strings["Ability to select posts by date ranges"] = "Capacité de sélectionner les publications par intervalles de dates";
-$a->strings["Group Filter"] = "Filtre de groupe";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Activer le widget d’affichage des publications du réseau seulement pour le groupe sélectionné";
-$a->strings["Network Filter"] = "Filtre de réseau";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Activer le widget d’affichage des publications du réseau seulement pour le réseau sélectionné";
-$a->strings["Save search terms for re-use"] = "Sauvegarder la recherche pour une utilisation ultérieure";
-$a->strings["Network Tabs"] = "Onglets Réseau";
-$a->strings["Network Personal Tab"] = "Onglet Réseau Personnel";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer l'onglet pour afficher seulement les publications du réseau où vous avez interagit";
-$a->strings["Network New Tab"] = "Nouvel onglet réseaux";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Activer l'onglet pour afficher seulement les publications du réseau (dans les 12 dernières heures)";
-$a->strings["Network Shared Links Tab"] = "Onglet réseau partagé";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Activer l'onglet pour afficher seulement les publications du réseau contenant des liens";
-$a->strings["Post/Comment Tools"] = "outils de publication/commentaire";
-$a->strings["Multiple Deletion"] = "Suppression multiple";
-$a->strings["Select and delete multiple posts/comments at once"] = "Sélectionner et supprimer plusieurs publications/commentaires à la fois";
-$a->strings["Edit Sent Posts"] = "Éditer les publications envoyées";
-$a->strings["Edit and correct posts and comments after sending"] = "Éditer et corriger les publications et commentaires après l'envoi";
-$a->strings["Tagging"] = "Étiquettage";
-$a->strings["Ability to tag existing posts"] = "Possibilité d'étiqueter les publications existantes";
-$a->strings["Post Categories"] = "Catégories des publications";
-$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
-$a->strings["Ability to file posts under folders"] = "Possibilité d'afficher les publications sous les répertoires";
-$a->strings["Dislike Posts"] = "Publications non aimées";
-$a->strings["Ability to dislike posts/comments"] = "Possibilité de ne pas aimer les publications/commentaires";
-$a->strings["Star Posts"] = "Publications spéciales";
-$a->strings["Ability to mark special posts with a star indicator"] = "Possibilité de marquer les publications spéciales d'une étoile";
-$a->strings["Mute Post Notifications"] = "";
-$a->strings["Ability to mute notifications for a thread"] = "";
-$a->strings["Connect URL missing."] = "URL de connexion manquante.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
-$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
-$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
-$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
-$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
-$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
-$a->strings["following"] = "following";
-$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé a été recréé. Les permissions existantes <strong>pourraient</strong> s'appliquer à ce groupe et aux futurs membres. Si ce n'est pas le comportement attendu, merci de re-créer un autre groupe sous un autre nom.";
-$a->strings["Default privacy group for new contacts"] = "Paramètres de confidentialité par défaut pour les nouveaux contacts";
-$a->strings["Everybody"] = "Tout le monde";
-$a->strings["edit"] = "éditer";
-$a->strings["Edit group"] = "Editer groupe";
-$a->strings["Create a new group"] = "Créer un nouveau groupe";
-$a->strings["Contacts not in any group"] = "Contacts n'appartenant à aucun groupe";
-$a->strings["Miscellaneous"] = "Divers";
-$a->strings["year"] = "an";
-$a->strings["month"] = "mois";
-$a->strings["day"] = "jour";
-$a->strings["never"] = "jamais";
-$a->strings["less than a second ago"] = "il y a moins d'une seconde";
-$a->strings["years"] = "ans";
-$a->strings["months"] = "mois";
-$a->strings["week"] = "semaine";
-$a->strings["weeks"] = "semaines";
-$a->strings["days"] = "jours";
-$a->strings["hour"] = "heure";
-$a->strings["hours"] = "heures";
-$a->strings["minute"] = "minute";
-$a->strings["minutes"] = "minutes";
-$a->strings["second"] = "seconde";
-$a->strings["seconds"] = "secondes";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant";
-$a->strings["%s's birthday"] = "Anniversaire de %s's";
-$a->strings["Happy Birthday %s"] = "Joyeux anniversaire, %s !";
-$a->strings["Visible to everybody"] = "Visible par tout le monde";
-$a->strings["show"] = "montrer";
-$a->strings["don't show"] = "cacher";
-$a->strings["[no subject]"] = "[pas de sujet]";
-$a->strings["stopped following"] = "retiré de la liste de suivi";
-$a->strings["Poke"] = "Sollicitations (pokes)";
-$a->strings["View Status"] = "Voir les statuts";
-$a->strings["View Profile"] = "Voir le profil";
-$a->strings["View Photos"] = "Voir les photos";
-$a->strings["Network Posts"] = "Publications du réseau";
-$a->strings["Edit Contact"] = "Éditer le contact";
-$a->strings["Drop Contact"] = "Supprimer le contact";
-$a->strings["Send PM"] = "Message privé";
-$a->strings["Welcome "] = "Bienvenue ";
-$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
-$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
-$a->strings["event"] = "évènement";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s";
-$a->strings["poked"] = "a titillé";
-$a->strings["post/item"] = "publication/élément";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori";
-$a->strings["remove"] = "enlever";
-$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
-$a->strings["Follow Thread"] = "Suivre le fil";
-$a->strings["%s likes this."] = "%s aime ça.";
-$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personnes</span> aiment ça";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça";
-$a->strings["and"] = "et";
-$a->strings[", and %d other people"] = ", et %d autres personnes";
-$a->strings["%s like this."] = "%s aiment ça.";
-$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
-$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
-$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
-$a->strings["Tag term:"] = "Terme d'étiquette:";
-$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
-$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
-$a->strings["Post to Email"] = "Publier aux courriels";
-$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
-$a->strings["permissions"] = "permissions";
-$a->strings["Post to Groups"] = "Publier aux groupes";
-$a->strings["Post to Contacts"] = "Publier aux contacts";
-$a->strings["Private post"] = "Message privé";
-$a->strings["view full size"] = "voir en pleine taille";
-$a->strings["newer"] = "Plus récent";
-$a->strings["older"] = "Plus ancien";
-$a->strings["prev"] = "précédent";
-$a->strings["first"] = "premier";
-$a->strings["last"] = "dernier";
-$a->strings["next"] = "suivant";
-$a->strings["No contacts"] = "Aucun contact";
-$a->strings["%d Contact"] = array(
-       0 => "%d contact",
-       1 => "%d contacts",
-);
-$a->strings["poke"] = "titiller";
-$a->strings["ping"] = "attirer l'attention";
-$a->strings["pinged"] = "a attiré l'attention de";
-$a->strings["prod"] = "aiguillonner";
-$a->strings["prodded"] = "a aiguillonné";
-$a->strings["slap"] = "gifler";
-$a->strings["slapped"] = "a giflé";
-$a->strings["finger"] = "tripoter";
-$a->strings["fingered"] = "a tripoté";
-$a->strings["rebuff"] = "rabrouer";
-$a->strings["rebuffed"] = "a rabroué";
-$a->strings["happy"] = "heureuse";
-$a->strings["sad"] = "triste";
-$a->strings["mellow"] = "suave";
-$a->strings["tired"] = "fatiguée";
-$a->strings["perky"] = "guillerette";
-$a->strings["angry"] = "colérique";
-$a->strings["stupified"] = "stupéfaite";
-$a->strings["puzzled"] = "perplexe";
-$a->strings["interested"] = "intéressée";
-$a->strings["bitter"] = "amère";
-$a->strings["cheerful"] = "entraînante";
-$a->strings["alive"] = "vivante";
-$a->strings["annoyed"] = "ennuyée";
-$a->strings["anxious"] = "anxieuse";
-$a->strings["cranky"] = "excentrique";
-$a->strings["disturbed"] = "dérangée";
-$a->strings["frustrated"] = "frustrée";
-$a->strings["motivated"] = "motivée";
-$a->strings["relaxed"] = "détendue";
-$a->strings["surprised"] = "surprise";
-$a->strings["Monday"] = "Lundi";
-$a->strings["Tuesday"] = "Mardi";
-$a->strings["Wednesday"] = "Mercredi";
-$a->strings["Thursday"] = "Jeudi";
-$a->strings["Friday"] = "Vendredi";
-$a->strings["Saturday"] = "Samedi";
-$a->strings["Sunday"] = "Dimanche";
-$a->strings["January"] = "Janvier";
-$a->strings["February"] = "Février";
-$a->strings["March"] = "Mars";
-$a->strings["April"] = "Avril";
-$a->strings["May"] = "Mai";
-$a->strings["June"] = "Juin";
-$a->strings["July"] = "Juillet";
-$a->strings["August"] = "Août";
-$a->strings["September"] = "Septembre";
-$a->strings["October"] = "Octobre";
-$a->strings["November"] = "Novembre";
-$a->strings["December"] = "Décembre";
-$a->strings["bytes"] = "octets";
-$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
-$a->strings["default"] = "défaut";
-$a->strings["Select an alternate language"] = "Choisir une langue alternative";
-$a->strings["activity"] = "activité";
-$a->strings["post"] = "publication";
-$a->strings["Item filed"] = "Élément classé";
-$a->strings["Image/photo"] = "Image/photo";
-$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
-$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
-$a->strings["$1 wrote:"] = "$1 a écrit:";
-$a->strings["Encrypted content"] = "Contenu chiffré";
-$a->strings["(no subject)"] = "(sans titre)";
+$a->strings["Friendica Notification"] = "Notification Friendica";
+$a->strings["Thank You,"] = "Merci, ";
+$a->strings["%s Administrator"] = "L'administrateur de %s";
 $a->strings["noreply"] = "noreply";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de localiser les informations DNS pour le serveur de base de données '%s'";
-$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
-$a->strings["Block immediately"] = "Bloquer immédiatement";
-$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
-$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
-$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
-$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
-$a->strings["Weekly"] = "Chaque semaine";
-$a->strings["Monthly"] = "Chaque mois";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["pump.io"] = "pump.io";
-$a->strings["Twitter"] = "Twitter";
-$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
-$a->strings["Statusnet"] = "Statusnet";
-$a->strings["App.net"] = "App.net";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
+$a->strings["a private message"] = "un message privé";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url].";
+$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication";
+$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a partagé une nouvelle publication sur %2\$s";
+$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
+$a->strings["[Friendica:Notify] A new person is sharing with you"] = "[Notification Friendica] Une nouvelle personne partage avec vous";
+$a->strings["%1\$s is sharing with you at %2\$s"] = "";
+$a->strings["[Friendica:Notify] You have a new follower"] = "";
+$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
+$a->strings["Name:"] = "Nom :";
+$a->strings["Photo:"] = "Photo :";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
+$a->strings["[Friendica:Notify] Connection accepted"] = "";
+$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "";
+$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
+$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
+$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
+$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
+$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "";
+$a->strings["[Friendica System:Notify] registration request"] = "";
+$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Vous avez reçu une [url=%1\$s]demande de création de compte[/url] de %2\$s.";
+$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)";
+$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande.";
+$a->strings["User not found."] = "Utilisateur non trouvé";
+$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée.";
+$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée.";
+$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée.";
+$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id.";
+$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id.";
+$a->strings["Invalid request."] = "Requête invalide.";
+$a->strings["Invalid item."] = "Item invalide.";
+$a->strings["Invalid action. "] = "Action invalide.";
+$a->strings["DB error"] = "";
+$a->strings["view full size"] = "voir en pleine taille";
 $a->strings[" on Last.fm"] = "sur Last.fm";
-$a->strings["Starts:"] = "Débute:";
-$a->strings["Finishes:"] = "Finit:";
+$a->strings["Full Name:"] = "Nom complet:";
 $a->strings["j F, Y"] = "j F, Y";
 $a->strings["j F"] = "j F";
 $a->strings["Birthday:"] = "Anniversaire:";
 $a->strings["Age:"] = "Age:";
 $a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Préférence sexuelle:";
+$a->strings["Hometown:"] = " Ville d'origine:";
 $a->strings["Tags:"] = "Étiquette:";
+$a->strings["Political Views:"] = "Opinions politiques:";
 $a->strings["Religion:"] = "Religion:";
 $a->strings["Hobbies/Interests:"] = "Passe-temps/Centres d'intérêt:";
+$a->strings["Likes:"] = "J'aime :";
+$a->strings["Dislikes:"] = "Je n'aime pas :";
 $a->strings["Contact information and Social Networks:"] = "Coordonnées/Réseaux sociaux:";
 $a->strings["Musical interests:"] = "Goûts musicaux:";
 $a->strings["Books, literature:"] = "Lectures:";
@@ -1554,23 +311,19 @@ $a->strings["Film/dance/culture/entertainment:"] = "Cinéma/Danse/Culture/Divert
 $a->strings["Love/Romance:"] = "Amour/Romance:";
 $a->strings["Work/employment:"] = "Activité professionnelle/Occupation:";
 $a->strings["School/education:"] = "Études/Formation:";
-$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement.";
-$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement.";
+$a->strings["Nothing new here"] = "Rien de neuf ici";
+$a->strings["Clear notifications"] = "Effacer les notifications";
 $a->strings["End this session"] = "Mettre fin à cette session";
-$a->strings["Your posts and conversations"] = "Vos publications et conversations";
-$a->strings["Your profile page"] = "Votre page de profil";
-$a->strings["Your photos"] = "Vos photos";
 $a->strings["Your videos"] = "Vos vidéos";
-$a->strings["Your events"] = "Vos événements";
-$a->strings["Personal notes"] = "Notes personnelles";
 $a->strings["Your personal notes"] = "Vos notes personnelles";
 $a->strings["Sign in"] = "Se connecter";
 $a->strings["Home Page"] = "Page d'accueil";
 $a->strings["Create an account"] = "Créer un compte";
+$a->strings["Help"] = "Aide";
 $a->strings["Help and documentation"] = "Aide et documentation";
 $a->strings["Apps"] = "Applications";
 $a->strings["Addon applications, utilities, games"] = "Applications supplémentaires, utilitaires, jeux";
+$a->strings["Search"] = "Recherche";
 $a->strings["Search site content"] = "Rechercher dans le contenu du site";
 $a->strings["Conversations on this site"] = "Conversations ayant cours sur ce site";
 $a->strings["Conversations on the network"] = "";
@@ -1578,56 +331,280 @@ $a->strings["Directory"] = "Annuaire";
 $a->strings["People directory"] = "Annuaire des utilisateurs";
 $a->strings["Information"] = "Information";
 $a->strings["Information about this friendica instance"] = "Information au sujet de cette instance de friendica";
+$a->strings["Network"] = "Réseau";
 $a->strings["Conversations from your friends"] = "Conversations de vos amis";
 $a->strings["Network Reset"] = "Réinitialiser le réseau";
 $a->strings["Load Network page with no filters"] = "Chargement des pages du réseau sans filtre";
+$a->strings["Introductions"] = "Introductions";
 $a->strings["Friend Requests"] = "Demande d'amitié";
+$a->strings["Notifications"] = "Notifications";
 $a->strings["See all notifications"] = "Voir toute notification";
 $a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme 'vues'";
+$a->strings["Messages"] = "Messages";
 $a->strings["Private mail"] = "Messages privés";
 $a->strings["Inbox"] = "Messages entrants";
 $a->strings["Outbox"] = "Messages sortants";
+$a->strings["New Message"] = "Nouveau message";
 $a->strings["Manage"] = "Gérer";
 $a->strings["Manage other pages"] = "Gérer les autres pages";
+$a->strings["Delegations"] = "Délégations";
+$a->strings["Delegate Page Management"] = "Déléguer la gestion de la page";
 $a->strings["Account settings"] = "Compte";
 $a->strings["Manage/Edit Profiles"] = "Gérer/Éditer les profiles";
 $a->strings["Manage/edit friends and contacts"] = "Gérer/éditer les amitiés et contacts";
+$a->strings["Admin"] = "Admin";
 $a->strings["Site setup and configuration"] = "Démarrage et configuration du site";
 $a->strings["Navigation"] = "Navigation";
 $a->strings["Site map"] = "Carte du site";
-$a->strings["User not found."] = "Utilisateur non trouvé";
-$a->strings["Daily posting limit of %d posts reached. The post was rejected."] = "Le quota journalier de %d publications a été atteint. La publication a été rejetée.";
-$a->strings["Weekly posting limit of %d posts reached. The post was rejected."] = "Le quota hebdomadaire de %d publications a été atteint. La publication a été rejetée.";
-$a->strings["Monthly posting limit of %d posts reached. The post was rejected."] = "Le quota mensuel de %d publications a été atteint. La publication a été rejetée.";
-$a->strings["There is no status with this id."] = "Il n'y a pas de statut avec cet id.";
-$a->strings["There is no conversation with this id."] = "Il n'y a pas de conversation avec cet id.";
-$a->strings["Invalid request."] = "Requête invalide.";
-$a->strings["Invalid item."] = "Item invalide.";
-$a->strings["Invalid action. "] = "Action invalide.";
-$a->strings["DB error"] = "";
-$a->strings["An invitation is required."] = "Une invitation est requise.";
-$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée.";
-$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide";
-$a->strings["Please enter the required information."] = "Entrez les informations requises.";
-$a->strings["Please use a shorter name."] = "Utilisez un nom plus court.";
-$a->strings["Name too short."] = "Nom trop court.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site.";
-$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide.";
-$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre.";
-$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué.";
-$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
-$a->strings["Friends"] = "Amis";
-$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t";
-$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s.";
+$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action dépasse les limites définies par votre abonnement.";
+$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre abonnement.";
+$a->strings["Disallowed profile URL."] = "URL de profil interdite.";
+$a->strings["Connect URL missing."] = "URL de connexion manquante.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Ce site n'est pas configuré pour dialoguer avec d'autres réseaux.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Aucun protocole de communication ni aucun flux n'a pu être découvert.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'adresse de profil indiquée ne fournit par les informations adéquates.";
+$a->strings["An author or name was not found."] = "Aucun auteur ou nom d'auteur n'a pu être trouvé.";
+$a->strings["No browser URL could be matched to this address."] = "Aucune URL de navigation ne correspond à cette adresse.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel.";
+$a->strings["Use mailto: in front of address to force email check."] = "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'adresse de profil spécifiée correspond à un réseau qui a été désactivé sur ce site.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part.";
+$a->strings["Unable to retrieve contact information."] = "Impossible de récupérer les informations du contact.";
+$a->strings["following"] = "following";
+$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
+$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
+$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
+$a->strings["User creation error"] = "Erreur de création d'utilisateur";
+$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contacts non importés",
+       1 => "%d contacts non importés",
+);
+$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
+$a->strings["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "Débute:";
+$a->strings["Finishes:"] = "Finit:";
+$a->strings["stopped following"] = "retiré de la liste de suivi";
+$a->strings["Poke"] = "Sollicitations (pokes)";
+$a->strings["View Status"] = "Voir les statuts";
+$a->strings["View Profile"] = "Voir le profil";
+$a->strings["View Photos"] = "Voir les photos";
+$a->strings["Network Posts"] = "Publications du réseau";
+$a->strings["Edit Contact"] = "Éditer le contact";
+$a->strings["Drop Contact"] = "Supprimer le contact";
+$a->strings["Send PM"] = "Message privé";
+$a->strings["\n\t\t\tThe friendica developers released update %s recently,\n\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\nLes développeurs de Friendica ont récemment publié la mise à jour %s, mais en tentant de l’installer, quelque chose s’est terriblement mal passé. Une réparation s’impose et je ne peux pas la faire tout seul. Contactez un développeur Friendica si vous ne pouvez pas corriger le problème vous-même. Il est possible que ma base de données soit corrompue.";
+$a->strings["The error message is\n[pre]%s[/pre]"] = "Le message d’erreur est\n[pre]%s[/pre]";
+$a->strings["Errors encountered creating database tables."] = "Des erreurs ont été signalées lors de la création des tables.";
+$a->strings["Errors encountered performing database changes."] = "Des erreurs sont survenues lors de la mise à jour de la base de données.";
+$a->strings["Miscellaneous"] = "Divers";
+$a->strings["year"] = "an";
+$a->strings["month"] = "mois";
+$a->strings["day"] = "jour";
+$a->strings["never"] = "jamais";
+$a->strings["less than a second ago"] = "il y a moins d'une seconde";
+$a->strings["years"] = "ans";
+$a->strings["months"] = "mois";
+$a->strings["week"] = "semaine";
+$a->strings["weeks"] = "semaines";
+$a->strings["days"] = "jours";
+$a->strings["hour"] = "heure";
+$a->strings["hours"] = "heures";
+$a->strings["minute"] = "minute";
+$a->strings["minutes"] = "minutes";
+$a->strings["second"] = "seconde";
+$a->strings["seconds"] = "secondes";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s auparavant";
+$a->strings["[no subject]"] = "[pas de sujet]";
+$a->strings["(no subject)"] = "(sans titre)";
+$a->strings["Unknown | Not categorised"] = "Inconnu | Non-classé";
+$a->strings["Block immediately"] = "Bloquer immédiatement";
+$a->strings["Shady, spammer, self-marketer"] = "Douteux, spammeur, accro à l'auto-promotion";
+$a->strings["Known to me, but no opinion"] = "Connu de moi, mais sans opinion";
+$a->strings["OK, probably harmless"] = "OK, probablement inoffensif";
+$a->strings["Reputable, has my trust"] = "Réputé, a toute ma confiance";
+$a->strings["Frequently"] = "Fréquemment";
+$a->strings["Hourly"] = "Toutes les heures";
+$a->strings["Twice daily"] = "Deux fois par jour";
+$a->strings["Daily"] = "Chaque jour";
+$a->strings["Weekly"] = "Chaque semaine";
+$a->strings["Monthly"] = "Chaque mois";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "Courriel";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["pump.io"] = "pump.io";
+$a->strings["Twitter"] = "Twitter";
+$a->strings["Diaspora Connector"] = "Connecteur Diaspora";
+$a->strings["Statusnet"] = "Statusnet";
+$a->strings["App.net"] = "App.net";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s est désormais lié à %2\$s";
 $a->strings["Sharing notification from Diaspora network"] = "Notification de partage du réseau Diaspora";
 $a->strings["Attachments:"] = "Pièces jointes : ";
-$a->strings["Do you really want to delete this item?"] = "Voulez-vous vraiment supprimer cet élément ?";
-$a->strings["Archives"] = "Archives";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s a sollicité %2\$s";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s est d'humeur %2\$s";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté %3\$s de %2\$s avec %4\$s";
+$a->strings["post/item"] = "publication/élément";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s a marqué le %3\$s de %2\$s comme favori";
+$a->strings["Select"] = "Sélectionner";
+$a->strings["Delete"] = "Supprimer";
+$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
+$a->strings["Categories:"] = "Catégories:";
+$a->strings["Filed under:"] = "Rangé sous:";
+$a->strings["%s from %s"] = "%s de %s";
+$a->strings["View in context"] = "Voir dans le contexte";
+$a->strings["Please wait"] = "Patientez";
+$a->strings["remove"] = "enlever";
+$a->strings["Delete Selected Items"] = "Supprimer les éléments sélectionnés";
+$a->strings["Follow Thread"] = "Suivre le fil";
+$a->strings["%s likes this."] = "%s aime ça.";
+$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d personnes</span> aiment ça";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça";
+$a->strings["and"] = "et";
+$a->strings[", and %d other people"] = ", et %d autres personnes";
+$a->strings["%s like this."] = "%s aiment ça.";
+$a->strings["%s don't like this."] = "%s n'aiment pas ça.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
+$a->strings["Please enter a link URL:"] = "Entrez un lien web:";
+$a->strings["Please enter a video link/URL:"] = "Entrez un lien/URL video :";
+$a->strings["Please enter an audio link/URL:"] = "Entrez un lien/URL audio :";
+$a->strings["Tag term:"] = "Terme d'étiquette:";
+$a->strings["Save to Folder:"] = "Sauver dans le Dossier:";
+$a->strings["Where are you right now?"] = "Où êtes-vous présentemment?";
+$a->strings["Delete item(s)?"] = "Supprimer les élément(s) ?";
+$a->strings["Post to Email"] = "Publier aux courriels";
+$a->strings["Connectors disabled, since \"%s\" is enabled."] = "";
+$a->strings["Hide your profile details from unknown viewers?"] = "Cacher les détails du profil aux visiteurs inconnus?";
+$a->strings["Share"] = "Partager";
+$a->strings["Upload photo"] = "Joindre photo";
+$a->strings["upload photo"] = "envoi image";
+$a->strings["Attach file"] = "Joindre fichier";
+$a->strings["attach file"] = "ajout fichier";
+$a->strings["Insert web link"] = "Insérer lien web";
+$a->strings["web link"] = "lien web";
+$a->strings["Insert video link"] = "Insérer un lien video";
+$a->strings["video link"] = "lien vidéo";
+$a->strings["Insert audio link"] = "Insérer un lien audio";
+$a->strings["audio link"] = "lien audio";
+$a->strings["Set your location"] = "Définir votre localisation";
+$a->strings["set location"] = "spéc. localisation";
+$a->strings["Clear browser location"] = "Effacer la localisation du navigateur";
+$a->strings["clear location"] = "supp. localisation";
+$a->strings["Set title"] = "Définir un titre";
+$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
+$a->strings["Permission settings"] = "Réglages des permissions";
+$a->strings["permissions"] = "permissions";
+$a->strings["CC: email addresses"] = "CC: adresses de courriel";
+$a->strings["Public post"] = "Publication publique";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: bob@exemple.com, mary@exemple.com";
+$a->strings["Preview"] = "Aperçu";
+$a->strings["Post to Groups"] = "Publier aux groupes";
+$a->strings["Post to Contacts"] = "Publier aux contacts";
+$a->strings["Private post"] = "Message privé";
+$a->strings["newer"] = "Plus récent";
+$a->strings["older"] = "Plus ancien";
+$a->strings["prev"] = "précédent";
+$a->strings["first"] = "premier";
+$a->strings["last"] = "dernier";
+$a->strings["next"] = "suivant";
+$a->strings["Loading more entries..."] = "";
+$a->strings["The end"] = "";
+$a->strings["No contacts"] = "Aucun contact";
+$a->strings["%d Contact"] = array(
+       0 => "%d contact",
+       1 => "%d contacts",
+);
+$a->strings["View Contacts"] = "Voir les contacts";
+$a->strings["Save"] = "Sauver";
+$a->strings["poke"] = "titiller";
+$a->strings["poked"] = "a titillé";
+$a->strings["ping"] = "attirer l'attention";
+$a->strings["pinged"] = "a attiré l'attention de";
+$a->strings["prod"] = "aiguillonner";
+$a->strings["prodded"] = "a aiguillonné";
+$a->strings["slap"] = "gifler";
+$a->strings["slapped"] = "a giflé";
+$a->strings["finger"] = "tripoter";
+$a->strings["fingered"] = "a tripoté";
+$a->strings["rebuff"] = "rabrouer";
+$a->strings["rebuffed"] = "a rabroué";
+$a->strings["happy"] = "heureuse";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "suave";
+$a->strings["tired"] = "fatiguée";
+$a->strings["perky"] = "guillerette";
+$a->strings["angry"] = "colérique";
+$a->strings["stupified"] = "stupéfaite";
+$a->strings["puzzled"] = "perplexe";
+$a->strings["interested"] = "intéressée";
+$a->strings["bitter"] = "amère";
+$a->strings["cheerful"] = "entraînante";
+$a->strings["alive"] = "vivante";
+$a->strings["annoyed"] = "ennuyée";
+$a->strings["anxious"] = "anxieuse";
+$a->strings["cranky"] = "excentrique";
+$a->strings["disturbed"] = "dérangée";
+$a->strings["frustrated"] = "frustrée";
+$a->strings["motivated"] = "motivée";
+$a->strings["relaxed"] = "détendue";
+$a->strings["surprised"] = "surprise";
+$a->strings["Monday"] = "Lundi";
+$a->strings["Tuesday"] = "Mardi";
+$a->strings["Wednesday"] = "Mercredi";
+$a->strings["Thursday"] = "Jeudi";
+$a->strings["Friday"] = "Vendredi";
+$a->strings["Saturday"] = "Samedi";
+$a->strings["Sunday"] = "Dimanche";
+$a->strings["January"] = "Janvier";
+$a->strings["February"] = "Février";
+$a->strings["March"] = "Mars";
+$a->strings["April"] = "Avril";
+$a->strings["May"] = "Mai";
+$a->strings["June"] = "Juin";
+$a->strings["July"] = "Juillet";
+$a->strings["August"] = "Août";
+$a->strings["September"] = "Septembre";
+$a->strings["October"] = "Octobre";
+$a->strings["November"] = "Novembre";
+$a->strings["December"] = "Décembre";
+$a->strings["View Video"] = "Regarder la vidéo";
+$a->strings["bytes"] = "octets";
+$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
+$a->strings["link to source"] = "lien original";
+$a->strings["Select an alternate language"] = "Choisir une langue alternative";
+$a->strings["activity"] = "activité";
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "commentaire",
+);
+$a->strings["post"] = "publication";
+$a->strings["Item filed"] = "Élément classé";
+$a->strings["Logged out."] = "Déconnecté.";
+$a->strings["Login failed."] = "Échec de connexion.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons eu un souci avec l'OpenID que vous avez fourni. merci de vérifier l'orthographe correcte de ce dernier.";
+$a->strings["The error message was:"] = "Le message d'erreur était :";
+$a->strings["Image/photo"] = "Image/photo";
+$a->strings["<a href=\"%1\$s\" target=\"_blank\">%2\$s</a> %3\$s"] = "";
+$a->strings["<span><a href=\"%s\" target=\"_blank\">%s</a> wrote the following <a href=\"%s\" target=\"_blank\">post</a>"] = "";
+$a->strings["$1 wrote:"] = "$1 a écrit:";
+$a->strings["Encrypted content"] = "Contenu chiffré";
+$a->strings["Welcome "] = "Bienvenue ";
+$a->strings["Please upload a profile photo."] = "Merci d'illustrer votre profil d'une image.";
+$a->strings["Welcome back "] = "Bienvenue à nouveau, ";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le jeton de sécurité du formulaire n'est pas correct. Ceci veut probablement dire que le formulaire est resté ouvert trop longtemps (plus de 3 heures) avant d'être validé.";
+$a->strings["Embedded content"] = "Contenu incorporé";
+$a->strings["Embedding disabled"] = "Incorporation désactivée";
 $a->strings["Male"] = "Masculin";
 $a->strings["Female"] = "Féminin";
 $a->strings["Currently Male"] = "Actuellement masculin";
@@ -1664,6 +641,7 @@ $a->strings["Infatuated"] = "Entiché";
 $a->strings["Dating"] = "Dans une relation";
 $a->strings["Unfaithful"] = "Infidèle";
 $a->strings["Sex Addict"] = "Accro au sexe";
+$a->strings["Friends"] = "Amis";
 $a->strings["Friends/Benefits"] = "Amis par intérêt";
 $a->strings["Casual"] = "Casual";
 $a->strings["Engaged"] = "Fiancé";
@@ -1685,113 +663,1144 @@ $a->strings["Uncertain"] = "Incertain";
 $a->strings["It's complicated"] = "C'est compliqué";
 $a->strings["Don't care"] = "S'en désintéresse";
 $a->strings["Ask me"] = "Me demander";
-$a->strings["Friendica Notification"] = "Notification Friendica";
-$a->strings["Thank You,"] = "Merci, ";
-$a->strings["%s Administrator"] = "L'administrateur de %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notification] Nouveau courriel reçu sur %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s vous a envoyé un nouveau message privé sur %2\$s.";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
-$a->strings["a private message"] = "un message privé";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir vos messages privés et/ou y répondre.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]un %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s a commenté sur [url=%2\$s]le %4\$s de %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s commented on [url=%2\$s]your %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notification] Commentaire de %2\$s sur la conversation #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s a commenté un élément que vous suivez.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir la conversation et/ou y répondre.";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notification] %s a posté sur votre mur de profil";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s a publié sur votre mur à %2\$s";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s a posté sur [url=%2\$s]votre mur[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notification] %s vous a étiqueté";
-$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s vous a étiqueté sur %2\$s";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]vous a étiqueté[/url].";
-$a->strings["[Friendica:Notify] %s shared a new post"] = "[Friendica:Notification] %s partage une nouvelle publication";
-$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s a partagé une nouvelle publication sur %2\$s";
-$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]partage une publication[/url].";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notify] %1\$s vous a sollicité";
-$a->strings["%1\$s poked you at %2\$s"] = "%1\$s vous a sollicité via %2\$s";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s vous a [url=%2\$s]sollicité[/url].";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notification] %s a étiqueté votre publication";
-$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s a étiqueté votre publication sur %2\$s";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s a étiqueté [url=%2\$s]votre publication[/url]";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notification] Introduction reçue";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Vous avez reçu une introduction de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Vous avez reçu [url=%1\$s]une introduction[/url] de %2\$s.";
-$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter son profil sur %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Merci de visiter %s pour approuver ou rejeter l'introduction.";
-$a->strings["[Friendica:Notify] A new person is sharing with you"] = "";
-$a->strings["%1\$s is sharing with you at %2\$s"] = "";
-$a->strings["[Friendica:Notify] You have a new follower"] = "";
-$a->strings["You have a new follower at %2\$s : %1\$s"] = "";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notification] Nouvelle suggestion d'amitié";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Vous avez reçu une suggestion de '%1\$s' sur %2\$s";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Vous avez reçu [url=%1\$s]une suggestion[/url] de %3\$s pour %2\$s.";
-$a->strings["Name:"] = "Nom :";
-$a->strings["Photo:"] = "Photo :";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour approuver ou rejeter la suggestion.";
-$a->strings["[Friendica:Notify] Connection accepted"] = "";
-$a->strings["'%1\$s' has acepted your connection request at %2\$s"] = "";
-$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "";
-$a->strings["You are now mutual friends and may exchange status updates, photos, and email\n\twithout restriction."] = "";
-$a->strings["Please visit %s  if you wish to make any changes to this relationship."] = "";
-$a->strings["'%1\$s' has chosen to accept you a \"fan\", which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "";
-$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future. "] = "";
-$a->strings["[Friendica System:Notify] registration request"] = "";
-$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Vous avez reçu une [url=%1\$s]demande de création de compte[/url] de %2\$s.";
-$a->strings["Full Name:\t%1\$s\\nSite Location:\t%2\$s\\nLogin Name:\t%3\$s (%4\$s)"] = "Nom complet :\t%1\$s\\nAdresse :\t%2\$s\\nIdentifiant :\t%3\$s (%4\$s)";
-$a->strings["Please visit %s to approve or reject the request."] = "Veuillez visiter %s pour approuver ou rejeter la demande.";
-$a->strings["Embedded content"] = "Contenu incorporé";
-$a->strings["Embedding disabled"] = "Incorporation désactivée";
-$a->strings["Error decoding account file"] = "Une erreur a été détecté en décodant un fichier utilisateur";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Friendica ?";
-$a->strings["Error! Cannot check nickname"] = "Erreur! Pseudo invalide";
-$a->strings["User '%s' already exists on this server!"] = "L'utilisateur '%s' existe déjà sur ce serveur!";
-$a->strings["User creation error"] = "Erreur de création d'utilisateur";
-$a->strings["User profile creation error"] = "Erreur de création du profil utilisateur";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d contacts non importés",
-       1 => "%d contacts non importés",
+$a->strings["An invitation is required."] = "Une invitation est requise.";
+$a->strings["Invitation could not be verified."] = "L'invitation fournie n'a pu être validée.";
+$a->strings["Invalid OpenID url"] = "Adresse OpenID invalide";
+$a->strings["Please enter the required information."] = "Entrez les informations requises.";
+$a->strings["Please use a shorter name."] = "Utilisez un nom plus court.";
+$a->strings["Name too short."] = "Nom trop court.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Ceci ne semble pas être votre nom complet (Prénom Nom).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Votre domaine de courriel n'est pas autorisé sur ce site.";
+$a->strings["Not a valid email address."] = "Ceci n'est pas une adresse courriel valide.";
+$a->strings["Cannot use that email."] = "Impossible d'utiliser ce courriel.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Votre \"pseudo\" peut seulement contenir les caractères \"a-z\", \"0-9\", \"-\", and \"_\", et doit commencer par une lettre.";
+$a->strings["Nickname is already registered. Please choose another."] = "Pseudo déjà utilisé. Merci d'en choisir un autre.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ce surnom a déjà été utilisé ici, et ne peut re-servir. Merci d'en choisir un autre.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERREUR SÉRIEUSE: La génération des clés de sécurité a échoué.";
+$a->strings["An error occurred during registration. Please try again."] = "Une erreur est survenue lors de l'inscription. Merci de recommencer.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Une erreur est survenue lors de la création de votre profil par défaut. Merci de recommencer.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t"] = "\n\t\tChère/Cher %1\$s,\n\t\t\tMerci de vous être inscrit sur %2\$s. Votre compte a bien été créé.\n\t";
+$a->strings["\n\t\tThe login details are as follows:\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t%1\$s\n\t\t\tPassword:\t%5\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\n\t\tThank you and welcome to %2\$s."] = "\n\t\tVoici vos informations de connexion :\n\t\t\tAdresse :\t%3\$s\n\t\t\tIdentifiant :\t%1\$s\n\t\t\tMot de passe :\t%5\$s\n\n\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\n\t\tMerci et bienvenu sur %2\$s.";
+$a->strings["Registration details for %s"] = "Détails d'inscription pour %s";
+$a->strings["Visible to everybody"] = "Visible par tout le monde";
+$a->strings["This entry was edited"] = "Cette entrée à été édité";
+$a->strings["Private Message"] = "Message privé";
+$a->strings["Edit"] = "Éditer";
+$a->strings["save to folder"] = "sauver vers dossier";
+$a->strings["add star"] = "mett en avant";
+$a->strings["remove star"] = "ne plus mettre en avant";
+$a->strings["toggle star status"] = "mettre en avant";
+$a->strings["starred"] = "mis en avant";
+$a->strings["ignore thread"] = "ignorer le fil";
+$a->strings["unignore thread"] = "Ne plus ignorer le fil";
+$a->strings["toggle ignore status"] = "Ignorer le statut";
+$a->strings["ignored"] = "ignoré";
+$a->strings["add tag"] = "ajouter une étiquette";
+$a->strings["I like this (toggle)"] = "J'aime";
+$a->strings["like"] = "aime";
+$a->strings["I don't like this (toggle)"] = "Je n'aime pas";
+$a->strings["dislike"] = "n'aime pas";
+$a->strings["Share this"] = "Partager";
+$a->strings["share"] = "partager";
+$a->strings["to"] = "à";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Inter-mur";
+$a->strings["via Wall-To-Wall:"] = "en Inter-mur:";
+$a->strings["%d comment"] = array(
+       0 => "%d commentaire",
+       1 => "%d commentaires",
+);
+$a->strings["This is you"] = "C'est vous";
+$a->strings["Bold"] = "Gras";
+$a->strings["Italic"] = "Italique";
+$a->strings["Underline"] = "Souligné";
+$a->strings["Quote"] = "Citation";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Image";
+$a->strings["Link"] = "Lien";
+$a->strings["Video"] = "Vidéo";
+$a->strings["Item not available."] = "Elément non disponible.";
+$a->strings["Item was not found."] = "Element introuvable.";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Nombre de messages de mur quotidiens pour %s dépassé. Échec du message.";
+$a->strings["No recipient selected."] = "Pas de destinataire sélectionné.";
+$a->strings["Unable to check your home location."] = "Impossible de vérifier votre localisation.";
+$a->strings["Message could not be sent."] = "Impossible d'envoyer le message.";
+$a->strings["Message collection failure."] = "Récupération des messages infructueuse.";
+$a->strings["Message sent."] = "Message envoyé.";
+$a->strings["No recipient."] = "Pas de destinataire.";
+$a->strings["Send Private Message"] = "Envoyer un message privé";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Si vous souhaitez que %s réponde, merci de vérifier vos réglages pour autoriser les messages privés venant d'inconnus.";
+$a->strings["To:"] = "À:";
+$a->strings["Subject:"] = "Sujet:";
+$a->strings["Your message:"] = "Votre message:";
+$a->strings["Group created."] = "Groupe créé.";
+$a->strings["Could not create group."] = "Impossible de créer le groupe.";
+$a->strings["Group not found."] = "Groupe introuvable.";
+$a->strings["Group name changed."] = "Groupe renommé.";
+$a->strings["Save Group"] = "Sauvegarder le groupe";
+$a->strings["Create a group of contacts/friends."] = "Créez un groupe de contacts/amis.";
+$a->strings["Group Name: "] = "Nom du groupe: ";
+$a->strings["Group removed."] = "Groupe enlevé.";
+$a->strings["Unable to remove group."] = "Impossible d'enlever le groupe.";
+$a->strings["Group Editor"] = "Éditeur de groupe";
+$a->strings["Members"] = "Membres";
+$a->strings["All Contacts"] = "Tous les contacts";
+$a->strings["Click on a contact to add or remove."] = "Cliquez sur un contact pour l'ajouter ou le supprimer.";
+$a->strings["No potential page delegates located."] = "Pas de délégataire potentiel.";
+$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "Les délégataires seront capables de gérer tous les aspects de ce compte ou de cette page, à l'exception des réglages de compte. Merci de ne pas déléguer votre compte principal à quelqu'un en qui vous n'avez pas une confiance absolue.";
+$a->strings["Existing Page Managers"] = "Gestionnaires existants";
+$a->strings["Existing Page Delegates"] = "Délégataires existants";
+$a->strings["Potential Delegates"] = "Délégataires potentiels";
+$a->strings["Remove"] = "Utiliser comme photo de profil";
+$a->strings["Add"] = "Ajouter";
+$a->strings["No entries."] = "Aucune entrée.";
+$a->strings["Invalid request identifier."] = "Identifiant de demande invalide.";
+$a->strings["Discard"] = "Rejeter";
+$a->strings["Ignore"] = "Ignorer";
+$a->strings["System"] = "Système";
+$a->strings["Personal"] = "Personnel";
+$a->strings["Show Ignored Requests"] = "Voir les demandes ignorées";
+$a->strings["Hide Ignored Requests"] = "Cacher les demandes ignorées";
+$a->strings["Notification type: "] = "Type de notification: ";
+$a->strings["Friend Suggestion"] = "Suggestion d'amitié/contact";
+$a->strings["suggested by %s"] = "suggéré(e) par %s";
+$a->strings["Hide this contact from others"] = "Cacher ce contact aux autres";
+$a->strings["Post a new friend activity"] = "Poster une nouvelle avtivité d'ami";
+$a->strings["if applicable"] = "si possible";
+$a->strings["Approve"] = "Approuver";
+$a->strings["Claims to be known to you: "] = "Prétend que vous le connaissez: ";
+$a->strings["yes"] = "oui";
+$a->strings["no"] = "non";
+$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Fan/Admirer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "";
+$a->strings["Shall your connection be bidirectional or not? \"Friend\" implies that you allow to read and you subscribe to their posts. \"Sharer\" means that you allow to read but you do not want to read theirs. Approve as: "] = "";
+$a->strings["Friend"] = "Ami";
+$a->strings["Sharer"] = "Initiateur du partage";
+$a->strings["Fan/Admirer"] = "Fan/Admirateur";
+$a->strings["Friend/Connect Request"] = "Demande de connexion/relation";
+$a->strings["New Follower"] = "Nouvel abonné";
+$a->strings["No introductions."] = "Aucune demande d'introduction.";
+$a->strings["%s liked %s's post"] = "%s a aimé la publication de %s";
+$a->strings["%s disliked %s's post"] = "%s n'a pas aimé la publication de %s";
+$a->strings["%s is now friends with %s"] = "%s est désormais ami(e) avec %s";
+$a->strings["%s created a new post"] = "%s a créé une nouvelle publication";
+$a->strings["%s commented on %s's post"] = "%s a commenté la publication de %s";
+$a->strings["No more network notifications."] = "Aucune notification du réseau.";
+$a->strings["Network Notifications"] = "Notifications du réseau";
+$a->strings["No more system notifications."] = "Pas plus de notifications système.";
+$a->strings["System Notifications"] = "Notifications du système";
+$a->strings["No more personal notifications."] = "Aucun notification personnelle.";
+$a->strings["Personal Notifications"] = "Notifications personnelles";
+$a->strings["No more home notifications."] = "Aucune notification de la page d'accueil.";
+$a->strings["Home Notifications"] = "Notifications de page d'accueil";
+$a->strings["No profile"] = "Aucun profil";
+$a->strings["everybody"] = "tout le monde";
+$a->strings["Account"] = "Compte";
+$a->strings["Additional features"] = "Fonctions supplémentaires";
+$a->strings["Display"] = "Afficher";
+$a->strings["Social Networks"] = "Réseaux sociaux";
+$a->strings["Plugins"] = "Extensions";
+$a->strings["Connected apps"] = "Applications connectées";
+$a->strings["Export personal data"] = "Exporter";
+$a->strings["Remove account"] = "Supprimer le compte";
+$a->strings["Missing some important data!"] = "Il manque certaines informations importantes!";
+$a->strings["Update"] = "Mises-à-jour";
+$a->strings["Failed to connect with email account using the settings provided."] = "Impossible de se connecter au compte courriel configuré.";
+$a->strings["Email settings updated."] = "Réglages de courriel mis-à-jour.";
+$a->strings["Features updated"] = "Fonctionnalités mises à jour";
+$a->strings["Relocate message has been send to your contacts"] = "Un message de relocalisation a été envoyé à vos contacts.";
+$a->strings["Passwords do not match. Password unchanged."] = "Les mots de passe ne correspondent pas. Aucun changement appliqué.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Les mots de passe vides sont interdits. Aucun changement appliqué.";
+$a->strings["Wrong password."] = "Mauvais mot de passe.";
+$a->strings["Password changed."] = "Mots de passe changés.";
+$a->strings["Password update failed. Please try again."] = "Le changement de mot de passe a échoué. Merci de recommencer.";
+$a->strings[" Please use a shorter name."] = " Merci d'utiliser un nom plus court.";
+$a->strings[" Name too short."] = " Nom trop court.";
+$a->strings["Wrong Password"] = "Mauvais mot de passe";
+$a->strings[" Not valid email."] = " Email invalide.";
+$a->strings[" Cannot change to that email."] = " Impossible de changer pour cet email.";
+$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée. Utilisation des paramètres de confidentialité par défaut.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Ce forum privé n'a pas de paramètres de vie privée ni de paramètres de confidentialité par défaut.";
+$a->strings["Settings updated."] = "Réglages mis à jour.";
+$a->strings["Add application"] = "Ajouter une application";
+$a->strings["Save Settings"] = "Sauvegarder les paramétres";
+$a->strings["Name"] = "Nom";
+$a->strings["Consumer Key"] = "Clé utilisateur";
+$a->strings["Consumer Secret"] = "Secret utilisateur";
+$a->strings["Redirect"] = "Rediriger";
+$a->strings["Icon url"] = "URL de l'icône";
+$a->strings["You can't edit this application."] = "Vous ne pouvez pas éditer cette application.";
+$a->strings["Connected Apps"] = "Applications connectées";
+$a->strings["Client key starts with"] = "La clé cliente commence par";
+$a->strings["No name"] = "Sans nom";
+$a->strings["Remove authorization"] = "Révoquer l'autorisation";
+$a->strings["No Plugin settings configured"] = "Pas de réglages d'extensions configurés";
+$a->strings["Plugin Settings"] = "Extensions";
+$a->strings["Off"] = "Éteint";
+$a->strings["On"] = "Allumé";
+$a->strings["Additional Features"] = "Fonctions supplémentaires";
+$a->strings["Built-in support for %s connectivity is %s"] = "Le support natif pour la connectivité %s est %s";
+$a->strings["enabled"] = "activé";
+$a->strings["disabled"] = "désactivé";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "L'accès courriel est désactivé sur ce site.";
+$a->strings["Email/Mailbox Setup"] = "Réglages de courriel/boîte à lettre";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.";
+$a->strings["Last successful email check:"] = "Dernière vérification réussie des courriels:";
+$a->strings["IMAP server name:"] = "Nom du serveur IMAP:";
+$a->strings["IMAP port:"] = "Port IMAP:";
+$a->strings["Security:"] = "Sécurité:";
+$a->strings["None"] = "Aucun(e)";
+$a->strings["Email login name:"] = "Nom de connexion:";
+$a->strings["Email password:"] = "Mot de passe:";
+$a->strings["Reply-to address:"] = "Adresse de réponse:";
+$a->strings["Send public posts to all email contacts:"] = "Envoyer les publications publiques à tous les contacts courriels:";
+$a->strings["Action after import:"] = "Action après import:";
+$a->strings["Mark as seen"] = "Marquer comme vu";
+$a->strings["Move to folder"] = "Déplacer vers";
+$a->strings["Move to folder:"] = "Déplacer vers:";
+$a->strings["No special theme for mobile devices"] = "Pas de thème particulier pour les terminaux mobiles";
+$a->strings["Display Settings"] = "Affichage";
+$a->strings["Display Theme:"] = "Thème d'affichage:";
+$a->strings["Mobile Theme:"] = "Thème mobile:";
+$a->strings["Update browser every xx seconds"] = "Mettre-à-jour l'affichage toutes les xx secondes";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Délai minimum de 10 secondes, pas de maximum";
+$a->strings["Number of items to display per page:"] = "Nombre d’éléments par page:";
+$a->strings["Maximum of 100 items"] = "Maximum de 100 éléments";
+$a->strings["Number of items to display per page when viewed from mobile device:"] = "Nombre d'éléments a afficher par page pour un appareil mobile";
+$a->strings["Don't show emoticons"] = "Ne pas afficher les émoticônes (smileys grahiques)";
+$a->strings["Don't show notices"] = "Ne plus afficher les avis";
+$a->strings["Infinite scroll"] = "Défilement infini";
+$a->strings["Automatic updates only at the top of the network page"] = "";
+$a->strings["User Types"] = "Types d'utilisateurs";
+$a->strings["Community Types"] = "Genre de communautés";
+$a->strings["Normal Account Page"] = "Compte normal";
+$a->strings["This account is a normal personal profile"] = "Ce compte correspond à un profil normal, pour une seule personne (physique, généralement)";
+$a->strings["Soapbox Page"] = "Compte \"boîte à savon\"";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans 'en lecture seule'";
+$a->strings["Community Forum/Celebrity Account"] = "Compte de communauté/célébrité";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des fans en 'lecture/écriture'";
+$a->strings["Automatic Friend Page"] = "Compte d'\"amitié automatique\"";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Accepter automatiquement toutes les demandes d'amitié/connexion comme étant des amis";
+$a->strings["Private Forum [Experimental]"] = "Forum privé [expérimental]";
+$a->strings["Private forum - approved members only"] = "Forum privé - modéré en inscription";
+$a->strings["OpenID:"] = "OpenID:";
+$a->strings["(Optional) Allow this OpenID to login to this account."] = "&amp;nbsp;(Facultatif) Autoriser cet OpenID à se connecter à ce compte.";
+$a->strings["Publish your default profile in your local site directory?"] = "Publier votre profil par défaut sur l'annuaire local de ce site?";
+$a->strings["No"] = "Non";
+$a->strings["Publish your default profile in the global social directory?"] = "Publier votre profil par défaut sur l'annuaire social global?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Cacher votre liste de contacts/amis des visiteurs de votre profil par défaut?";
+$a->strings["If enabled, posting public messages to Diaspora and other networks isn't possible."] = "";
+$a->strings["Allow friends to post to your profile page?"] = "Autoriser vos amis à publier sur votre profil?";
+$a->strings["Allow friends to tag your posts?"] = "Autoriser vos amis à étiqueter vos publications?";
+$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Autoriser les suggestions d'amis potentiels aux nouveaux arrivants?";
+$a->strings["Permit unknown people to send you private mail?"] = "Autoriser les messages privés d'inconnus?";
+$a->strings["Profile is <strong>not published</strong>."] = "Ce profil n'est <strong>pas publié</strong>.";
+$a->strings["or"] = "ou";
+$a->strings["Your Identity Address is"] = "L'adresse de votre identité est";
+$a->strings["Automatically expire posts after this many days:"] = "Les publications expirent automatiquement après (en jours) :";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées";
+$a->strings["Advanced expiration settings"] = "Réglages avancés de l'expiration";
+$a->strings["Advanced Expiration"] = "Expiration (avancé)";
+$a->strings["Expire posts:"] = "Faire expirer les publications:";
+$a->strings["Expire personal notes:"] = "Faire expirer les notes personnelles:";
+$a->strings["Expire starred posts:"] = "Faire expirer les publications marqués:";
+$a->strings["Expire photos:"] = "Faire expirer les photos:";
+$a->strings["Only expire posts by others:"] = "Faire expirer seulement les publications des autres:";
+$a->strings["Account Settings"] = "Compte";
+$a->strings["Password Settings"] = "Réglages de mot de passe";
+$a->strings["New Password:"] = "Nouveau mot de passe:";
+$a->strings["Confirm:"] = "Confirmer:";
+$a->strings["Leave password fields blank unless changing"] = "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer";
+$a->strings["Current Password:"] = "Mot de passe actuel:";
+$a->strings["Your current password to confirm the changes"] = "Votre mot de passe actuel pour confirmer les modifications";
+$a->strings["Password:"] = "Mot de passe:";
+$a->strings["Basic Settings"] = "Réglages basiques";
+$a->strings["Email Address:"] = "Adresse courriel:";
+$a->strings["Your Timezone:"] = "Votre fuseau horaire:";
+$a->strings["Default Post Location:"] = "Emplacement de publication par défaut:";
+$a->strings["Use Browser Location:"] = "Utiliser la localisation géographique du navigateur:";
+$a->strings["Security and Privacy Settings"] = "Réglages de sécurité et vie privée";
+$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximal de requêtes d'amitié/jour:";
+$a->strings["(to prevent spam abuse)"] = "(pour limiter l'impact du spam)";
+$a->strings["Default Post Permissions"] = "Permissions de publication par défaut";
+$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
+$a->strings["Show to Groups"] = "Montrer aux groupes";
+$a->strings["Show to Contacts"] = "Montrer aux Contacts";
+$a->strings["Default Private Post"] = "Message privé par défaut";
+$a->strings["Default Public Post"] = "Message publique par défaut";
+$a->strings["Default Permissions for New Posts"] = "Permissions par défaut pour les nouvelles publications";
+$a->strings["Maximum private messages per day from unknown people:"] = "Maximum de messages privés d'inconnus par jour:";
+$a->strings["Notification Settings"] = "Réglages de notification";
+$a->strings["By default post a status message when:"] = "Par défaut, poster un statut quand:";
+$a->strings["accepting a friend request"] = "j'accepte un ami";
+$a->strings["joining a forum/community"] = "joignant un forum/une communauté";
+$a->strings["making an <em>interesting</em> profile change"] = "je fais une modification <em>intéressante</em> de mon profil";
+$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand:";
+$a->strings["You receive an introduction"] = "Vous recevez une introduction";
+$a->strings["Your introductions are confirmed"] = "Vos introductions sont confirmées";
+$a->strings["Someone writes on your profile wall"] = "Quelqu'un écrit sur votre mur";
+$a->strings["Someone writes a followup comment"] = "Quelqu'un vous commente";
+$a->strings["You receive a private message"] = "Vous recevez un message privé";
+$a->strings["You receive a friend suggestion"] = "Vous avez reçu une suggestion d'ami";
+$a->strings["You are tagged in a post"] = "Vous avez été étiquetté dans une publication";
+$a->strings["You are poked/prodded/etc. in a post"] = "Vous avez été sollicité dans une publication";
+$a->strings["Text-only notification emails"] = "";
+$a->strings["Send text only notification emails, without the html part"] = "";
+$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/page";
+$a->strings["Change the behaviour of this account for special situations"] = "Modifier le comportement de ce compte dans certaines situations";
+$a->strings["Relocate"] = "Relocaliser";
+$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.";
+$a->strings["Resend relocate message to contacts"] = "Renvoyer un message de relocalisation aux contacts.";
+$a->strings["Common Friends"] = "Amis communs";
+$a->strings["No contacts in common."] = "Pas de contacts en commun.";
+$a->strings["Remote privacy information not available."] = "Informations de confidentialité indisponibles.";
+$a->strings["Visible to:"] = "Visible par:";
+$a->strings["%d contact edited."] = array(
+       0 => "%d contact édité",
+       1 => "%d contacts édités.",
+);
+$a->strings["Could not access contact record."] = "Impossible d'accéder à l'enregistrement du contact.";
+$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil séléctionné.";
+$a->strings["Contact updated."] = "Contact mis-à-jour.";
+$a->strings["Failed to update contact record."] = "Échec de mise-à-jour du contact.";
+$a->strings["Contact has been blocked"] = "Le contact a été bloqué";
+$a->strings["Contact has been unblocked"] = "Le contact n'est plus bloqué";
+$a->strings["Contact has been ignored"] = "Le contact a été ignoré";
+$a->strings["Contact has been unignored"] = "Le contact n'est plus ignoré";
+$a->strings["Contact has been archived"] = "Contact archivé";
+$a->strings["Contact has been unarchived"] = "Contact désarchivé";
+$a->strings["Do you really want to delete this contact?"] = "Voulez-vous vraiment supprimer ce contact?";
+$a->strings["Contact has been removed."] = "Ce contact a été retiré.";
+$a->strings["You are mutual friends with %s"] = "Vous êtes ami (et réciproquement) avec %s";
+$a->strings["You are sharing with %s"] = "Vous partagez avec %s";
+$a->strings["%s is sharing with you"] = "%s partage avec vous";
+$a->strings["Private communications are not available for this contact."] = "Les communications privées ne sont pas disponibles pour ce contact.";
+$a->strings["Never"] = "Jamais";
+$a->strings["(Update was successful)"] = "(Mise à jour effectuée avec succès)";
+$a->strings["(Update was not successful)"] = "(Mise à jour échouée)";
+$a->strings["Suggest friends"] = "Suggérer amitié/contact";
+$a->strings["Network type: %s"] = "Type de réseau %s";
+$a->strings["View all contacts"] = "Voir tous les contacts";
+$a->strings["Unblock"] = "Débloquer";
+$a->strings["Block"] = "Bloquer";
+$a->strings["Toggle Blocked status"] = "(dés)activer l'état \"bloqué\"";
+$a->strings["Unignore"] = "Ne plus ignorer";
+$a->strings["Toggle Ignored status"] = "(dés)activer l'état \"ignoré\"";
+$a->strings["Unarchive"] = "Désarchiver";
+$a->strings["Archive"] = "Archiver";
+$a->strings["Toggle Archive status"] = "(dés)activer l'état \"archivé\"";
+$a->strings["Repair"] = "Réparer";
+$a->strings["Advanced Contact Settings"] = "Réglages avancés du contact";
+$a->strings["Communications lost with this contact!"] = "Communications perdues avec ce contact !";
+$a->strings["Fetch further information for feeds"] = "Chercher plus d'informations pour les flux";
+$a->strings["Disabled"] = "Désactivé";
+$a->strings["Fetch information"] = "Récupérer informations";
+$a->strings["Fetch information and keywords"] = "Récupérer informations";
+$a->strings["Contact Editor"] = "Éditeur de contact";
+$a->strings["Profile Visibility"] = "Visibilité du profil";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer à %s lorsqu'il vous rend visite de manière sécurisée.";
+$a->strings["Contact Information / Notes"] = "Informations de contact / Notes";
+$a->strings["Edit contact notes"] = "Éditer les notes des contacts";
+$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
+$a->strings["Block/Unblock contact"] = "Bloquer/débloquer ce contact";
+$a->strings["Ignore contact"] = "Ignorer ce contact";
+$a->strings["Repair URL settings"] = "Réglages de réparation des URL";
+$a->strings["View conversations"] = "Voir les conversations";
+$a->strings["Delete contact"] = "Effacer ce contact";
+$a->strings["Last update:"] = "Dernière mise-à-jour :";
+$a->strings["Update public posts"] = "Mettre à jour les publications publiques:";
+$a->strings["Update now"] = "Mettre à jour";
+$a->strings["Currently blocked"] = "Actuellement bloqué";
+$a->strings["Currently ignored"] = "Actuellement ignoré";
+$a->strings["Currently archived"] = "Actuellement archivé";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Les réponses et \"j'aime\" à vos publications publiques <strong>peuvent</strong> être toujours visibles";
+$a->strings["Notification for new posts"] = "Notification des nouvelles publications";
+$a->strings["Send a notification of every new post of this contact"] = "Envoyer une notification de chaque nouveau message en provenance de ce contact";
+$a->strings["Blacklisted keywords"] = "Mots-clés sur la liste noire";
+$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Liste de mots-clés separés par des virgules qui ne doivent pas être converti en mots-dièse quand  « Récupérer informations et mots-clés » est sélectionné.";
+$a->strings["Suggestions"] = "Suggestions";
+$a->strings["Suggest potential friends"] = "Suggérer des amis potentiels";
+$a->strings["Show all contacts"] = "Montrer tous les contacts";
+$a->strings["Unblocked"] = "Non-bloqués";
+$a->strings["Only show unblocked contacts"] = "Ne montrer que les contacts non-bloqués";
+$a->strings["Blocked"] = "Bloqués";
+$a->strings["Only show blocked contacts"] = "Ne montrer que les contacts bloqués";
+$a->strings["Ignored"] = "Ignorés";
+$a->strings["Only show ignored contacts"] = "Ne montrer que les contacts ignorés";
+$a->strings["Archived"] = "Archivés";
+$a->strings["Only show archived contacts"] = "Ne montrer que les contacts archivés";
+$a->strings["Hidden"] = "Cachés";
+$a->strings["Only show hidden contacts"] = "Ne montrer que les contacts masqués";
+$a->strings["Mutual Friendship"] = "Relation réciproque";
+$a->strings["is a fan of yours"] = "Vous suit";
+$a->strings["you are a fan of"] = "Vous le/la suivez";
+$a->strings["Edit contact"] = "Éditer le contact";
+$a->strings["Search your contacts"] = "Rechercher dans vos contacts";
+$a->strings["Finding: "] = "Trouvé: ";
+$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Désolé, il semble que votre fichier est plus important que ce que la configuration de PHP autorise";
+$a->strings["Or - did you try to upload an empty file?"] = "Ou — auriez-vous essayé de télécharger un fichier vide ?";
+$a->strings["File exceeds size limit of %d"] = "La taille du fichier dépasse la limite de %d";
+$a->strings["File upload failed."] = "Le téléversement a échoué.";
+$a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
+$a->strings["Export account"] = "Exporter le compte";
+$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportez votre compte, vos infos et vos contacts. Vous pourrez utiliser le résultat comme sauvegarde et/ou pour le ré-importer sur un autre serveur.";
+$a->strings["Export all"] = "Tout exporter";
+$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "Exportez votre compte, vos infos, vos contacts et toutes vos publications (en JSON). Le fichier résultant peut être extrêmement volumineux, et sa production peut durer longtemps. Vous pourrez l'utiliser pour faire une sauvegarde complète (à part les photos).";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Inscription réussie. Vérifiez vos emails pour la suite des instructions.";
+$a->strings["Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."] = "Impossible d’envoyer le courriel de confirmation. Voici vos informations de connexion:<br> identifiant : %s<br> mot de passe : %s<br><br>Vous pourrez changer votre mot de passe une fois connecté.";
+$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traitée.";
+$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription attend une validation du propriétaire du site.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Le nombre d'inscriptions quotidiennes pour ce site a été dépassé. Merci de réessayer demain.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Vous pouvez (si vous le souhaitez) remplir ce formulaire via OpenID. Fournissez votre OpenID et cliquez \"S'inscrire\".";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Si vous n'êtes pas familier avec OpenID, laissez ce champ vide et remplissez le reste.";
+$a->strings["Your OpenID (optional): "] = "Votre OpenID (facultatif): ";
+$a->strings["Include your profile in member directory?"] = "Inclure votre profil dans l'annuaire des membres?";
+$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
+$a->strings["Your invitation ID: "] = "Votre ID d'invitation: ";
+$a->strings["Registration"] = "Inscription";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Votre nom complet (p.ex. Michel Dupont): ";
+$a->strings["Your Email Address: "] = "Votre adresse courriel: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Choisissez un pseudo. Celui devra commencer par une lettre. L'adresse de votre profil en découlera sous la forme '&lt;strong&gt;pseudo@\$sitename&lt;/strong&gt;'.";
+$a->strings["Choose a nickname: "] = "Choisir un pseudo: ";
+$a->strings["Import"] = "Importer";
+$a->strings["Import your profile to this friendica instance"] = "Importer votre profile dans cette instance de friendica";
+$a->strings["Post successful."] = "Publication réussie.";
+$a->strings["System down for maintenance"] = "Système indisponible pour cause de maintenance";
+$a->strings["Access to this profile has been restricted."] = "L'accès au profil a été restreint.";
+$a->strings["Tips for New Members"] = "Conseils aux nouveaux venus";
+$a->strings["Public access denied."] = "Accès public refusé.";
+$a->strings["No videos selected"] = "Pas de vidéo sélectionné";
+$a->strings["Access to this item is restricted."] = "Accès restreint à cet élément.";
+$a->strings["View Album"] = "Voir l'album";
+$a->strings["Recent Videos"] = "Vidéos récente";
+$a->strings["Upload New Videos"] = "Téléversé une nouvelle vidéo";
+$a->strings["Manage Identities and/or Pages"] = "Gérer les identités et/ou les pages";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Basculez entre les différentes identités ou pages (groupes/communautés) qui se partagent votre compte ou que vous avez été autorisé à gérer.";
+$a->strings["Select an identity to manage: "] = "Choisir une identité à gérer: ";
+$a->strings["Item not found"] = "Élément introuvable";
+$a->strings["Edit post"] = "Éditer la publication";
+$a->strings["People Search"] = "Recherche de personnes";
+$a->strings["No matches"] = "Aucune correspondance";
+$a->strings["Account approved."] = "Inscription validée.";
+$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
+$a->strings["Please login."] = "Merci de vous connecter.";
+$a->strings["This introduction has already been accepted."] = "Cette introduction a déjà été acceptée.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "L'emplacement du profil est invalide ou ne contient pas de profil valide.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Attention: l'emplacement du profil n'a pas de nom identifiable.";
+$a->strings["Warning: profile location has no profile photo."] = "Attention: l'emplacement du profil n'a pas de photo de profil.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d paramètre requis n'a pas été trouvé à l'endroit indiqué",
+       1 => "%d paramètres requis n'ont pas été trouvés à l'endroit indiqué",
+);
+$a->strings["Introduction complete."] = "Phase d'introduction achevée.";
+$a->strings["Unrecoverable protocol error."] = "Erreur de protocole non-récupérable.";
+$a->strings["Profile unavailable."] = "Profil indisponible.";
+$a->strings["%s has received too many connection requests today."] = "%s a reçu trop de demandes d'introduction aujourd'hui.";
+$a->strings["Spam protection measures have been invoked."] = "Des mesures de protection contre le spam ont été déclenchées.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Les relations sont encouragées à attendre 24 heures pour recommencer.";
+$a->strings["Invalid locator"] = "Localisateur invalide";
+$a->strings["Invalid email address."] = "Adresse courriel invalide.";
+$a->strings["This account has not been configured for email. Request failed."] = "Ce compte n'a pas été configuré pour les échanges de courriel. Requête avortée.";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossible de résoudre votre nom à l'emplacement fourni.";
+$a->strings["You have already introduced yourself here."] = "Vous vous êtes déjà présenté ici.";
+$a->strings["Apparently you are already friends with %s."] = "Il semblerait que vous soyez déjà ami avec %s.";
+$a->strings["Invalid profile URL."] = "URL de profil invalide.";
+$a->strings["Your introduction has been sent."] = "Votre introduction a été envoyée.";
+$a->strings["Please login to confirm introduction."] = "Connectez-vous pour confirmer l'introduction.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Identité incorrecte actuellement connectée. Merci de vous connecter à <strong>ce</strong> profil.";
+$a->strings["Hide this contact"] = "Cacher ce contact";
+$a->strings["Welcome home %s."] = "Bienvenue chez vous, %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Merci de confirmer votre demande d'introduction auprès de %s.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Merci d'entrer votre \"adresse d'identité\" de l'un des réseaux de communication suivant:";
+$a->strings["If you are not yet a member of the free social web, <a href=\"http://dir.friendica.com/siteinfo\">follow this link to find a public Friendica site and join us today</a>."] = "Si vous n'êtes pas encore membre du web social libre, <a href=\"http://dir.friendica.com/siteinfo\"> suivez ce lien pour trouver un site Friendica ouvert au public et nous rejoindre dès aujourd'hui</a>.";
+$a->strings["Friend/Connection Request"] = "Requête de relation/amitié";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Exemples : jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Merci de répondre à ce qui suit:";
+$a->strings["Does %s know you?"] = "Est-ce que %s vous connaît?";
+$a->strings["Add a personal note:"] = "Ajouter une note personnelle:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - merci de ne pas utiliser ce formulaire.   Entrez plutôt %s dans votre barre de recherche Diaspora.";
+$a->strings["Your Identity Address:"] = "Votre adresse d'identité:";
+$a->strings["Submit Request"] = "Envoyer la requête";
+$a->strings["Files"] = "Fichiers";
+$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
+$a->strings["Return to your app and insert this Securty Code:"] = "Retournez à votre application et saisissez ce Code de Sécurité : ";
+$a->strings["Please login to continue."] = "Merci de vous connecter pour continuer.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à créer des billets à votre place?";
+$a->strings["Do you really want to delete this suggestion?"] = "Voulez-vous vraiment supprimer cette suggestion ?";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion. Si ce site est récent, merci de recommencer dans 24h.";
+$a->strings["Ignore/Hide"] = "Ignorer/cacher";
+$a->strings["Contacts who are not members of a group"] = "Contacts qui n’appartiennent à aucun groupe";
+$a->strings["Contact not found."] = "Contact introuvable.";
+$a->strings["Friend suggestion sent."] = "Suggestion d'amitié/contact envoyée.";
+$a->strings["Suggest Friends"] = "Suggérer des amis/contacts";
+$a->strings["Suggest a friend for %s"] = "Suggérer un ami/contact pour %s";
+$a->strings["link"] = "lien";
+$a->strings["No contacts."] = "Aucun contact.";
+$a->strings["Theme settings updated."] = "Réglages du thème sauvés.";
+$a->strings["Site"] = "Site";
+$a->strings["Users"] = "Utilisateurs";
+$a->strings["Themes"] = "Thèmes";
+$a->strings["DB updates"] = "Mise-à-jour de la base";
+$a->strings["Logs"] = "Journaux";
+$a->strings["probe address"] = "";
+$a->strings["check webfinger"] = "";
+$a->strings["Plugin Features"] = "Propriétés des extensions";
+$a->strings["diagnostics"] = "";
+$a->strings["User registrations waiting for confirmation"] = "Inscriptions en attente de confirmation";
+$a->strings["Normal Account"] = "Compte normal";
+$a->strings["Soapbox Account"] = "Compte \"boîte à savon\"";
+$a->strings["Community/Celebrity Account"] = "Compte de communauté/célébrité";
+$a->strings["Automatic Friend Account"] = "Compte auto-amical";
+$a->strings["Blog Account"] = "Compte de blog";
+$a->strings["Private Forum"] = "Forum privé";
+$a->strings["Message queues"] = "Files d'attente des messages";
+$a->strings["Administration"] = "Administration";
+$a->strings["Summary"] = "Résumé";
+$a->strings["Registered users"] = "Utilisateurs inscrits";
+$a->strings["Pending registrations"] = "Inscriptions en attente";
+$a->strings["Version"] = "Versio";
+$a->strings["Active plugins"] = "Extensions activés";
+$a->strings["Can not parse base url. Must have at least <scheme>://<domain>"] = "Impossible d'analyser l'URL de base. Doit contenir au moins <scheme>://<domain>";
+$a->strings["Site settings updated."] = "Réglages du site mis-à-jour.";
+$a->strings["No community page"] = "";
+$a->strings["Public postings from users of this site"] = "";
+$a->strings["Global community page"] = "";
+$a->strings["At post arrival"] = "A l'arrivé d'une publication";
+$a->strings["Multi user instance"] = "Instance multi-utilisateurs";
+$a->strings["Closed"] = "Fermé";
+$a->strings["Requires approval"] = "Demande une apptrobation";
+$a->strings["Open"] = "Ouvert";
+$a->strings["No SSL policy, links will track page SSL state"] = "Pas de politique SSL, le liens conserveront l'état SSL de la page";
+$a->strings["Force all links to use SSL"] = "Forcer tous les liens à utiliser SSL";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Certificat auto-signé, n'utiliser SSL que pour les liens locaux (non recommandé)";
+$a->strings["File upload"] = "Téléversement de fichier";
+$a->strings["Policies"] = "Politiques";
+$a->strings["Advanced"] = "Avancé";
+$a->strings["Performance"] = "Performance";
+$a->strings["Relocate - WARNING: advanced function. Could make this server unreachable."] = "Relocalisation - ATTENTION: fonction avancée. Peut rendre ce serveur inaccessible.";
+$a->strings["Site name"] = "Nom du site";
+$a->strings["Host name"] = "Nom de la machine hôte";
+$a->strings["Sender Email"] = "";
+$a->strings["Banner/Logo"] = "Bannière/Logo";
+$a->strings["Shortcut icon"] = "";
+$a->strings["Touch icon"] = "";
+$a->strings["Additional Info"] = "Informations supplémentaires";
+$a->strings["For public servers: you can add additional information here that will be listed at dir.friendica.com/siteinfo."] = "Pour les serveurs publics vous pouvez ajouter ici des informations supplémentaires qui seront listées sur dir.friendica.com/siteinfo.";
+$a->strings["System language"] = "Langue du système";
+$a->strings["System theme"] = "Thème du système";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut sur ce site - peut être changé au niveau du profile utilisateur - <a href='#' id='cnftheme'>changer les réglages du thème</a>";
+$a->strings["Mobile system theme"] = "Thème mobile";
+$a->strings["Theme for mobile devices"] = "Thème pour les terminaux mobiles";
+$a->strings["SSL link policy"] = "Politique SSL pour les liens";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "Détermine si les liens générés doivent forcer l'utilisation de SSL";
+$a->strings["Force SSL"] = "SSL obligatoire";
+$a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Redirige toutes les requêtes en clair vers des requêtes SSL. Attention : sur certains systèmes cela peut conduire à des boucles de redirection infinies.";
+$a->strings["Old style 'Share'"] = "Anciens style 'Partage'";
+$a->strings["Deactivates the bbcode element 'share' for repeating items."] = "Désactive l'élément 'partage' de bbcode pour répéter les articles.";
+$a->strings["Hide help entry from navigation menu"] = "Cacher l'aide du menu de navigation";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Cacher du menu de navigation le l'entrée des vers les pages d'aide. Vous pouvez toujours y accéder en tapant directement /help.";
+$a->strings["Single user instance"] = "Instance mono-utilisateur";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Transformer cette en instance en multi-utilisateur ou mono-utilisateur pour cet l'utilisateur.";
+$a->strings["Maximum image size"] = "Taille maximale des images";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximale des images envoyées (en octets). 0 par défaut, c'est à dire \"aucune limite\".";
+$a->strings["Maximum image length"] = "Longueur maximale des images";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Longueur maximale (en pixels) du plus long côté des images téléversées. La valeur par défaut est -1, soit une absence de limite.";
+$a->strings["JPEG image quality"] = "Qualité JPEG des images";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Les JPEGs téléversés seront sauvegardés avec ce niveau de qualité [0-100]. La valeur par défaut est 100, soit la qualité maximale.";
+$a->strings["Register policy"] = "Politique d'inscription";
+$a->strings["Maximum Daily Registrations"] = "Inscriptions maximum par jour";
+$a->strings["If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect."] = "Si les inscriptions sont permises ci-dessus, ceci fixe le nombre maximum d'inscriptions de nouveaux utilisateurs acceptées par jour. Si les inscriptions ne sont pas ouvertes, ce paramètre n'a aucun effet.";
+$a->strings["Register text"] = "Texte d'inscription";
+$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur la page d'accueil.";
+$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Pour ne pas gaspiller les ressources système, on cesse d'interroger les sites distants pour les comptes abandonnés. Mettre 0 pour désactiver cette fonction.";
+$a->strings["Allowed friend domains"] = "Domaines autorisés";
+$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Une liste de domaines, séparés par des virgules, autorisés à établir des relations avec les utilisateurs de ce site. Les '*' sont acceptés. Laissez vide pour autoriser tous les domaines";
+$a->strings["Allowed email domains"] = "Domaines courriel autorisés";
+$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de domaines - séparés par des virgules - dont les adresses e-mail sont autorisées à s'inscrire sur ce site. Les '*' sont acceptées. Laissez vide pour autoriser tous les domaines";
+$a->strings["Block public"] = "Interdire la publication globale";
+$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "Cocher pour bloquer les accès anonymes (non-connectés) à tout sauf aux pages personnelles publiques.";
+$a->strings["Force publish"] = "Forcer la publication globale";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour publier obligatoirement tous les profils locaux dans l'annuaire du site.";
+$a->strings["Global directory update URL"] = "URL de mise-à-jour de l'annuaire global";
+$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL de mise-à-jour de l'annuaire global. Si vide, l'annuaire global sera complètement indisponible.";
+$a->strings["Allow threaded items"] = "autoriser le suivi des éléments par fil conducteur";
+$a->strings["Allow infinite level threading for items on this site."] = "Permettre une imbrication infinie des commentaires.";
+$a->strings["Private posts by default for new users"] = "Publications privées par défaut pour les nouveaux utilisateurs";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Rendre les publications de tous les nouveaux utilisateurs accessibles seulement par le groupe de contacts par défaut, et non par tout le monde.";
+$a->strings["Don't include post content in email notifications"] = "Ne pas inclure le contenu posté dans l'e-mail de notification";
+$a->strings["Don't include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure."] = "Ne pas inclure le contenu de publication/commentaire/message privé/etc dans l'e-mail de notification qui est envoyé à partir du site, par mesure de confidentialité.";
+$a->strings["Disallow public access to addons listed in the apps menu."] = "Interdire l’accès public pour les greffons listées dans le menu apps.";
+$a->strings["Checking this box will restrict addons listed in the apps menu to members only."] = "Cocher cette case restreint la liste des greffons dans le menu des applications seulement aux membres.";
+$a->strings["Don't embed private images in posts"] = "Ne pas miniaturiser les images privées dans les publications";
+$a->strings["Don't replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while."] = "Ne remplacez pas les images privées hébergées localement dans les publications avec une image attaché en copie, car cela signifie que le contact qui reçoit les publications contenant ces photos privées devra s’authentifier pour charger chaque image, ce qui peut prendre du temps.";
+$a->strings["Allow Users to set remote_self"] = "Autoriser les utilisateurs à définir remote_self";
+$a->strings["With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream."] = "Cocher cette case, permet à chaque utilisateur de marquer chaque contact comme un remote_self dans la boîte de dialogue de réparation des contacts. Activer cette fonction à un contact engendre la réplique de toutes les publications d'un contact dans le flux d'activités des utilisateurs.";
+$a->strings["Block multiple registrations"] = "Interdire les inscriptions multiples";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "Ne pas permettre l'inscription de comptes multiples comme des pages.";
+$a->strings["OpenID support"] = "Support OpenID";
+$a->strings["OpenID support for registration and logins."] = "Supporter OpenID pour les inscriptions et connexions.";
+$a->strings["Fullname check"] = "Vérification du \"Prénom Nom\"";
+$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "Imposer l'utilisation d'un espace entre le prénom et le nom (dans le Nom complet), pour limiter les abus";
+$a->strings["UTF-8 Regular expressions"] = "Regex UTF-8";
+$a->strings["Use PHP UTF8 regular expressions"] = "Utiliser les expressions rationnelles de PHP en UTF8";
+$a->strings["Community Page Style"] = "";
+$a->strings["Type of community page to show. 'Global community' shows every public posting from an open distributed network that arrived on this server."] = "";
+$a->strings["Posts per user on community page"] = "";
+$a->strings["The maximum number of posts per user on the community page. (Not valid for 'Global Community')"] = "";
+$a->strings["Enable OStatus support"] = "Activer le support d'OStatus";
+$a->strings["Provide built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "Fourni nativement la compatibilité avec OStatus (StatusNet, GNU Social etc.). Touts les communications utilisant OStatus sont public, des avertissements liés à la vie privée seront affichés si utile.";
+$a->strings["OStatus conversation completion interval"] = "Achèvement de l'intervalle de conversation OStatus ";
+$a->strings["How often shall the poller check for new entries in OStatus conversations? This can be a very ressource task."] = "Combien de fois le poller devra vérifier les nouvelles entrées dans les conversations OStatus? Cela peut utilisé beaucoup de ressources.";
+$a->strings["Enable Diaspora support"] = "Activer le support de Diaspora";
+$a->strings["Provide built-in Diaspora network compatibility."] = "Fournir une compatibilité Diaspora intégrée.";
+$a->strings["Only allow Friendica contacts"] = "N'autoriser que les contacts Friendica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "Tous les contacts doivent utiliser les protocoles de Friendica. Tous les autres protocoles de communication intégrés sont désactivés.";
+$a->strings["Verify SSL"] = "Vérifier SSL";
+$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "Si vous le souhaitez, vous pouvez activier la vérification stricte des certificats. Cela signifie que vous ne pourrez pas vous connecter (du tout) aux sites SSL munis d'un certificat auto-signé.";
+$a->strings["Proxy user"] = "Utilisateur du proxy";
+$a->strings["Proxy URL"] = "URL du proxy";
+$a->strings["Network timeout"] = "Dépassement du délai d'attente du réseau";
+$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valeur en secondes. Mettre à 0 pour 'illimité' (pas recommandé).";
+$a->strings["Delivery interval"] = "Intervalle de transmission";
+$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Rallonge le processus de transmissions pour réduire la charge système (en secondes). Valeurs recommandées : 4-5 pour les serveurs mutualisés, 2-3 pour les VPS, 0-1 pour les gros servers dédiés.";
+$a->strings["Poll interval"] = "Intervalle de réception";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Rajouter un délai - en secondes - au processus de 'polling', afin de réduire la charge système. Mettre à 0 pour utiliser l'intervalle d'émission.";
+$a->strings["Maximum Load Average"] = "Plafond de la charge moyenne";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale à partir de laquelle l'émission et la réception seront soumises à un délai supplémentaire. Par défaut, 50.";
+$a->strings["Use MySQL full text engine"] = "Utiliser le moteur de recherche plein texte de MySQL";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Activer le moteur de recherche plein texte. Accélère la recherche mais peut seulement rechercher quatre lettres ou plus.";
+$a->strings["Suppress Language"] = "Supprimer un langage";
+$a->strings["Suppress language information in meta information about a posting."] = "Supprimer les informations de langue dans les métadonnées des publications.";
+$a->strings["Suppress Tags"] = "";
+$a->strings["Suppress showing a list of hashtags at the end of the posting."] = "";
+$a->strings["Path to item cache"] = "Chemin vers le cache des objets.";
+$a->strings["Cache duration in seconds"] = "Durée du cache en secondes";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1."] = "Combien de temps les fichiers de cache doivent être maintenu? La valeur par défaut est 86400 secondes (une journée). Pour désactiver le cache de l'item, définissez la valeur à -1.";
+$a->strings["Maximum numbers of comments per post"] = "Nombre maximum de commentaires par publication";
+$a->strings["How much comments should be shown for each post? Default value is 100."] = "Combien de commentaires doivent être affichés pour chaque publication? Valeur par défaut: 100.";
+$a->strings["Path for lock file"] = "Chemin vers le ficher de verrouillage";
+$a->strings["Temp path"] = "Chemin des fichiers temporaires";
+$a->strings["Base path to installation"] = "Chemin de base de l'installation";
+$a->strings["Disable picture proxy"] = "Désactiver le proxy image ";
+$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante.";
+$a->strings["Enable old style pager"] = "";
+$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
+$a->strings["Only search in tags"] = "";
+$a->strings["On large systems the text search can slow down the system extremely."] = "";
+$a->strings["New base url"] = "Nouvelle URL de base";
+$a->strings["Update has been marked successful"] = "Mise-à-jour validée comme 'réussie'";
+$a->strings["Database structure update %s was successfully applied."] = "La structure de base de données pour la mise à jour %s a été appliquée avec succès.";
+$a->strings["Executing of database structure update %s failed with error: %s"] = "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s";
+$a->strings["Executing %s failed with error: %s"] = "L'exécution %s a échoué avec l'erreur: %s";
+$a->strings["Update %s was successfully applied."] = "Mise-à-jour %s appliquée avec succès.";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise-à-jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi.";
+$a->strings["There was no additional update function %s that needed to be called."] = "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé";
+$a->strings["No failed updates."] = "Pas de mises-à-jour échouées.";
+$a->strings["Check database structure"] = "Vérifier la structure de la base de données";
+$a->strings["Failed Updates"] = "Mises-à-jour échouées";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails.";
+$a->strings["Mark success (if update was manually applied)"] = "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)";
+$a->strings["Attempt to execute this update step automatically"] = "Tenter d'éxecuter cette étape automatiquement";
+$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\t\tChère/Cher %1\$s,\n\t\t\t\tL’administrateur de %2\$s vous a ouvert un compte.";
+$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t\t%2\$s\n\t\t\tPassword:\t\t%3\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tThank you and welcome to %4\$s."] = "\n\t\t\tVoici vos informations de connexion :\n\n\t\t\tAdresse :\t%1\$s\n\t\t\tIdentifiant :\t\t%2\$s\n\t\t\tMot de passe :\t\t%3\$s\n\n\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\n\t\t\tProfitez-en pour prendre le temps de passer en revue les autres paramètres de votre compte.\n\n\t\t\tVous pourrez aussi ajouter quelques informations élémentaires à votre profil par défaut (sur la page « Profils ») pour permettre à d’autres personnes de vous trouver facilement.\n\n\t\t\tNous recommandons de préciser votre nom complet, d’ajouter une photo et quelques mots-clefs (c’est très utile pour découvrir de nouveaux amis), et peut-être aussi d’indiquer au moins le pays dans lequel vous vivez, à défaut d’être plus précis.\n\n\t\t\tNous respectons pleinement votre droit à une vie privée, et vous n’avez aucune obligation de donner toutes ces informations. Mais si vous êtes nouveau et ne connaissez encore personne ici, cela peut vous aider à vous faire de nouveaux amis intéressants.\n\n\t\t\tMerci et bienvenu sur %4\$s.";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "%s utilisateur a (dé)bloqué",
+       1 => "%s utilisateurs ont (dé)bloqué",
+);
+$a->strings["%s user deleted"] = array(
+       0 => "%s utilisateur supprimé",
+       1 => "%s utilisateurs supprimés",
+);
+$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
+$a->strings["User '%s' unblocked"] = "Utilisateur '%s' débloqué";
+$a->strings["User '%s' blocked"] = "Utilisateur '%s' bloqué";
+$a->strings["Add User"] = "Ajouter l'utilisateur";
+$a->strings["select all"] = "tout sélectionner";
+$a->strings["User registrations waiting for confirm"] = "Inscriptions d'utilisateurs en attente de confirmation";
+$a->strings["User waiting for permanent deletion"] = "Utilisateur en attente de suppression définitive";
+$a->strings["Request date"] = "Date de la demande";
+$a->strings["No registrations."] = "Pas d'inscriptions.";
+$a->strings["Deny"] = "Rejetter";
+$a->strings["Site admin"] = "Administration du Site";
+$a->strings["Account expired"] = "Compte expiré";
+$a->strings["New User"] = "Nouvel utilisateur";
+$a->strings["Register date"] = "Date d'inscription";
+$a->strings["Last login"] = "Dernière connexion";
+$a->strings["Last item"] = "Dernier élément";
+$a->strings["Deleted since"] = "Supprimé depuis";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?";
+$a->strings["The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "L'utilisateur {0} va être supprimé!\\n\\nTout ce qu'il a posté sur ce site sera définitivement perdu!\\n\\nÊtes-vous certain?";
+$a->strings["Name of the new user."] = "Nom du nouvel utilisateur.";
+$a->strings["Nickname"] = "Pseudo";
+$a->strings["Nickname of the new user."] = "Pseudo du nouvel utilisateur.";
+$a->strings["Email address of the new user."] = "Adresse mail du nouvel utilisateur.";
+$a->strings["Plugin %s disabled."] = "Extension %s désactivée.";
+$a->strings["Plugin %s enabled."] = "Extension %s activée.";
+$a->strings["Disable"] = "Désactiver";
+$a->strings["Enable"] = "Activer";
+$a->strings["Toggle"] = "Activer/Désactiver";
+$a->strings["Author: "] = "Auteur: ";
+$a->strings["Maintainer: "] = "Mainteneur: ";
+$a->strings["No themes found."] = "Aucun thème trouvé.";
+$a->strings["Screenshot"] = "Capture d'écran";
+$a->strings["[Experimental]"] = "[Expérimental]";
+$a->strings["[Unsupported]"] = "[Non supporté]";
+$a->strings["Log settings updated."] = "Réglages des journaux mis-à-jour.";
+$a->strings["Clear"] = "Effacer";
+$a->strings["Enable Debugging"] = "Activer le déboggage";
+$a->strings["Log file"] = "Fichier de journaux";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Accès en écriture par le serveur web requis. Relatif à la racine de votre installation de Friendica.";
+$a->strings["Log level"] = "Niveau de journalisaton";
+$a->strings["Close"] = "Fermer";
+$a->strings["FTP Host"] = "Hôte FTP";
+$a->strings["FTP Path"] = "Chemin FTP";
+$a->strings["FTP User"] = "Utilisateur FTP";
+$a->strings["FTP Password"] = "Mot de passe FTP";
+$a->strings["Image exceeds size limit of %d"] = "L'image dépasse la taille limite de %d";
+$a->strings["Unable to process image."] = "Impossible de traiter l'image.";
+$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
+$a->strings["Welcome to %s"] = "Bienvenue sur %s";
+$a->strings["OpenID protocol error. No ID returned."] = "Erreur de protocole OpenID. Pas d'ID en retour.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Compte introuvable, et l'inscription OpenID n'est pas autorisée sur ce site.";
+$a->strings["Search Results For:"] = "Résultats pour:";
+$a->strings["Remove term"] = "Retirer le terme";
+$a->strings["Commented Order"] = "Tri par commentaires";
+$a->strings["Sort by Comment Date"] = "Trier par date de commentaire";
+$a->strings["Posted Order"] = "Tri des publications";
+$a->strings["Sort by Post Date"] = "Trier par date de publication";
+$a->strings["Posts that mention or involve you"] = "Publications qui vous concernent";
+$a->strings["New"] = "Nouveau";
+$a->strings["Activity Stream - by date"] = "Flux d'activités - par date";
+$a->strings["Shared Links"] = "Liens partagés";
+$a->strings["Interesting Links"] = "Liens intéressants";
+$a->strings["Starred"] = "Mis en avant";
+$a->strings["Favourite Posts"] = "Publications favorites";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Attention: Ce groupe contient %s membre d'un réseau non-sûr.",
+       1 => "Attention: Ce groupe contient %s membres d'un réseau non-sûr.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Les messages privés envoyés à ce groupe s'exposent à une diffusion incontrôlée.";
+$a->strings["No such group"] = "Groupe inexistant";
+$a->strings["Group is empty"] = "Groupe vide";
+$a->strings["Group: "] = "Groupe: ";
+$a->strings["Contact: "] = "Contact: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Les messages privés envoyés à ce contact s'exposent à une diffusion incontrôlée.";
+$a->strings["Invalid contact."] = "Contact invalide.";
+$a->strings["- select -"] = "- choisir -";
+$a->strings["This is Friendica, version"] = "Motorisé par Friendica version";
+$a->strings["running at web location"] = "hébergé sur";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Merci de vous rendre sur <a href=\"http://friendica.com\">Friendica.com</a> si vous souhaitez en savoir plus sur le projet Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Pour les rapports de bugs: rendez vous sur";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggestions, remerciements, donations, etc. - écrivez à \"Info\" arob. Friendica - point com";
+$a->strings["Installed plugins/addons/apps:"] = "Extensions/greffons/applications installées:";
+$a->strings["No installed plugins/addons/apps"] = "Extensions/greffons/applications non installées:";
+$a->strings["Applications"] = "Applications";
+$a->strings["No installed applications."] = "Pas d'application installée.";
+$a->strings["Upload New Photos"] = "Téléverser de nouvelles photos";
+$a->strings["Contact information unavailable"] = "Informations de contact indisponibles";
+$a->strings["Album not found."] = "Album introuvable.";
+$a->strings["Delete Album"] = "Effacer l'album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?";
+$a->strings["Delete Photo"] = "Effacer la photo";
+$a->strings["Do you really want to delete this photo?"] = "Voulez-vous vraiment supprimer cette photo ?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s a été étiqueté dans %2\$s par %3\$s";
+$a->strings["a photo"] = "une photo";
+$a->strings["Image exceeds size limit of "] = "L'image dépasse la taille maximale de  ";
+$a->strings["Image file is empty."] = "Fichier image vide.";
+$a->strings["No photos selected"] = "Aucune photo sélectionnée";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Vous avez utilisé %1$.2f Mo sur %2$.2f d'espace de stockage pour les photos.";
+$a->strings["Upload Photos"] = "Téléverser des photos";
+$a->strings["New album name: "] = "Nom du nouvel album: ";
+$a->strings["or existing album name: "] = "ou nom d'un album existant: ";
+$a->strings["Do not show a status post for this upload"] = "Ne pas publier de notice de statut pour cet envoi";
+$a->strings["Permissions"] = "Permissions";
+$a->strings["Private Photo"] = "Photo privée";
+$a->strings["Public Photo"] = "Photo publique";
+$a->strings["Edit Album"] = "Éditer l'album";
+$a->strings["Show Newest First"] = "Plus récent d'abord";
+$a->strings["Show Oldest First"] = "Plus ancien d'abord";
+$a->strings["View Photo"] = "Voir la photo";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Interdit. L'accès à cet élément peut avoir été restreint.";
+$a->strings["Photo not available"] = "Photo indisponible";
+$a->strings["View photo"] = "Voir photo";
+$a->strings["Edit photo"] = "Éditer la photo";
+$a->strings["Use as profile photo"] = "Utiliser comme photo de profil";
+$a->strings["View Full Size"] = "Voir en taille réelle";
+$a->strings["Tags: "] = "Étiquettes:";
+$a->strings["[Remove any tag]"] = "[Retirer toutes les étiquettes]";
+$a->strings["Rotate CW (right)"] = "Tourner dans le sens des aiguilles d'une montre (vers la droite)";
+$a->strings["Rotate CCW (left)"] = "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)";
+$a->strings["New album name"] = "Nom du nouvel album";
+$a->strings["Caption"] = "Titre";
+$a->strings["Add a Tag"] = "Ajouter une étiquette";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Exemples: @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances";
+$a->strings["Private photo"] = "Photo privée";
+$a->strings["Public photo"] = "Photo publique";
+$a->strings["Recent Photos"] = "Photos récentes";
+$a->strings["The post was created"] = "";
+$a->strings["Contact added"] = "Contact ajouté";
+$a->strings["Move account"] = "Migrer le compte";
+$a->strings["You can import an account from another Friendica server."] = "Vous pouvez importer un compte d'un autre serveur Friendica.";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Vous devez exporter votre compte à partir de l'ancien serveur et le téléverser ici. Nous recréerons votre ancien compte ici avec tous vos contacts. Nous tenterons également d'informer vos amis que vous avez déménagé ici.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Cette fonctionnalité est expérimentale. Nous ne pouvons importer les contacts des réseaux OStatus (statusnet/identi.ca) ou Diaspora";
+$a->strings["Account file"] = "Fichier du compte";
+$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "Pour exporter votre compte, allez dans \"Paramètres> Exporter vos données personnelles\" et sélectionnez \"exportation de compte\"";
+$a->strings["Total invitation limit exceeded."] = "La limite d'invitation totale est éxédée.";
+$a->strings["%s : Not a valid email address."] = "%s : Adresse de courriel invalide.";
+$a->strings["Please join us on Friendica"] = "Rejoignez-nous sur Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site.";
+$a->strings["%s : Message delivery failed."] = "%s : L'envoi du message a échoué.";
+$a->strings["%d message sent."] = array(
+       0 => "%d message envoyé.",
+       1 => "%d messages envoyés.",
+);
+$a->strings["You have no more invitations available"] = "Vous n'avez plus d'invitations disponibles";
+$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public.";
+$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres.";
+$a->strings["Send invitations"] = "Envoyer des invitations";
+$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses email, une par ligne :";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Vous devrez fournir ce code d'invitation : \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Une fois inscrit, connectez-vous à la page de mon profil sur :";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Pour plus d'information sur le projet Friendica, et pourquoi nous croyons qu'il est important, merci de visiter http://friendica.com";
+$a->strings["Access denied."] = "Accès refusé.";
+$a->strings["No valid account found."] = "Impossible de trouver un compte valide.";
+$a->strings["Password reset request issued. Check your email."] = "Réinitialisation du mot de passe en cours. Vérifiez votre courriel.";
+$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tChère/Cher %1\$s,\n\t\t\tNous avons reçu une demande de ré-initialisation du mot de passe de votre compte sur \"%2\$s\". Pour confirmer cette demande, veuillez cliquer sur le lien de vérification ci-dessous ou le coller dans la barre d’adresse de votre navigateur.\n\n\t\tSi vous n’êtes PAS à l’origine de cette demande, NE suivez PAS le lien—ignorez et/ou supprimez ce message.\n\n\t\tVotre mot de passe ne sera pas modifié si nous n’avons pas de confirmation que la demande émane de vous.";
+$a->strings["\n\t\tFollow this link to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1\$s\n\n\t\tVous recevrez alors a message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2\$s\n\t\tIdentifiant :\t%3\$s";
+$a->strings["Password reset requested at %s"] = "Requête de réinitialisation de mot de passe à %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Impossible d'honorer cette demande. (Vous l'avez peut-être déjà utilisée par le passé.) La réinitialisation a échoué.";
+$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
+$a->strings["Your new password is"] = "Votre nouveau mot de passe est ";
+$a->strings["Save or copy your new password - and then"] = "Sauvez ou copiez ce nouveau mot de passe - puis";
+$a->strings["click here to login"] = "cliquez ici pour vous connecter";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page &lt;em&gt;Réglages&lt;/em&gt;, une fois que vous serez connecté.";
+$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\t\tinformation for your records (or change your password immediately to\n\t\t\t\tsomething that you will remember).\n\t\t\t"] = "\n\t\t\t\tChère/Cher %1\$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t";
+$a->strings["\n\t\t\t\tYour login details are as follows:\n\n\t\t\t\tSite Location:\t%1\$s\n\t\t\t\tLogin Name:\t%2\$s\n\t\t\t\tPassword:\t%3\$s\n\n\t\t\t\tYou may change that password from your account settings page after logging in.\n\t\t\t"] = "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1\$s\n\t\t\t\tIdentifiant :\t%2\$s\n\t\t\t\tMot de passe :\t%3\$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t";
+$a->strings["Your password has been changed at %s"] = "Votre mot de passe a été modifié à %s";
+$a->strings["Forgot your Password?"] = "Mot de passe oublié ?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel.";
+$a->strings["Nickname or Email: "] = "Pseudo ou eMail : ";
+$a->strings["Reset"] = "Réinitialiser";
+$a->strings["Source (bbcode) text:"] = "Texte source (bbcode) :";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Texte source (Diaspora) à convertir en BBcode :";
+$a->strings["Source input: "] = "Source input : ";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML brut)";
+$a->strings["bb2html: "] = "bb2html : ";
+$a->strings["bb2html2bb: "] = "bb2html2bb : ";
+$a->strings["bb2md: "] = "bb2md : ";
+$a->strings["bb2md2html: "] = "bb2md2html : ";
+$a->strings["bb2dia2bb: "] = "bb2dia2bb : ";
+$a->strings["bb2md2html2bb: "] = "bb2md2html2bb : ";
+$a->strings["Source input (Diaspora format): "] = "Texte source (format Diaspora) :";
+$a->strings["diaspora2bb: "] = "diaspora2bb :";
+$a->strings["Tag removed"] = "Étiquette supprimée";
+$a->strings["Remove Item Tag"] = "Enlever l'étiquette de l'élément";
+$a->strings["Select a tag to remove: "] = "Sélectionner une étiquette à supprimer: ";
+$a->strings["Remove My Account"] = "Supprimer mon compte";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ceci supprimera totalement votre compte. Cette opération est irréversible.";
+$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification :";
+$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
+$a->strings["Profile Visibility Editor"] = "Éditer la visibilité du profil";
+$a->strings["Visible To"] = "Visible par";
+$a->strings["All Contacts (with secure profile access)"] = "Tous les contacts (ayant un accès sécurisé)";
+$a->strings["Profile Match"] = "Correpondance de profils";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clé en correspondance. Merci d'ajouter des mots-clés à votre profil par défaut.";
+$a->strings["is interested in:"] = "s'intéresse à :";
+$a->strings["Event title and start time are required."] = "Vous devez donner un nom et un horaire de début à l'événement.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Editer l'événement";
+$a->strings["Create New Event"] = "Créer un nouvel événement";
+$a->strings["Previous"] = "Précédent";
+$a->strings["Next"] = "Suivant";
+$a->strings["hour:minute"] = "heures:minutes";
+$a->strings["Event details"] = "Détails de l'événement";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Le format est %s %s. La date de début et le nom sont nécessaires.";
+$a->strings["Event Starts:"] = "Début de l'événement :";
+$a->strings["Required"] = "Requis";
+$a->strings["Finish date/time is not known or not relevant"] = "Date / heure de fin inconnue ou sans objet";
+$a->strings["Event Finishes:"] = "Fin de l'événement:";
+$a->strings["Adjust for viewer timezone"] = "Ajuster à la zone horaire du visiteur";
+$a->strings["Description:"] = "Description:";
+$a->strings["Title:"] = "Titre :";
+$a->strings["Share this event"] = "Partager cet événement";
+$a->strings["{0} wants to be your friend"] = "{0} souhaite être votre ami(e)";
+$a->strings["{0} sent you a message"] = "{0} vous a envoyé un message";
+$a->strings["{0} requested registration"] = "{0} a demandé à s'inscrire";
+$a->strings["{0} commented %s's post"] = "{0} a commenté la publication de %s";
+$a->strings["{0} liked %s's post"] = "{0} a aimé la publication de %s";
+$a->strings["{0} disliked %s's post"] = "{0} n'a pas aimé la publication de %s";
+$a->strings["{0} is now friends with %s"] = "{0} est désormais ami(e) avec %s";
+$a->strings["{0} posted"] = "{0} a publié";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} a étiqueté la publication de %s avec #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} vous a mentionné dans une publication";
+$a->strings["Mood"] = "Humeur";
+$a->strings["Set your current mood and tell your friends"] = "Spécifiez votre humeur du moment, et informez vos amis";
+$a->strings["No results."] = "Aucun résultat.";
+$a->strings["Unable to locate contact information."] = "Impossible de localiser les informations du contact.";
+$a->strings["Do you really want to delete this message?"] = "Voulez-vous vraiment supprimer ce message ?";
+$a->strings["Message deleted."] = "Message supprimé.";
+$a->strings["Conversation removed."] = "Conversation supprimée.";
+$a->strings["No messages."] = "Aucun message.";
+$a->strings["Unknown sender - %s"] = "Émetteur inconnu - %s";
+$a->strings["You and %s"] = "Vous et %s";
+$a->strings["%s and You"] = "%s et vous";
+$a->strings["Delete conversation"] = "Effacer conversation";
+$a->strings["D, d M Y - g:i A"] = "D, d M Y - g:i A";
+$a->strings["%d message"] = array(
+       0 => "%d message",
+       1 => "%d messages",
 );
-$a->strings["Done. You can now login with your username and password"] = "Action réalisé. Vous pouvez désormais vous connecter avec votre nom d'utilisateur et votre mot de passe";
-$a->strings["toggle mobile"] = "activ. mobile";
-$a->strings["Theme settings"] = "Réglages du thème graphique";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Choisir une taille pour les images dans les publications et commentaires (largeur et hauteur)";
-$a->strings["Set font-size for posts and comments"] = "Réglez 'font-size' (taille de police) pour publications et commentaires";
-$a->strings["Set theme width"] = "Largeur du thème";
-$a->strings["Color scheme"] = "Palette de couleurs";
-$a->strings["Set line-height for posts and comments"] = "Réglez 'line-height' (hauteur de police) pour publications et commentaires";
-$a->strings["Set colour scheme"] = "Choisir le schéma de couleurs";
-$a->strings["Alignment"] = "Alignement";
-$a->strings["Left"] = "Gauche";
-$a->strings["Center"] = "Centre";
-$a->strings["Posts font size"] = "Taille de texte des publications";
-$a->strings["Textareas font size"] = "Taille de police des zones de texte";
-$a->strings["Set resolution for middle column"] = "Réglez la résolution de la colonne centrale";
-$a->strings["Set color scheme"] = "Choisir le schéma de couleurs";
-$a->strings["Set zoomfactor for Earth Layer"] = "Niveau de zoom";
-$a->strings["Set longitude (X) for Earth Layers"] = "Régler la longitude (X) pour la géolocalisation";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Régler la latitude (Y) pour la géolocalisation";
-$a->strings["Community Pages"] = "Pages de Communauté";
-$a->strings["Earth Layers"] = "Géolocalisation";
-$a->strings["Community Profiles"] = "Profils communautaires";
-$a->strings["Help or @NewHere ?"] = "Aide ou @NewHere?";
-$a->strings["Connect Services"] = "Connecter des services";
-$a->strings["Find Friends"] = "Trouver des amis";
-$a->strings["Last users"] = "Derniers utilisateurs";
-$a->strings["Last photos"] = "Dernières photos";
-$a->strings["Last likes"] = "Dernièrement aimé";
-$a->strings["Your contacts"] = "Vos contacts";
-$a->strings["Your personal photos"] = "Vos photos personnelles";
-$a->strings["Local Directory"] = "Annuaire local";
-$a->strings["Set zoomfactor for Earth Layers"] = "Régler le niveau de zoom pour la géolocalisation";
-$a->strings["Show/hide boxes at right-hand column:"] = "Montrer/cacher les boîtes dans la colonne de droite :";
-$a->strings["Set style"] = "Définir le style";
-$a->strings["greenzero"] = "";
-$a->strings["purplezero"] = "";
-$a->strings["easterbunny"] = "";
-$a->strings["darkzero"] = "";
-$a->strings["comix"] = "";
-$a->strings["slackr"] = "";
-$a->strings["Variations"] = "";
+$a->strings["Message not available."] = "Message indisponible.";
+$a->strings["Delete message"] = "Effacer message";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Pas de communications sécurisées possibles. Vous serez <strong>peut-être</strong> en mesure de répondre depuis la page de profil de l'émetteur.";
+$a->strings["Send Reply"] = "Répondre";
+$a->strings["Not available."] = "Indisponible.";
+$a->strings["Profile not found."] = "Profil introuvable.";
+$a->strings["Profile deleted."] = "Profil supprimé.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Nouveau profil créé.";
+$a->strings["Profile unavailable to clone."] = "Ce profil ne peut être cloné.";
+$a->strings["Profile Name is required."] = "Le nom du profil est requis.";
+$a->strings["Marital Status"] = "Statut marital";
+$a->strings["Romantic Partner"] = "Partenaire / conjoint";
+$a->strings["Likes"] = "Derniers \"J'aime\"";
+$a->strings["Dislikes"] = "Derniers \"Je n'aime pas\"";
+$a->strings["Work/Employment"] = "Travail / Occupation";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Tendance politique";
+$a->strings["Gender"] = "Sexe";
+$a->strings["Sexual Preference"] = "Préférence sexuelle";
+$a->strings["Homepage"] = "Site internet";
+$a->strings["Interests"] = "Centres d'intérêt";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Localisation";
+$a->strings["Profile updated."] = "Profil mis à jour.";
+$a->strings[" and "] = " et ";
+$a->strings["public profile"] = "profil public";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "Visiter le %2\$s de %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour son %2\$s, en modifiant %3\$s.";
+$a->strings["Hide contacts and friends:"] = "Cacher mes contacts et amis :";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher ma liste d'amis / contacts des visiteurs de ce profil ?";
+$a->strings["Edit Profile Details"] = "Éditer les détails du profil";
+$a->strings["Change Profile Photo"] = "Changer la photo du profil";
+$a->strings["View this profile"] = "Voir ce profil";
+$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil en utilisant ces réglages";
+$a->strings["Clone this profile"] = "Cloner ce profil";
+$a->strings["Delete this profile"] = "Supprimer ce profil";
+$a->strings["Basic information"] = "Information de base";
+$a->strings["Profile picture"] = "Image de profil";
+$a->strings["Preferences"] = "Préférences";
+$a->strings["Status information"] = "Information sur le statut";
+$a->strings["Additional information"] = "Information additionnelle";
+$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
+$a->strings["Profile Name:"] = "Nom du profil :";
+$a->strings["Your Full Name:"] = "Votre nom complet :";
+$a->strings["Title/Description:"] = "Titre / Description :";
+$a->strings["Your Gender:"] = "Votre genre :";
+$a->strings["Birthday (%s):"] = "Anniversaire (%s) :";
+$a->strings["Street Address:"] = "Adresse postale :";
+$a->strings["Locality/City:"] = "Ville / Localité :";
+$a->strings["Postal/Zip Code:"] = "Code postal :";
+$a->strings["Country:"] = "Pays :";
+$a->strings["Region/State:"] = "Région / État :";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Statut marital :";
+$a->strings["Who: (if applicable)"] = "Qui : (si pertinent)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Depuis [date]  :";
+$a->strings["Homepage URL:"] = "Page personnelle :";
+$a->strings["Religious Views:"] = "Opinions religieuses :";
+$a->strings["Public Keywords:"] = "Mots-clés publics :";
+$a->strings["Private Keywords:"] = "Mots-clés privés :";
+$a->strings["Example: fishing photography software"] = "Exemple : football dessin programmation";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Utilisés pour vous suggérer des amis potentiels, peuvent être vus par autrui)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Utilisés pour rechercher dans les profils, ne seront jamais montrés à autrui)";
+$a->strings["Tell us about yourself..."] = "Parlez-nous de vous...";
+$a->strings["Hobbies/Interests"] = "Passe-temps / Centres d'intérêt";
+$a->strings["Contact information and Social Networks"] = "Coordonnées / Réseaux sociaux";
+$a->strings["Musical interests"] = "Goûts musicaux";
+$a->strings["Books, literature"] = "Lectures";
+$a->strings["Television"] = "Télévision";
+$a->strings["Film/dance/culture/entertainment"] = "Cinéma / Danse / Culture / Divertissement";
+$a->strings["Love/romance"] = "Amour / Romance";
+$a->strings["Work/employment"] = "Activité professionnelle / Occupation";
+$a->strings["School/education"] = "Études / Formation";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Ceci est votre profil <strong>public</strong>.<br />Il <strong>peut</strong> être visible par n'importe quel utilisateur d'Internet.";
+$a->strings["Age: "] = "Age : ";
+$a->strings["Edit/Manage Profiles"] = "Editer / gérer les profils";
+$a->strings["Friendica Communications Server - Setup"] = "Serveur de communications Friendica - Configuration";
+$a->strings["Could not connect to database."] = "Impossible de se connecter à la base.";
+$a->strings["Could not create table."] = "Impossible de créer une table.";
+$a->strings["Your Friendica site database has been installed."] = "La base de données de votre site Friendica a bien été installée.";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Vous pourriez avoir besoin d'importer le fichier \"database.sql\" manuellement au moyen de phpmyadmin ou de la commande mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Référez-vous au fichier \"INSTALL.txt\".";
+$a->strings["System check"] = "Vérifications système";
+$a->strings["Check again"] = "Vérifier à nouveau";
+$a->strings["Database connection"] = "Connexion à la base de données";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "Pour installer Friendica, nous avons besoin de savoir comment contacter votre base de données.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de vous tourner vers votre hébergeur et/ou administrateur pour toute question concernant ces réglages.";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous spécifierez doit exister. Si ce n'est pas encore le cas, merci de la créer avant de continuer.";
+$a->strings["Database Server Name"] = "Serveur de base de données";
+$a->strings["Database Login Name"] = "Nom d'utilisateur de la base";
+$a->strings["Database Login Password"] = "Mot de passe de la base";
+$a->strings["Database Name"] = "Nom de la base";
+$a->strings["Site administrator email address"] = "Adresse électronique de l'administrateur du site";
+$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre adresse électronique doit correspondre à celle-ci pour pouvoir utiliser l'interface d'administration.";
+$a->strings["Please select a default timezone for your website"] = "Sélectionner un fuseau horaire par défaut pour votre site";
+$a->strings["Site settings"] = "Réglages du site";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver la version \"ligne de commande\" de PHP dans le PATH du serveur web.";
+$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron. See <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"] = "Si vous n'avez pas de version \"ligne de commande\" de PHP sur votre serveur, vous ne pourrez pas utiliser le 'poller' en tâche de fond via cron. Voir <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
+$a->strings["PHP executable path"] = "Chemin vers l'exécutable de PHP";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin (absolu) vers l'exécutable 'php'. Vous pouvez laisser cette ligne vide pour continuer l'installation.";
+$a->strings["Command line PHP"] = "Version \"ligne de commande\" de PHP";
+$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "L'executable PHP n'est pas le binaire php client (c'est peut être la version cgi-fcgi)";
+$a->strings["Found PHP version: "] = "Version de PHP:";
+$a->strings["PHP cli binary"] = "PHP cli binary";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version \"ligne de commande\" de PHP de votre système n'a pas \"register_argc_argv\" d'activé.";
+$a->strings["This is required for message delivery to work."] = "Ceci est requis pour que la livraison des messages fonctionne.";
+$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur: la fonction \"openssl_pkey_new\" de ce système ne permet pas de générer des clés de chiffrement";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous utilisez Windows, merci de vous réferer à \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Générer les clés de chiffrement";
+$a->strings["libCurl PHP module"] = "Module libCurl de PHP";
+$a->strings["GD graphics PHP module"] = "Module GD (graphiques) de PHP";
+$a->strings["OpenSSL PHP module"] = "Module OpenSSL de PHP";
+$a->strings["mysqli PHP module"] = "Module Mysqli de PHP";
+$a->strings["mb_string PHP module"] = "Module mb_string de PHP";
+$a->strings["Apache mod_rewrite module"] = "Module mod_rewrite Apache";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur : Le module \"rewrite\" du serveur web Apache est requis mais pas installé.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur : Le module PHP \"libCURL\" est requis mais pas installé.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur : Le module PHP \"GD\" disposant du support JPEG est requis mais pas installé.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Erreur : Le module PHP \"openssl\" est requis mais pas installé.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur : Le module PHP \"mysqli\" est requis mais pas installé.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur : le module PHP mb_string est requis mais pas installé.";
+$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
+$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
+$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "A la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";
+$a->strings[".htconfig.php is writable"] = "Fichier .htconfig.php accessible en écriture";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica utilise le moteur de modèles Smarty3 pour le rendu d'affichage web. Smarty3 compile les modèles en PHP pour accélérer le rendu.";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "Pour pouvoir stocker ces modèles compilés, le serveur internet doit avoir accès au droit d'écriture pour le répertoire view/smarty3/ sous le dossier racine de Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Veuillez vous assurer que l'utilisateur qui exécute votre serveur internet (p. ex. www-data) détient le droit d'accès en écriture sur ce dossier.";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Note: pour plus de sécurité, vous devriez ne donner le droit d'accès en écriture qu'à view/smarty3/ et pas aux fichiers modèles (.tpl) qu'il contient.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 est autorisé à l écriture";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La réécriture d'URL dans le fichier .htaccess ne fonctionne pas. Vérifiez la configuration de votre serveur.";
+$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne.";
+$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base (\".htconfig.php\") ne peut être créé. Merci d'utiliser le texte ci-joint pour créer ce fichier à la racine de votre hébergement.";
+$a->strings["<h1>What next</h1>"] = "<h1>Ensuite</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: Vous devez configurer [manuellement] une tâche programmée pour le \"poller\".";
+$a->strings["Help:"] = "Aide :";
+$a->strings["Contact settings applied."] = "Réglages du contact appliqués.";
+$a->strings["Contact update failed."] = "Impossible d'appliquer les réglages.";
+$a->strings["Repair Contact Settings"] = "Réglages de réparation des contacts";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENTION: Manipulation réservée aux experts</strong>, toute information incorrecte pourrait empêcher la communication avec ce contact.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "une photo";
+$a->strings["Return to contact editor"] = "Retour à l'éditeur de contact";
+$a->strings["No mirroring"] = "";
+$a->strings["Mirror as forwarded posting"] = "";
+$a->strings["Mirror as my own posting"] = "";
+$a->strings["Account Nickname"] = "Pseudo du compte";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@NomEtiquette - prend le pas sur Nom/Pseudo";
+$a->strings["Account URL"] = "URL du compte";
+$a->strings["Friend Request URL"] = "Echec du téléversement de l'image.";
+$a->strings["Friend Confirm URL"] = "Accès public refusé.";
+$a->strings["Notification Endpoint URL"] = "Aucune photo sélectionnée";
+$a->strings["Poll/Feed URL"] = "Téléverser des photos";
+$a->strings["New photo from this URL"] = "Nouvelle photo depuis cette URL";
+$a->strings["Remote Self"] = "";
+$a->strings["Mirror postings from this contact"] = "";
+$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "";
+$a->strings["Welcome to Friendica"] = "Bienvenue sur Friendica";
+$a->strings["New Member Checklist"] = "Checklist du nouvel utilisateur";
+$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Nous souhaiterions vous donner quelques astuces et ressources pour rendre votre expérience la plus agréable possible. Cliquez sur n'importe lequel de ces éléments pour visiter la page correspondante. Un lien vers cette page restera visible sur votre page d'accueil pendant les deux semaines qui suivent votre inscription initiale, puis disparaîtra silencieusement.";
+$a->strings["Getting Started"] = "Bien démarrer";
+$a->strings["Friendica Walk-Through"] = "Friendica pas-à-pas";
+$a->strings["On your <em>Quick Start</em> page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sur votre page d'accueil, dans <em>Conseils aux nouveaux venus</em> - vous trouverez une rapide introduction aux onglets Profil et Réseau, pourrez vous connecter à Facebook, établir de nouvelles relations, et choisir des groupes à rejoindre.";
+$a->strings["Go to Your Settings"] = "Éditer vos Réglages";
+$a->strings["On your <em>Settings</em> page -  change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "Sur la page des <em>Réglages</em> -     changez votre mot de passe initial. Notez bien votre Identité. Elle ressemble à une adresse de courriel - et vous sera utile pour vous faire des amis dans le web social libre.";
+$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vérifiez les autres réglages, tout particulièrement ceux liés à la vie privée. Un profil non listé, c'est un peu comme un numéro sur liste rouge. En général, vous devriez probablement publier votre profil - à moins que tous vos amis (potentiels) sachent déjà comment vous trouver.";
+$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Téléversez (envoyez) une photo de profil si vous n'en avez pas déjà une. Les études montrent que les gens qui affichent de vraies photos d'eux sont dix fois plus susceptibles de se faire des amis.";
+$a->strings["Edit Your Profile"] = "Éditer votre Profil";
+$a->strings["Edit your <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Éditez votre profil <strong>par défaut</strong> à votre convenance. Vérifiez les réglages concernant la visibilité de votre liste d'amis par les visiteurs inconnus.";
+$a->strings["Profile Keywords"] = "Mots-clés du profil";
+$a->strings["Set some public keywords for your default profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Choisissez quelques mots-clé publics pour votre profil par défaut. Ils pourront ainsi décrire vos centres d'intérêt, et nous pourrons vous proposer des contacts qui les partagent.";
+$a->strings["Connecting"] = "Connexions";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Activez et paramétrez le connecteur Facebook si vous avez un compte Facebook et nous pourrons (de manière facultative) importer tous vos amis et conversations Facebook.";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "<em>Si</em> ceci est votre propre serveur, installer le connecteur Facebook peut adoucir votre transition vers le web social libre.";
+$a->strings["Importing Emails"] = "Importer courriels";
+$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Entrez vos paramètres de courriel dans les Réglages des connecteurs si vous souhaitez importer et interagir avec des amis ou des listes venant de votre Boîte de Réception.";
+$a->strings["Go to Your Contacts Page"] = "Consulter vos Contacts";
+$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the <em>Add New Contact</em> dialog."] = "Votre page Contacts est le point d'entrée vers la gestion de vos amitiés/relations et la connexion à des amis venant d'autres réseaux. Typiquement, vous pourrez y rentrer leur adresse d'Identité ou l'URL de leur site dans le formulaire <em>Ajouter un nouveau contact</em>.";
+$a->strings["Go to Your Site's Directory"] = "Consulter l'Annuaire de votre Site";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La page Annuaire vous permet de trouver d'autres personnes au sein de ce réseaux ou parmi d'autres sites fédérés. Cherchez un lien <em>Relier</em> ou <em>Suivre</em> sur leur profil. Vous pourrez avoir besoin d'indiquer votre adresse d'identité.";
+$a->strings["Finding New People"] = "Trouver de nouvelles personnes";
+$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "Sur le panneau latéral de la page Contacts, il y a plusieurs moyens de trouver de nouveaux amis. Nous pouvons mettre les gens en relation selon leurs intérêts, rechercher des amis par nom ou intérêt, et fournir des suggestions en fonction de la topologie du réseau. Sur un site tout neuf, les suggestions d'amitié devraient commencer à apparaître au bout de 24 heures.";
+$a->strings["Group Your Contacts"] = "Grouper vos contacts";
+$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Une fois que vous avez trouvé quelques amis, organisez-les en groupes de conversation privés depuis le panneau latéral de la page Contacts. Vous pourrez ensuite interagir avec chaque groupe de manière privée depuis la page Réseau.";
+$a->strings["Why Aren't My Posts Public?"] = "Pourquoi mes éléments ne sont pas publics ?";
+$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "Friendica respecte votre vie privée. Par défaut, toutes vos publications seront seulement montrés à vos amis. Pour plus d'information, consultez la section \"aide\" du lien ci-dessus.";
+$a->strings["Getting Help"] = "Obtenir de l'aide";
+$a->strings["Go to the Help Section"] = "Aller à la section Aide";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Nos pages d'<strong>aide</strong> peuvent être consultées pour davantage de détails sur les fonctionnalités ou les ressources.";
+$a->strings["Poke/Prod"] = "Solliciter";
+$a->strings["poke, prod or do other things to somebody"] = "solliciter (poke/...) quelqu'un";
+$a->strings["Recipient"] = "Destinataire";
+$a->strings["Choose what you wish to do to recipient"] = "Choisissez ce que vous voulez faire au destinataire";
+$a->strings["Make this post private"] = "Rendez ce message privé";
+$a->strings["Item has been removed."] = "Cet élément a été enlevé.";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit les %3\$s de %2\$s";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s accueille %2\$s";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ceci peut se produire lorsque le contact a été requis par les deux personnes et a déjà été approuvé.";
+$a->strings["Response from remote site was not understood."] = "Réponse du site distant incomprise.";
+$a->strings["Unexpected response from remote site: "] = "Réponse inattendue du site distant : ";
+$a->strings["Confirmation completed successfully."] = "Confirmation achevée avec succès.";
+$a->strings["Remote site reported: "] = "Alerte du site distant : ";
+$a->strings["Temporary failure. Please wait and try again."] = "Échec temporaire. Merci de recommencer ultérieurement.";
+$a->strings["Introduction failed or was revoked."] = "Introduction échouée ou annulée.";
+$a->strings["Unable to set contact photo."] = "Impossible de définir la photo du contact.";
+$a->strings["No user record found for '%s' "] = "Pas d'utilisateur trouvé pour '%s' ";
+$a->strings["Our site encryption key is apparently messed up."] = "Notre clé de chiffrement de site est apparemment corrompue.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "URL de site absente ou indéchiffrable.";
+$a->strings["Contact record was not found for you on our site."] = "Pas d'entrée pour ce contact sur notre site.";
+$a->strings["Site public key not available in contact record for URL %s."] = "La clé publique du site ne se trouve pas dans l'enregistrement du contact pour l'URL %s.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'identifiant fourni par votre système fait doublon sur le notre. Cela peut fonctionner si vous réessayez.";
+$a->strings["Unable to set your contact credentials on our system."] = "Impossible de vous définir des permissions sur notre système.";
+$a->strings["Unable to update your contact profile details on our system"] = "Impossible de mettre les détails de votre profil à jour sur notre système";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s a rejoint %2\$s";
+$a->strings["Unable to locate original post."] = "Impossible de localiser la publication originale.";
+$a->strings["Empty post discarded."] = "Publication vide rejetée.";
+$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvée.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ce message vous a été envoyé par %s, membre du réseau social Friendica.";
+$a->strings["You may visit them online at %s"] = "Vous pouvez leur rendre visite sur %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Merci de contacter l’émetteur en répondant à cette publication si vous ne souhaitez pas recevoir ces messages.";
+$a->strings["%s posted an update."] = "%s a publié une mise à jour.";
+$a->strings["Image uploaded but image cropping failed."] = "Image envoyée, mais impossible de la retailler.";
+$a->strings["Image size reduction [%s] failed."] = "Réduction de la taille de l'image [%s] échouée.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement.";
+$a->strings["Unable to process image"] = "Impossible de traiter l'image";
+$a->strings["Upload File:"] = "Fichier à téléverser:";
+$a->strings["Select a profile:"] = "Choisir un profil:";
+$a->strings["Upload"] = "Téléverser";
+$a->strings["skip this step"] = "ignorer cette étape";
+$a->strings["select a photo from your photo albums"] = "choisissez une photo depuis vos albums";
+$a->strings["Crop Image"] = "(Re)cadrer l'image";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Ajustez le cadre de l'image pour une visualisation optimale.";
+$a->strings["Done Editing"] = "Édition terminée";
+$a->strings["Image uploaded successfully."] = "Image téléversée avec succès.";
+$a->strings["Friends of %s"] = "Amis de %s";
+$a->strings["No friends to display."] = "Pas d'amis à afficher.";
+$a->strings["Find on this site"] = "Trouver sur ce site";
+$a->strings["Site Directory"] = "Annuaire local";
+$a->strings["Gender: "] = "Genre : ";
+$a->strings["No entries (some entries may be hidden)."] = "Aucune entrée (certaines peuvent être cachées).";
+$a->strings["Time Conversion"] = "Conversion temporelle";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fournit ce service pour partager des événements avec d'autres réseaux et amis indépendament de leur fuseau horaire.";
+$a->strings["UTC time: %s"] = "Temps UTC : %s";
+$a->strings["Current timezone: %s"] = "Zone de temps courante : %s";
+$a->strings["Converted localtime: %s"] = "Temps local converti : %s";
+$a->strings["Please select your timezone:"] = "Sélectionner votre zone :";
index b987b7849cb6eb95ab5d25179b173a8860a5a422..56653c6550212ad565539f8ac73575200430fa60 100644 (file)
 </p>
 {{/if}}
 
+{{if $request}}
+<form action="{{$request}}" method="post" />
+{{else}}
 <form action="dfrn_request/{{$nickname}}" method="post" />
+{{/if}}
+
+{{if $photo}}
+<img src="{{$photo}}" alt="" id="dfrn-request-photo">
+{{/if}}
 
 <div id="dfrn-request-url-wrapper" >
        <label id="dfrn-url-label" for="dfrn-url" >{{$your_address}}</label>
         {{if $myaddr}}
                 {{$myaddr}}
-                <input type="hidden" name="dfrn_url" id="dfrn-url" size="32" value="{{$myaddr|escape:'html'}}" />
+                <input type="hidden" name="dfrn_url" id="dfrn-url" value="{{$myaddr|escape:'html'}}" />
         {{else}}
         <input type="text" name="dfrn_url" id="dfrn-url" size="32" value="{{$myaddr|escape:'html'}}" />
         {{/if}}
+        {{if $url}}
+                <input type="hidden" name="url" id="url" value="{{$url|escape:'html'}}" />
+        {{/if}}
        <div id="dfrn-request-url-end"></div>
 </div>
 
index a94f1f2d3c2241f6e207f4c3b87e068059d1a72c..5b3a6281ebf8af0dbdaf15c25067d05df356e434 100644 (file)
@@ -2,6 +2,12 @@
 
 <h4>{{$contact_name}}</h4>
 
+<div id="contact-update-profile-wrapper">
+{{if $update_profile}}
+       <span id="contact-update-profile-now" class="button"><a href="contacts/{{$contact_id}}/updateprofile" >{{$udprofilenow}}</a></span>
+{{/if}}
+</div>
+
 <label id="crepair-name-label" class="crepair-label" for="crepair-name">{{$label_name}}</label>
 <input type="text" id="crepair-name" class="crepair-input" name="name" value="{{$contact_name|escape:'html'}}" />
 <div class="clear"></div>
index 44c8ef1e6a180680955c66f6687693d005b34c2e..6c63c5331507d486c553a64c375af03e7f545697 100644 (file)
@@ -1,5 +1,3 @@
-
-
 <h1>{{$header}}</h1>
 
 {{if $myaddr}}
 </p>
 {{/if}}
 
+{{if $request}}
+<form action="{{$request}}" method="post" />
+{{else}}
 <form action="dfrn_request/{{$nickname}}" method="post" />
+{{/if}}
+
+{{if $photo}}
+<img src="{{$photo}}" alt="" id="dfrn-request-photo">
+{{/if}}
 
 <div id="dfrn-request-url-wrapper" >
        <label id="dfrn-url-label" for="dfrn-url" >{{$your_address}}</label>
@@ -29,6 +35,9 @@
        {{else}}
        <input type="text" name="dfrn_url" id="dfrn-url" size="32" value="{{$myaddr|escape:'html'}}" />
        {{/if}}
+       {{if $url}}
+               <input type="hidden" name="url" id="url" value="{{$url|escape:'html'}}" />
+       {{/if}}
        <div id="dfrn-request-url-end"></div>
 </div>
 
index c4d18876573aeddecdab4eb2e03d174e3d6dcc66..ece5ed17b860e6e6a1388507d501400c4c5b12ed 100644 (file)
@@ -2,7 +2,7 @@
 <div id="follow-sidebar" class="widget">
        <h3>{{$connect}}</h3>
        <div id="connect-desc">{{$desc}}</div>
-       <form action="follow" method="post" >
+       <form action="follow" method="get" >
                <input id="side-follow-url" type="text" name="url" value="{{$value|escape:'html'}}" size="24" placeholder="{{$hint|escape:'html'}}" title="{{$hint|escape:'html'}}" /><input id="side-follow-submit" type="submit" name="submit" value="{{$follow|escape:'html'}}" />
        </form>
 </div>
index abc4fa731e125388ac32b6a3c92e05f529f2c59f..8fbd15c3031651a31aa05c924fb0a958fef0b181 100644 (file)
@@ -4,6 +4,7 @@
 <base href="{{$baseurl}}/" />
 <meta name="generator" content="{{$generator}}" />
 <link rel="stylesheet" href="{{$baseurl}}/library/jgrowl/jquery.jgrowl.css" type="text/css" media="screen" />
+<script type="text/javascript" src="{{$baseurl}}/js/jquery.js"></script>
 
 <link rel="stylesheet" type="text/css" href="{{$stylesheet}}" media="all" />